From f805b10327e72636fb081d611caf83e220fd8450 Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 09:47:28 +0800 Subject: [PATCH 01/10] prepare --- .../samples/GraphRbacTests.java | 4 +- .../samples/SamplesTestBase.java | 4 +- .../test/ResourceManagerTestBase.java | 493 ------------------ .../ResourceManagerTestProxyTestBase.java | 4 + 4 files changed, 8 insertions(+), 497 deletions(-) delete mode 100644 sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java index 7cdfd6943922..cee28b95644c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.authorization.samples.ManageUsersGroupsAndRoles; import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; -import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.ResourceManagerTestProxyTestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; @@ -23,7 +23,7 @@ import java.time.temporal.ChronoUnit; import java.util.List; -public class GraphRbacTests extends ResourceManagerTestBase { +public class GraphRbacTests extends ResourceManagerTestProxyTestBase { private AzureResourceManager azureResourceManager; private AzureProfile profile; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java index c1b00fe1ec4f..8281bf8970eb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java @@ -13,14 +13,14 @@ import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.ResourceManagerUtils; -import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.ResourceManagerTestProxyTestBase; import com.azure.resourcemanager.test.utils.TestDelayProvider; import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import java.time.temporal.ChronoUnit; import java.util.List; -public class SamplesTestBase extends ResourceManagerTestBase { +public class SamplesTestBase extends ResourceManagerTestProxyTestBase { protected AzureResourceManager azureResourceManager; @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java deleted file mode 100644 index fd71d5bf6495..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java +++ /dev/null @@ -1,493 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -package com.azure.resourcemanager.test; - -import com.azure.core.credential.TokenCredential; -import com.azure.core.http.HttpClient; -import com.azure.core.http.HttpPipeline; -import com.azure.core.http.ProxyOptions; -import com.azure.core.http.netty.NettyAsyncHttpClientBuilder; -import com.azure.core.http.policy.HttpLogDetailLevel; -import com.azure.core.http.policy.HttpLogOptions; -import com.azure.core.http.policy.HttpPipelinePolicy; -import com.azure.core.http.policy.TimeoutPolicy; -import com.azure.core.management.AzureEnvironment; -import com.azure.core.management.profile.AzureProfile; -import com.azure.core.test.TestBase; -import com.azure.core.test.TestMode; -import com.azure.core.test.utils.ResourceNamer; -import com.azure.core.util.Configuration; -import com.azure.core.util.logging.ClientLogger; -import com.azure.identity.ClientSecretCredentialBuilder; -import com.azure.resourcemanager.test.policy.HttpDebugLoggingPolicy; -import com.azure.resourcemanager.test.policy.TextReplacementPolicy; -import com.azure.resourcemanager.test.utils.AuthFile; -import org.junit.jupiter.api.Assertions; -import org.junit.jupiter.api.extension.ExtensionContext; -import org.junit.jupiter.api.extension.InvocationInterceptor; -import org.junit.jupiter.api.extension.ReflectiveInvocationContext; -import org.junit.jupiter.api.extension.RegisterExtension; - -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.File; -import java.io.IOException; -import java.io.OutputStream; -import java.io.PrintStream; -import java.io.UnsupportedEncodingException; -import java.lang.reflect.AccessibleObject; -import java.lang.reflect.Constructor; -import java.lang.reflect.Field; -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; -import java.net.InetSocketAddress; -import java.net.Proxy; -import java.net.ProxySelector; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.charset.Charset; -import java.nio.charset.StandardCharsets; -import java.security.KeyPair; -import java.security.KeyPairGenerator; -import java.security.NoSuchAlgorithmException; -import java.security.PublicKey; -import java.security.interfaces.RSAPublicKey; -import java.time.Duration; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Base64; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.function.Supplier; -import java.util.regex.Pattern; -import java.util.stream.Collectors; - -/** - * Test base for resource manager SDK. - */ -public abstract class ResourceManagerTestBase extends TestBase { - private static final String ZERO_UUID = "00000000-0000-0000-0000-000000000000"; - private static final String ZERO_SUBSCRIPTION = ZERO_UUID; - private static final String ZERO_TENANT = ZERO_UUID; - private static final String PLAYBACK_URI_BASE = "http://localhost:"; - private static final String AZURE_AUTH_LOCATION = "AZURE_AUTH_LOCATION"; - private static final String AZURE_TEST_LOG_LEVEL = "AZURE_TEST_LOG_LEVEL"; - private static final String HTTPS_PROXY_HOST = "https.proxyHost"; - private static final String HTTPS_PROXY_PORT = "https.proxyPort"; - private static final String HTTP_PROXY_HOST = "http.proxyHost"; - private static final String HTTP_PROXY_PORT = "http.proxyPort"; - private static final String USE_SYSTEM_PROXY = "java.net.useSystemProxies"; - private static final String VALUE_TRUE = "true"; - private static final String PLAYBACK_URI = PLAYBACK_URI_BASE + "1234"; - private static final AzureProfile PLAYBACK_PROFILE = new AzureProfile( - ZERO_TENANT, - ZERO_SUBSCRIPTION, - new AzureEnvironment(Arrays.stream(AzureEnvironment.Endpoint.values()) - .collect(Collectors.toMap(AzureEnvironment.Endpoint::identifier, endpoint -> PLAYBACK_URI))) - ); - private static final OutputStream EMPTY_OUTPUT_STREAM = new OutputStream() { - @Override - public void write(int b) { - } - }; - - private static final ClientLogger LOGGER = new ClientLogger(ResourceManagerTestBase.class); - private AzureProfile testProfile; - private AuthFile testAuthFile; - private boolean isSkipInPlayback; - - /** - * Sets upper bound execution timeout for each @Test method. - * {@link org.junit.jupiter.api.Timeout} annotation on test methods will only narrow the timeout, not affecting the upper - * bound. - */ - @RegisterExtension - final PlaybackTimeoutInterceptor playbackTimeoutInterceptor = new PlaybackTimeoutInterceptor(() -> Duration.ofSeconds(30)); - - /** - * Generates a random resource name. - * - * @param prefix Prefix for the resource name. - * @param maxLen Maximum length of the resource name. - * @return A randomly generated resource name with a given prefix and maximum length. - */ - protected String generateRandomResourceName(String prefix, int maxLen) { - return testResourceNamer.randomName(prefix, maxLen); - } - - /** - * @return A randomly generated UUID. - */ - protected String generateRandomUuid() { - return testResourceNamer.randomUuid(); - } - - /** - * @return random password - */ - public static String password() { - // do not record - String password = new ResourceNamer("").randomName("Pa5$", 12); - LOGGER.info("Password: {}", password); - return password; - } - - private static String sshPublicKey; - - /** - * @return an SSH public key - */ - public static String sshPublicKey() { - if (sshPublicKey == null) { - try { - KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA"); - keyGen.initialize(1024); - KeyPair pair = keyGen.generateKeyPair(); - PublicKey publicKey = pair.getPublic(); - - RSAPublicKey rsaPublicKey = (RSAPublicKey) publicKey; - ByteArrayOutputStream byteOs = new ByteArrayOutputStream(); - DataOutputStream dos = new DataOutputStream(byteOs); - dos.writeInt("ssh-rsa".getBytes(StandardCharsets.US_ASCII).length); - dos.write("ssh-rsa".getBytes(StandardCharsets.US_ASCII)); - dos.writeInt(rsaPublicKey.getPublicExponent().toByteArray().length); - dos.write(rsaPublicKey.getPublicExponent().toByteArray()); - dos.writeInt(rsaPublicKey.getModulus().toByteArray().length); - dos.write(rsaPublicKey.getModulus().toByteArray()); - String publicKeyEncoded = new String(Base64.getEncoder().encode(byteOs.toByteArray()), StandardCharsets.US_ASCII); - sshPublicKey = "ssh-rsa " + publicKeyEncoded; - } catch (NoSuchAlgorithmException | IOException e) { - throw LOGGER.logExceptionAsError(new IllegalStateException("failed to generate ssh key", e)); - } - } - return sshPublicKey; - } - - /** - * Loads a credential from file. - * - * @return A credential loaded from a file. - */ - protected TokenCredential credentialFromFile() { - return testAuthFile.getCredential(); - } - - /** - * Loads a client ID from file. - * - * @return A client ID loaded from a file. - */ - protected String clientIdFromFile() { - String clientId = testAuthFile == null ? null : testAuthFile.getClientId(); - return testResourceNamer.recordValueFromConfig(clientId); - } - - /** - * @return The test profile. - */ - protected AzureProfile profile() { - return testProfile; - } - - /** - * @return Whether the test mode is {@link TestMode#PLAYBACK}. - */ - protected boolean isPlaybackMode() { - return getTestMode() == TestMode.PLAYBACK; - } - - /** - * @return Whether the test should be skipped in playback. - */ - protected boolean skipInPlayback() { - if (isPlaybackMode()) { - isSkipInPlayback = true; - } - return isSkipInPlayback; - } - - @Override - protected void beforeTest() { - TokenCredential credential; - HttpPipeline httpPipeline; - Map textReplacementRules = new HashMap<>(); - String logLevel = Configuration.getGlobalConfiguration().get(AZURE_TEST_LOG_LEVEL); - HttpLogDetailLevel httpLogDetailLevel; - - try { - httpLogDetailLevel = HttpLogDetailLevel.valueOf(logLevel); - } catch (Exception e) { - if (isPlaybackMode()) { - httpLogDetailLevel = HttpLogDetailLevel.NONE; - LOGGER.error("Environment variable '{}' has not been set yet. Using 'NONE' for PLAYBACK.", AZURE_TEST_LOG_LEVEL); - } else { - httpLogDetailLevel = HttpLogDetailLevel.BODY_AND_HEADERS; - LOGGER.error("Environment variable '{}' has not been set yet. Using 'BODY_AND_HEADERS' for RECORD/LIVE.", AZURE_TEST_LOG_LEVEL); - } - } - - if (httpLogDetailLevel == HttpLogDetailLevel.NONE) { - try { - System.setOut(new PrintStream(EMPTY_OUTPUT_STREAM, false, Charset.defaultCharset().name())); - System.setErr(new PrintStream(EMPTY_OUTPUT_STREAM, false, Charset.defaultCharset().name())); - } catch (UnsupportedEncodingException e) { - } - } - - if (isPlaybackMode()) { - if (interceptorManager.getRecordedData() == null) { - skipInPlayback(); - return; - } - - testProfile = PLAYBACK_PROFILE; - List policies = new ArrayList<>(); - policies.add(new TextReplacementPolicy(interceptorManager.getRecordedData(), textReplacementRules)); - httpPipeline = buildHttpPipeline( - null, - testProfile, - new HttpLogOptions().setLogLevel(httpLogDetailLevel), - policies, - interceptorManager.getPlaybackClient()); - textReplacementRules.put(PLAYBACK_URI_BASE + "1234", PLAYBACK_URI); - addTextReplacementRules(textReplacementRules); - } else { - if (System.getenv(AZURE_AUTH_LOCATION) != null) { // Record mode - final File credFile = new File(System.getenv(AZURE_AUTH_LOCATION)); - try { - testAuthFile = AuthFile.parse(credFile); - } catch (IOException e) { - throw LOGGER.logExceptionAsError(new RuntimeException("Cannot parse auth file. Please check file format.", e)); - } - credential = testAuthFile.getCredential(); - testProfile = new AzureProfile(testAuthFile.getTenantId(), testAuthFile.getSubscriptionId(), testAuthFile.getEnvironment()); - } else { - Configuration configuration = Configuration.getGlobalConfiguration(); - String clientId = configuration.get(Configuration.PROPERTY_AZURE_CLIENT_ID); - String tenantId = configuration.get(Configuration.PROPERTY_AZURE_TENANT_ID); - String clientSecret = configuration.get(Configuration.PROPERTY_AZURE_CLIENT_SECRET); - String subscriptionId = configuration.get(Configuration.PROPERTY_AZURE_SUBSCRIPTION_ID); - if (clientId == null || tenantId == null || clientSecret == null || subscriptionId == null) { - throw LOGGER.logExceptionAsError( - new IllegalArgumentException("When running tests in record mode either 'AZURE_AUTH_LOCATION' or 'AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET and AZURE_SUBSCRIPTION_ID' needs to be set")); - } - - credential = new ClientSecretCredentialBuilder() - .tenantId(tenantId) - .clientId(clientId) - .clientSecret(clientSecret) - .authorityHost(AzureEnvironment.AZURE.getActiveDirectoryEndpoint()) - .build(); - testProfile = new AzureProfile(tenantId, subscriptionId, AzureEnvironment.AZURE); - } - - List policies = new ArrayList<>(); - policies.add(new TimeoutPolicy(Duration.ofMinutes(1))); - if (!interceptorManager.isLiveMode() && !testContextManager.doNotRecordTest()) { - policies.add(new TextReplacementPolicy(interceptorManager.getRecordedData(), textReplacementRules)); - } - if (httpLogDetailLevel == HttpLogDetailLevel.BODY_AND_HEADERS) { - policies.add(new HttpDebugLoggingPolicy()); - httpLogDetailLevel = HttpLogDetailLevel.NONE; - } - httpPipeline = buildHttpPipeline( - credential, - testProfile, - new HttpLogOptions().setLogLevel(httpLogDetailLevel), - policies, - generateHttpClientWithProxy(null, null)); - - textReplacementRules.put(testProfile.getSubscriptionId(), ZERO_SUBSCRIPTION); - textReplacementRules.put(testProfile.getTenantId(), ZERO_TENANT); - // ARM endpoint - textReplacementRules.put(Pattern.quote(AzureEnvironment.AZURE.getResourceManagerEndpoint()), PLAYBACK_URI + "/"); - // MSGraph endpoint - textReplacementRules.put(Pattern.quote(AzureEnvironment.AZURE.getMicrosoftGraphEndpoint()), PLAYBACK_URI + "/"); - // vault endpoint - textReplacementRules.put("https://[a-zA-Z0-9]+?" + AzureEnvironment.AZURE.getKeyVaultDnsSuffix().replace(".", "\\.") + "/", PLAYBACK_URI + "/"); - // storage account endpoint - textReplacementRules.put("https://[a-zA-Z0-9]+?" + AzureEnvironment.AZURE.getStorageEndpointSuffix().replace(".", "\\.") + "/", PLAYBACK_URI + "/"); - addTextReplacementRules(textReplacementRules); - } - initializeClients(httpPipeline, testProfile); - } - - /** - * Generates an {@link HttpClient} with a proxy. - * - * @param clientBuilder The HttpClient builder. - * @param proxyOptions The proxy. - * @return An HttpClient with a proxy. - */ - protected HttpClient generateHttpClientWithProxy(NettyAsyncHttpClientBuilder clientBuilder, ProxyOptions proxyOptions) { - if (clientBuilder == null) { - clientBuilder = new NettyAsyncHttpClientBuilder(); - } - if (proxyOptions != null) { - clientBuilder.proxy(proxyOptions); - } else { - try { - System.setProperty(USE_SYSTEM_PROXY, VALUE_TRUE); - List proxies = ProxySelector.getDefault().select(new URI(AzureEnvironment.AZURE.getResourceManagerEndpoint())); - if (!proxies.isEmpty()) { - for (Proxy proxy : proxies) { - if (proxy.address() instanceof InetSocketAddress) { - String host = ((InetSocketAddress) proxy.address()).getHostName(); - int port = ((InetSocketAddress) proxy.address()).getPort(); - switch (proxy.type()) { - case HTTP: - return clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.HTTP, new InetSocketAddress(host, port))).build(); - case SOCKS: - return clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.SOCKS5, new InetSocketAddress(host, port))).build(); - default: - } - } - } - } - String host = null; - int port = 0; - if (System.getProperty(HTTPS_PROXY_HOST) != null && System.getProperty(HTTPS_PROXY_PORT) != null) { - host = System.getProperty(HTTPS_PROXY_HOST); - port = Integer.parseInt(System.getProperty(HTTPS_PROXY_PORT)); - } else if (System.getProperty(HTTP_PROXY_HOST) != null && System.getProperty(HTTP_PROXY_PORT) != null) { - host = System.getProperty(HTTP_PROXY_HOST); - port = Integer.parseInt(System.getProperty(HTTP_PROXY_PORT)); - } - if (host != null) { - clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.HTTP, new InetSocketAddress(host, port))); - } - } catch (URISyntaxException e) { } - } - return clientBuilder.build(); - } - - @Override - protected void afterTest() { - if (!isSkipInPlayback) { - cleanUpResources(); - } - } - - private void addTextReplacementRules(Map rules) { - for (Map.Entry entry : rules.entrySet()) { - interceptorManager.addTextReplacementRule(entry.getKey(), entry.getValue()); - } - } - - /** - * Sets sdk context when running the tests - * - * @param internalContext the internal runtime context - * @param objects the manager classes to change internal context - * @param the type of internal context - * @throws RuntimeException when field cannot be found or set. - */ - protected void setInternalContext(T internalContext, Object... objects) { - try { - for (Object obj : objects) { - for (final Field field : obj.getClass().getSuperclass().getDeclaredFields()) { - if (field.getName().equals("resourceManager")) { - setAccessible(field); - Field context = field.get(obj).getClass().getDeclaredField("internalContext"); - setAccessible(context); - context.set(field.get(obj), internalContext); - } - } - for (Field field : obj.getClass().getDeclaredFields()) { - if (field.getName().equals("internalContext")) { - setAccessible(field); - field.set(obj, internalContext); - } else if (field.getName().contains("Manager")) { - setAccessible(field); - setInternalContext(internalContext, field.get(obj)); - } - } - } - } catch (IllegalAccessException | NoSuchFieldException ex) { - throw LOGGER.logExceptionAsError(new RuntimeException(ex)); - } - } - - private void setAccessible(final AccessibleObject accessibleObject) { - // avoid bug in Java8 - Runnable runnable = () -> accessibleObject.setAccessible(true); - runnable.run(); - } - - /** - * Builds the manager with provided http pipeline and profile in general manner. - * - * @param manager the class of the manager - * @param httpPipeline the http pipeline - * @param profile the azure profile - * @param the type of the manager - * @return the manager instance - * @throws RuntimeException when field cannot be found or set. - */ - protected T buildManager(Class manager, HttpPipeline httpPipeline, AzureProfile profile) { - try { - Constructor constructor = manager.getDeclaredConstructor(httpPipeline.getClass(), profile.getClass()); - setAccessible(constructor); - return constructor.newInstance(httpPipeline, profile); - - } catch (NoSuchMethodException - | IllegalAccessException - | InstantiationException - | InvocationTargetException ex) { - throw LOGGER.logExceptionAsError(new RuntimeException(ex)); - } - } - - /** - * Builds an HttpPipeline. - * - * @param credential The credentials to use in the pipeline. - * @param profile The AzureProfile to use in the pipeline. - * @param httpLogOptions The HTTP logging options to use in the pipeline. - * @param policies Additional policies to use in the pipeline. - * @param httpClient The HttpClient to use in the pipeline. - * @return A new constructed HttpPipeline. - */ - protected abstract HttpPipeline buildHttpPipeline( - TokenCredential credential, - AzureProfile profile, - HttpLogOptions httpLogOptions, - List policies, - HttpClient httpClient); - - /** - * Initializes service clients used in testing. - * - * @param httpPipeline The HttpPipeline to use in the clients. - * @param profile The AzureProfile to use in the clients. - */ - protected abstract void initializeClients(HttpPipeline httpPipeline, AzureProfile profile); - - /** - * Cleans up resources. - */ - protected abstract void cleanUpResources(); - - private final class PlaybackTimeoutInterceptor implements InvocationInterceptor { - - private final Duration duration; - - private PlaybackTimeoutInterceptor(Supplier timeoutSupplier) { - Objects.requireNonNull(timeoutSupplier); - this.duration = timeoutSupplier.get(); - } - - @Override - public void interceptTestMethod(Invocation invocation, - ReflectiveInvocationContext invocationContext, - ExtensionContext extensionContext) throws Throwable { - if (isPlaybackMode()) { - Assertions.assertTimeoutPreemptively(duration, invocation::proceed); - } else { - invocation.proceed(); - } - } - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java index 4d1e9c88db18..91bacdd9b615 100644 --- a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java @@ -481,6 +481,10 @@ private void addSanitizers() { new TestProxySanitizer("$..aliasSecondaryConnectionString", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), new TestProxySanitizer("$..primaryKey", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), new TestProxySanitizer("$..secondaryKey", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), + new TestProxySanitizer("$..primaryMasterKey", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), + new TestProxySanitizer("$..secondaryMasterKey", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), + new TestProxySanitizer("$..primaryReadonlyMasterKey", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), + new TestProxySanitizer("$..secondaryReadonlyMasterKey", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), // ContainerRegistry new TestProxySanitizer("$..passwords[*].value", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), // ContainerService From 02e07e93da3a7730289ef060a3bc47cefc26f2c6 Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 09:49:14 +0800 Subject: [PATCH 02/10] remove records --- .../azure-resourcemanager-samples/assets.json | 6 + ...ampleTests.testManageFunctionAppBasic.json | 2927 - ...ampleTests.testManageLinuxWebAppBasic.json | 2561 - ...ts.testManageLinuxWebAppSqlConnection.json | 1152 - ...viceSampleTests.testManageWebAppBasic.json | 2303 - ...viceSampleTests.testManageWebAppSlots.json | 3930 - ...leTests.testManageWebAppSqlConnection.json | 1074 - ....testManageCdnProfileWithCustomDomain.json | 942 - ...ts.testCloneVirtualMachineToNewRegion.json | 3560 - ...stConvertVirtualMachineToManagedDisks.json | 709 - ...VirtualMachineUsingCustomImageFromVHD.json | 2141 - ...eVirtualMachineUsingCustomImageFromVM.json | 2023 - ...chineUsingSpecializedDiskFromSnapshot.json | 2220 - ...ualMachineUsingSpecializedDiskFromVhd.json | 1516 - ...hineWithTrustedLaunchFromGalleryImage.json | 1841 - ...s.testCreateVirtualMachinesInParallel.json | 4487 - ...hinesUsingCustomImageOrSpecializedVHD.json | 1438 - ...testListVirtualMachineExtensionImages.json | 4143 - ...pleTests.testListVirtualMachineImages.json | 120243 --------------- ...SampleTests.testManageAvailabilitySet.json | 606 - ...uteSampleTests.testManageManagedDisks.json | 4574 - ...nabledVirtualMachineBelongsToAADGroup.json | 806 - ...geStorageFromMSIEnabledVirtualMachine.json | 744 - ...eUserAssignedMSIEnabledVirtualMachine.json | 2867 - ...eSampleTests.testManageVirtualMachine.json | 1354 - ...leTests.testManageVirtualMachineAsync.json | 1347 - ...sts.testManageVirtualMachineExtension.json | 2216 - ...ests.testManageVirtualMachineScaleSet.json | 1637 - ...testManageVirtualMachineScaleSetAsync.json | 1254 - ...tualMachineScaleSetWithUnmanagedDisks.json | 1756 - ...ests.testManageVirtualMachineWithDisk.json | 1698 - ...anageVirtualMachineWithUnmanagedDisks.json | 1656 - ...s.testManageVirtualMachinesInParallel.json | 1687 - ...leTests.testManageZonalVirtualMachine.json | 815 - ...testManageZonalVirtualMachineScaleSet.json | 553 - ...tainerInstanceWithAzureFileShareMount.json | 393 - ...WithManualAzureFileShareMountCreation.json | 364 - ...erInstanceWithMultipleContainerImages.json | 212 - ...ManyUsingContainerServiceOrchestrator.json | 725 - ...stryTests.testManageContainerRegistry.json | 545 - ...stManageContainerRegistryWithWebhooks.json | 872 - ...teCosmosDBTableWithVirtualNetworkRule.json | 2563 - ...CreateCosmosDBWithEventualConsistency.json | 1285 - ...DBTests.testCreateCosmosDBWithIPRange.json | 1102 - ...sts.testCreateCosmosDBWithKindMongoDB.json | 1181 - .../CosmosDBTests.testManageHACosmosDB.json | 2779 - .../DnsSampleTests.testManageDns.json | 75 - ...entHubsSampleTests.testManageEventHub.json | 752 - ...sSampleTests.testManageEventHubEvents.json | 694 - ...testManageEventHubGeoDisasterRecovery.json | 593 - ...hRbacTests.testManageServicePrincipal.json | 33 - ...testManageServicePrincipalCredentials.json | 417 - ...acTests.testManageUsersGroupsAndRoles.json | 582 - ...eyVaultSampleTests.testManageKeyVault.json | 282 - ...mageFromContainerRegistryToKubernetes.json | 52 - ...sterTests.testManageKubernetesCluster.json | 813 - ...bernetesClusterWithAdvancedNetworking.json | 878 - ...eSettingsBasedOnPerformanceOrSchedule.json | 383 - ...Tests.testQueryMetricsAndActivityLogs.json | 345 - ...SecurityBreachOrRiskActivityLogAlerts.json | 262 - ...testWebAppPerformanceMonitoringAlerts.json | 162 - ...reateSimpleInternetFacingLoadBalancer.json | 1254 - ...pleTests.testManageApplicationGateway.json | 3478 - ...etworkSampleTests.testManageIPAddress.json | 1161 - ...eTests.testManageInternalLoadBalancer.json | 1335 - ....testManageInternetFacingLoadBalancer.json | 1483 - ...ampleTests.testManageNetworkInterface.json | 957 - ...anageNetworkPeeringInSameSubscription.json | 1544 - ...eTests.testManageNetworkSecurityGroup.json | 870 - ...workSampleTests.testManagePrivateLink.json | 1591 - ...ts.testManageSimpleApplicationGateway.json | 1106 - ...eVirtualMachinesInParallelWithNetwork.json | 1571 - ...kSampleTests.testManageVirtualNetwork.json | 1312 - ...leTests.testManageVirtualNetworkAsync.json | 841 - ...stManageVpnGatewaySite2SiteConnection.json | 1367 - ...erifyNetworkPeeringWithNetworkWatcher.json | 2906 - ...iveOnlyTests.testManageNetworkWatcher.json | 79 - ...teDnsSampleTests.testManagePrivateDns.json | 2865 - ...CacheSampleTests.testManageRedisCache.json | 5616 - ...ampleTests.testDeployUsingARMTemplate.json | 102 - ...Tests.testDeployUsingARMTemplateAsync.json | 153 - ...ngARMTemplateWithDeploymentOperations.json | 229 - ...estDeployUsingARMTemplateWithProgress.json | 180 - ...ts.testDeployUsingARMTemplateWithTags.json | 478 - ...tDeployVirtualMachineUsingARMTemplate.json | 273 - .../ResourceSampleTests.testManageLocks.json | 1147 - ...esourceSampleTests.testManageResource.json | 288 - ...ceSampleTests.testManageResourceGroup.json | 154 - ...chSampleTests.testManageSearchService.json | 2614 - ...iceBusPublishSubscribeAdvanceFeatures.json | 682 - ...s.testServiceBusPublishSubscribeBasic.json | 713 - ...ts.testServiceBusQueueAdvanceFeatures.json | 537 - ...iveOnlyTests.testServiceBusQueueBasic.json | 683 - ...ServiceBusWithClaimBasedAuthorization.json | 484 - ...mpleTests.testGettingSqlServerMetrics.json | 1146 - .../SqlSampleTests.testManageSqlDatabase.json | 1006 - ...ts.testManageSqlDatabaseInElasticPool.json | 2337 - ...qlDatabasesAcrossDifferentDataCenters.json | 4089 - ...mpleTests.testManageSqlFailoverGroups.json | 1538 - ...ampleTests.testManageSqlFirewallRules.json | 795 - ...sts.testManageSqlImportExportDatabase.json | 475 - ...leTests.testManageSqlServerDnsAliases.json | 887 - ...nageSqlServerKeysWithAzureKeyVaultKey.json | 587 - ...estManageSqlServerSecurityAlertPolicy.json | 858 - ...ests.testManageSqlVirtualNetworkRules.json | 945 - ...ageSqlWithRecoveredOrRestoredDatabase.json | 4814 - ...eSampleTests.testManageStorageAccount.json | 468 - ...leTests.testManageStorageAccountAsync.json | 514 - ....testManageStorageAccountNetworkRules.json | 664 - ...eTests.testManageSimpleTrafficManager.json | 2374 - ...rSampleTests.testManageTrafficManager.json | 2678 - 111 files changed, 6 insertions(+), 269352 deletions(-) create mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/assets.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageFunctionAppBasic.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppBasic.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppSqlConnection.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppBasic.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSlots.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSqlConnection.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CdnSampleTests.testManageCdnProfileWithCustomDomain.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCloneVirtualMachineToNewRegion.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testConvertVirtualMachineToManagedDisks.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVHD.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVM.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromVhd.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineWithTrustedLaunchFromGalleryImage.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesInParallel.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineExtensionImages.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineImages.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageAvailabilitySet.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageManagedDisks.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageStorageFromMSIEnabledVirtualMachine.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageUserAssignedMSIEnabledVirtualMachine.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachine.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineAsync.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineExtension.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSet.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetAsync.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetWithUnmanagedDisks.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithDisk.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithUnmanagedDisks.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachinesInParallel.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachine.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachineScaleSet.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithAzureFileShareMount.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithManualAzureFileShareMountCreation.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithMultipleContainerImages.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistry.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CosmosDBTests.testCreateCosmosDBTableWithVirtualNetworkRule.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CosmosDBTests.testCreateCosmosDBWithEventualConsistency.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CosmosDBTests.testCreateCosmosDBWithIPRange.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CosmosDBTests.testCreateCosmosDBWithKindMongoDB.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CosmosDBTests.testManageHACosmosDB.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/DnsSampleTests.testManageDns.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/EventHubsSampleTests.testManageEventHub.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/EventHubsSampleTests.testManageEventHubEvents.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/EventHubsSampleTests.testManageEventHubGeoDisasterRecovery.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/GraphRbacTests.testManageServicePrincipal.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/GraphRbacTests.testManageServicePrincipalCredentials.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/GraphRbacTests.testManageUsersGroupsAndRoles.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KeyVaultSampleTests.testManageKeyVault.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testDeployImageFromContainerRegistryToKubernetes.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesCluster.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/KubernetesClusterTests.testManageKubernetesClusterWithAdvancedNetworking.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/MonitorTests.testAutoscaleSettingsBasedOnPerformanceOrSchedule.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/MonitorTests.testQueryMetricsAndActivityLogs.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/MonitorTests.testSecurityBreachOrRiskActivityLogAlerts.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/MonitorTests.testWebAppPerformanceMonitoringAlerts.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testCreateSimpleInternetFacingLoadBalancer.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageApplicationGateway.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageIPAddress.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageInternalLoadBalancer.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageInternetFacingLoadBalancer.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageNetworkInterface.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageNetworkPeeringInSameSubscription.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageNetworkSecurityGroup.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManagePrivateLink.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageSimpleApplicationGateway.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageVirtualMachinesInParallelWithNetwork.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageVirtualNetwork.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageVirtualNetworkAsync.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testManageVpnGatewaySite2SiteConnection.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkSampleTests.testVerifyNetworkPeeringWithNetworkWatcher.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/NetworkWatcherSampleLiveOnlyTests.testManageNetworkWatcher.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/PrivateDnsSampleTests.testManagePrivateDns.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/RedisCacheSampleTests.testManageRedisCache.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testDeployUsingARMTemplate.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testDeployUsingARMTemplateAsync.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testDeployUsingARMTemplateWithDeploymentOperations.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testDeployUsingARMTemplateWithProgress.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testDeployUsingARMTemplateWithTags.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testDeployVirtualMachineUsingARMTemplate.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testManageLocks.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testManageResource.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ResourceSampleTests.testManageResourceGroup.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SearchSampleTests.testManageSearchService.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ServiceBusSampleLiveOnlyTests.testServiceBusPublishSubscribeAdvanceFeatures.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ServiceBusSampleLiveOnlyTests.testServiceBusPublishSubscribeBasic.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ServiceBusSampleLiveOnlyTests.testServiceBusQueueAdvanceFeatures.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ServiceBusSampleLiveOnlyTests.testServiceBusQueueBasic.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ServiceBusSampleLiveOnlyTests.testServiceBusWithClaimBasedAuthorization.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testGettingSqlServerMetrics.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlDatabase.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlDatabaseInElasticPool.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlDatabasesAcrossDifferentDataCenters.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlFailoverGroups.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlFirewallRules.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlImportExportDatabase.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlServerDnsAliases.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlServerKeysWithAzureKeyVaultKey.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlServerSecurityAlertPolicy.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlVirtualNetworkRules.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/SqlSampleTests.testManageSqlWithRecoveredOrRestoredDatabase.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/StorageSampleTests.testManageStorageAccount.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/StorageSampleTests.testManageStorageAccountAsync.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/StorageSampleTests.testManageStorageAccountNetworkRules.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/TrafficManagerSampleTests.testManageSimpleTrafficManager.json delete mode 100644 sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/TrafficManagerSampleTests.testManageTrafficManager.json diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/assets.json b/sdk/resourcemanager/azure-resourcemanager-samples/assets.json new file mode 100644 index 000000000000..729f3c459eef --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-samples/assets.json @@ -0,0 +1,6 @@ +{ + "AssetsRepo": "Azure/azure-sdk-assets", + "AssetsRepoPrefixPath": "java", + "TagPrefix": "java/resourcemanager/azure-resourcemanager-samples", + "Tag": "" +} diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageFunctionAppBasic.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageFunctionAppBasic.json deleted file mode 100644 index 12b03fee6184..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageFunctionAppBasic.json +++ /dev/null @@ -1,2927 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_6b113915b228?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:27:53 GMT", - "content-length" : "327", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5df0fe23-2acb-438e-8593-36360067446e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082753Z:5df0fe23-2acb-438e-8593-36360067446e", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5df0fe23-2acb-438e-8593-36360067446e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228\",\"name\":\"rg1nemv_6b113915b228\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-08-03T08:27:50.970714400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/f029ae0460d94bcf9e26?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:00 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7abe768-ae08-4a9d-824a-34c8e2b114be", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082800Z:e7abe768-ae08-4a9d-824a-34c8e2b114be", - "connection" : "keep-alive", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/a85d6cc0-5a8d-42eb-89e6-8e9adcdb6a22?monitor=true&api-version=2022-09-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a85d6cc0-5a8d-42eb-89e6-8e9adcdb6a22", - "Body" : "" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1404", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8c131902-c35f-4e67-bd18-985cfdbf9fa2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082803Z:8c131902-c35f-4e67-bd18-985cfdbf9fa2", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c50a6bfe-26a3-42aa-abfb-301c65bb2aed", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"name\":\"webapp1-1a32219241planfd403535a\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":33963,\"name\":\"webapp1-1a32219241planfd403535a\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"functionapp\",\"resourceGroup\":\"rg1nemv_6b113915b228\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-037_33963\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/a85d6cc0-5a8d-42eb-89e6-8e9adcdb6a22?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:17 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1222", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "19dcba72-9a6d-4abe-913b-47e7639abbe4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082818Z:19dcba72-9a6d-4abe-913b-47e7639abbe4", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8e44a88d-7c85-4b86-8c9a-71bfe1e61a73", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/f029ae0460d94bcf9e26\",\"name\":\"f029ae0460d94bcf9e26\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:27:59.8856069Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:27:59.8856069Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-03T08:27:59.8075063Z\",\"primaryEndpoints\":{\"blob\":\"https://f029ae0460d94bcf9e26.blob.core.windows.net/\",\"queue\":\"https://f029ae0460d94bcf9e26.queue.core.windows.net/\",\"table\":\"https://f029ae0460d94bcf9e26.table.core.windows.net/\",\"file\":\"https://f029ae0460d94bcf9e26.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/f029ae0460d94bcf9e26?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:18 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1222", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f1f2ca57-052c-457b-a485-2b43a9c0b5bd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082819Z:f1f2ca57-052c-457b-a485-2b43a9c0b5bd", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "17d59096-c025-4689-ba85-ef3f70b9c804", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/f029ae0460d94bcf9e26\",\"name\":\"f029ae0460d94bcf9e26\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:27:59.8856069Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:27:59.8856069Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-03T08:27:59.8075063Z\",\"primaryEndpoints\":{\"blob\":\"https://f029ae0460d94bcf9e26.blob.core.windows.net/\",\"queue\":\"https://f029ae0460d94bcf9e26.queue.core.windows.net/\",\"table\":\"https://f029ae0460d94bcf9e26.table.core.windows.net/\",\"file\":\"https://f029ae0460d94bcf9e26.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5569", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b5f8de6a-02a8-4955-b8c1-1d0fc8fcff66", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082841Z:b5f8de6a-02a8-4955-b8c1-1d0fc8fcff66", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669700D65B030\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3804b265-4986-40a7-894e-0673be6cf0ce", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-1a32219241\",\"state\":\"Running\",\"hostNames\":[\"webapp1-1a32219241.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp1-1a32219241\",\"repositorySiteName\":\"webapp1-1a32219241\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-1a32219241.azurewebsites.net\",\"webapp1-1a32219241.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-1a32219241.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-1a32219241.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:22.987\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-1a32219241\",\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp1-1a32219241\\\\$webapp1-1a32219241\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp1-1a32219241.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:43 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3691", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "28b17a4d-b9fc-43ec-8eac-7699eeebd744", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082843Z:28b17a4d-b9fc-43ec-8eac-7699eeebd744", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669700D65B030\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec5fb0d4-490d-4a9b-8767-8b753af83600", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":-1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-1a32219241\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/f029ae0460d94bcf9e26/listKeys?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:43 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33e2652c-2bbe-4551-a9d3-052fb53a9097", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082844Z:33e2652c-2bbe-4551-a9d3-052fb53a9097", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a2951e02-64b8-4c2a-92d4-38d96321c69a", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:43 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1404", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f0fcb3a0-448a-4789-bbc9-a364ca00c2cc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082844Z:f0fcb3a0-448a-4789-bbc9-a364ca00c2cc", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5240d0c5-0649-4bba-9ef0-d564645f2aae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"name\":\"webapp1-1a32219241planfd403535a\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":33963,\"name\":\"webapp1-1a32219241planfd403535a\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"functionapp\",\"resourceGroup\":\"rg1nemv_6b113915b228\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-037_33963\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "302", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "38434e65-271f-4d2d-ac49-4fe02a6fd716", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082845Z:38434e65-271f-4d2d-ac49-4fe02a6fd716", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5f91cfa4-2f25-4b56-aefd-a0ef1e4ec345", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "172b5011-e5ce-4e31-a7fa-6ddb1513c5cc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082908Z:172b5011-e5ce-4e31-a7fa-6ddb1513c5cc", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669701C05BCC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e0c762a7-5304-4185-a630-f1c7819bc099", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp1-1a3221924193b9152952b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c270f522-118a-4900-a0ff-b5934e6947cc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082909Z:c270f522-118a-4900-a0ff-b5934e6947cc", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669701C05BCC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9e106746-aaec-41a4-99bc-8f40b0503d76", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings/webapp1-1a32219241.azurewebsites.net\",\"name\":\"webapp1-1a32219241/webapp1-1a32219241.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-1a32219241\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4451d824-d668-4f83-92d7-62a82704d65a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082910Z:4451d824-d668-4f83-92d7-62a82704d65a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a0b1639c-85b1-4b23-8094-d999dce096bb", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:10 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a72c781b-9f67-4002-b561-a89863e09405", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082911Z:a72c781b-9f67-4002-b561-a89863e09405", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1d203de0-65dd-4a98-b47f-181d7a972cff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp1-1a3221924193b9152952b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0bb28436-05ec-40c0-b7f2-ec65775d6544", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082911Z:0bb28436-05ec-40c0-b7f2-ec65775d6544", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0910b79e-0422-476d-8117-5b7d545f1e52", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8421e725-cf00-4ef5-85c0-4ac70d7f5deb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082912Z:8421e725-cf00-4ef5-85c0-4ac70d7f5deb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4150b17-67d2-49aa-a5a3-434b99bac5a0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1404", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "94138a1b-5635-49bd-aa87-15b4352ea7b9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082913Z:94138a1b-5635-49bd-aa87-15b4352ea7b9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2e51c80c-0aae-4ff1-8dfb-89023f0cf793", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"name\":\"webapp1-1a32219241planfd403535a\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":33963,\"name\":\"webapp1-1a32219241planfd403535a\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"functionapp\",\"resourceGroup\":\"rg1nemv_6b113915b228\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-037_33963\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/3b15a58a754643d08cb6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:16 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06319578-d205-4da2-b1bd-6a9796634ff6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082916Z:06319578-d205-4da2-b1bd-6a9796634ff6", - "connection" : "keep-alive", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/6f0d9df2-ee74-40b7-8786-1b322931af1f?monitor=true&api-version=2022-09-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6f0d9df2-ee74-40b7-8786-1b322931af1f", - "Body" : "" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:18 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1388", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5dd2f7f0-46c5-44fd-9127-0ec1e737c2c5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082918Z:5dd2f7f0-46c5-44fd-9127-0ec1e737c2c5", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "32d02f93-1d0a-430a-a363-724c1aa10f3b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173\",\"name\":\"webapp2-2f548675ecplaneb5621173\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":33964,\"name\":\"webapp2-2f548675ecplaneb5621173\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":3,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg1nemv_6b113915b228\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-037_33964\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"B1\",\"tier\":\"Basic\",\"size\":\"B1\",\"family\":\"B\",\"capacity\":1}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/6f0d9df2-ee74-40b7-8786-1b322931af1f?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:33 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1222", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2ecd40a2-a4d9-4ac8-b798-64bb43dda017", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082934Z:2ecd40a2-a4d9-4ac8-b798-64bb43dda017", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4656c026-a868-4e89-b25d-c02b38e47218", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/3b15a58a754643d08cb6\",\"name\":\"3b15a58a754643d08cb6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:29:16.3337272Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:29:16.3337272Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-03T08:29:16.2556052Z\",\"primaryEndpoints\":{\"blob\":\"https://3b15a58a754643d08cb6.blob.core.windows.net/\",\"queue\":\"https://3b15a58a754643d08cb6.queue.core.windows.net/\",\"table\":\"https://3b15a58a754643d08cb6.table.core.windows.net/\",\"file\":\"https://3b15a58a754643d08cb6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/3b15a58a754643d08cb6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:35 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1222", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9d4b16d-633d-4008-8c5a-9de5070a60d6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082935Z:b9d4b16d-633d-4008-8c5a-9de5070a60d6", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "77ea0174-c6d9-4757-bc8f-3dfe9fbd0221", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/3b15a58a754643d08cb6\",\"name\":\"3b15a58a754643d08cb6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:29:16.3337272Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:29:16.3337272Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-03T08:29:16.2556052Z\",\"primaryEndpoints\":{\"blob\":\"https://3b15a58a754643d08cb6.blob.core.windows.net/\",\"queue\":\"https://3b15a58a754643d08cb6.queue.core.windows.net/\",\"table\":\"https://3b15a58a754643d08cb6.table.core.windows.net/\",\"file\":\"https://3b15a58a754643d08cb6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5567", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "18419d5b-10f8-4298-ae66-530214a50bdb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082957Z:18419d5b-10f8-4298-ae66-530214a50bdb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703B5A36F0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "77c604ed-d7d3-46f5-bf1a-cbcd543cac91", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"name\":\"webapp2-2f548675ec\",\"state\":\"Running\",\"hostNames\":[\"webapp2-2f548675ec.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp2-2f548675ec\",\"repositorySiteName\":\"webapp2-2f548675ec\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-2f548675ec.azurewebsites.net\",\"webapp2-2f548675ec.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-2f548675ec.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-2f548675ec.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:39.983\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-2f548675ec\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp2-2f548675ec\\\\$webapp2-2f548675ec\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp2-2f548675ec.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:00 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3688", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1119", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "14abb78f-d707-4fad-8387-2b28b4c17cbb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083000Z:14abb78f-d707-4fad-8387-2b28b4c17cbb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703B5A36F0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9544a721-4433-428a-8bb2-ea1246640214", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-2f548675ec\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":true,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":true,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Storage/storageAccounts/3b15a58a754643d08cb6/listKeys?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:00 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "867d92a6-c1bb-48f4-9861-b382bee3627e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083001Z:867d92a6-c1bb-48f4-9861-b382bee3627e", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b63ef6ca-05fa-4771-9ca8-f4f4bd9dce9b", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:00 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1388", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fcff1155-ea33-4b79-ae0d-2c1d33ab80a6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083001Z:fcff1155-ea33-4b79-ae0d-2c1d33ab80a6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f076bd13-ec91-4a3e-b80d-fee414e772dc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173\",\"name\":\"webapp2-2f548675ecplaneb5621173\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":33964,\"name\":\"webapp2-2f548675ecplaneb5621173\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":3,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg1nemv_6b113915b228\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-037_33964\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"B1\",\"tier\":\"Basic\",\"size\":\"B1\",\"family\":\"B\",\"capacity\":1}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:02 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "302", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "be637bb3-110e-4622-85ae-0872d3fff487", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11991", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083003Z:be637bb3-110e-4622-85ae-0872d3fff487", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7d96610d-53cd-41c7-8948-684fb5236340", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "744", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1130", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7645d98-8742-4311-8ba6-e9e315cc0b15", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083004Z:e7645d98-8742-4311-8ba6-e9e315cc0b15", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970497B2870\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2118c2ec-acba-486a-bb9e-dc3f77cbacb2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3f45a5dc-e407-4651-a24c-d288bf15ede7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083005Z:3f45a5dc-e407-4651-a24c-d288bf15ede7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970497B2870\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec7d7999-ae28-4b0e-8574-f95cdbe045bc", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings/webapp2-2f548675ec.azurewebsites.net\",\"name\":\"webapp2-2f548675ec/webapp2-2f548675ec.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-2f548675ec\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "70d20dd6-8fcb-4e39-9587-8ca433ba72a8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083006Z:70d20dd6-8fcb-4e39-9587-8ca433ba72a8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8a7e441e-a50a-4957-a65c-ff3c54aa651e", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "744", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f79d1fce-44a8-47bc-806b-24588b744226", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11987", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083006Z:f79d1fce-44a8-47bc-806b-24588b744226", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "94974cd9-d92f-45d2-b443-fa300299879a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "683a2d02-1d5a-4a31-b7ec-4e7e07449987", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083007Z:683a2d02-1d5a-4a31-b7ec-4e7e07449987", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a70e098e-a6dd-4894-a133-12d46d227b96", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a8f47d43-5d65-4ee0-8d8d-e8f1e6db7328", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11990", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083007Z:a8f47d43-5d65-4ee0-8d8d-e8f1e6db7328", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d1fd954d-729e-407f-94ee-5743b13f14ae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2nemv_4c413219042a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:09 GMT", - "content-length" : "327", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1123", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "985316a1-cbb6-4eb4-a91e-80184b7510ed", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083010Z:985316a1-cbb6-4eb4-a91e-80184b7510ed", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "985316a1-cbb6-4eb4-a91e-80184b7510ed", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a\",\"name\":\"rg2nemv_4c413219042a\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-08-03T08:30:08.114624800Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Storage/storageAccounts/b7979f22e4174f68ae8b?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:13 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1116", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0ed031a1-017e-4ca4-b63e-451ea70417a0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083013Z:0ed031a1-017e-4ca4-b63e-451ea70417a0", - "connection" : "keep-alive", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/46b3b2e6-0a58-4234-894a-dc8f988e6224?monitor=true&api-version=2022-09-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "46b3b2e6-0a58-4234-894a-dc8f988e6224", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/46b3b2e6-0a58-4234-894a-dc8f988e6224?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:30 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1222", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1074b215-37a1-4ab3-b52e-7b381cd7face", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083031Z:1074b215-37a1-4ab3-b52e-7b381cd7face", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2bb08d9b-10e1-480e-adc7-afcb6007241f", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Storage/storageAccounts/b7979f22e4174f68ae8b\",\"name\":\"b7979f22e4174f68ae8b\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:30:12.4445889Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:30:12.4445889Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-03T08:30:12.3820789Z\",\"primaryEndpoints\":{\"blob\":\"https://b7979f22e4174f68ae8b.blob.core.windows.net/\",\"queue\":\"https://b7979f22e4174f68ae8b.queue.core.windows.net/\",\"table\":\"https://b7979f22e4174f68ae8b.table.core.windows.net/\",\"file\":\"https://b7979f22e4174f68ae8b.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Storage/storageAccounts/b7979f22e4174f68ae8b?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:31 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1222", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "39a24b16-ccf7-48f8-ad06-7db6723f4ce5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083031Z:39a24b16-ccf7-48f8-ad06-7db6723f4ce5", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "58d12982-9896-41a9-a570-5a5498ae6fdb", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Storage/storageAccounts/b7979f22e4174f68ae8b\",\"name\":\"b7979f22e4174f68ae8b\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:30:12.4445889Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-03T08:30:12.4445889Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-03T08:30:12.3820789Z\",\"primaryEndpoints\":{\"blob\":\"https://b7979f22e4174f68ae8b.blob.core.windows.net/\",\"queue\":\"https://b7979f22e4174f68ae8b.queue.core.windows.net/\",\"table\":\"https://b7979f22e4174f68ae8b.table.core.windows.net/\",\"file\":\"https://b7979f22e4174f68ae8b.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5569", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3096da8e-05d0-4938-8649-ffdfc3e63937", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083055Z:3096da8e-05d0-4938-8649-ffdfc3e63937", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669705D6C2370\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "951996ea-72e1-44e2-9da4-85f39785cb3d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc\",\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-54458135dc\",\"state\":\"Running\",\"hostNames\":[\"webapp3-54458135dc.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp3-54458135dc\",\"repositorySiteName\":\"webapp3-54458135dc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-54458135dc.azurewebsites.net\",\"webapp3-54458135dc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-54458135dc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-54458135dc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:30:36.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-54458135dc\",\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp3-54458135dc\\\\$webapp3-54458135dc\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_4c413219042a\",\"defaultHostName\":\"webapp3-54458135dc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:58 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3691", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3cc07e77-23a4-4cfb-92ce-c060d58e542b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083058Z:3cc07e77-23a4-4cfb-92ce-c060d58e542b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669705D6C2370\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec026d06-0ba4-4ca9-b365-7cc1ac6c16a9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc\",\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":-1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-54458135dc\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Storage/storageAccounts/b7979f22e4174f68ae8b/listKeys?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:58 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "962b942d-657b-4c8b-857f-094ab70d9188", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083059Z:962b942d-657b-4c8b-857f-094ab70d9188", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1c9c8400-4c0d-4194-b321-0cee1932fe94", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1404", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7f2f813a-306f-45ce-ac50-0e6ffaeab9b0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083059Z:7f2f813a-306f-45ce-ac50-0e6ffaeab9b0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "159abba0-7775-43e6-9184-239058b19397", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"name\":\"webapp1-1a32219241planfd403535a\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":33963,\"name\":\"webapp1-1a32219241planfd403535a\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"functionapp\",\"resourceGroup\":\"rg1nemv_6b113915b228\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-037_33963\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "302", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9619008e-b0c8-483e-8cd7-3aeaabb2b394", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083100Z:9619008e-b0c8-483e-8cd7-3aeaabb2b394", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "162020cc-b79e-4ba2-8a12-bcbfbd905ea8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:21 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4edf3193-ed18-4f6d-9bfa-bbf8284f566e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083122Z:4edf3193-ed18-4f6d-9bfa-bbf8284f566e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669706BB8B8D0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7c5f5856-41ae-4a4b-9513-3a3b6d99e73d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp3-54458135dcc0f286275d4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bedea082-5b3e-48f5-9bcf-ac64d87ecee1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083122Z:bedea082-5b3e-48f5-9bcf-ac64d87ecee1", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669706BB8B8D0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c3f3d3a-e717-4ad1-9a55-edc67ea832d1", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/hostNameBindings/webapp3-54458135dc.azurewebsites.net\",\"name\":\"webapp3-54458135dc/webapp3-54458135dc.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp3-54458135dc\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "02c8535c-cba1-4909-a777-04e6c4508e6b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083123Z:02c8535c-cba1-4909-a777-04e6c4508e6b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "90529c78-2c85-45e4-a0f7-568648a61119", - "Body" : "{\"id\":null,\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:23 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "44bcdc44-56c9-48c2-a989-09f31ff1fa98", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083123Z:44bcdc44-56c9-48c2-a989-09f31ff1fa98", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "35222344-450e-4183-897b-3238c62ff54d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp3-54458135dcc0f286275d4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:23 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f58e73b9-3349-41e0-b1bc-e63f7f0b82b9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083124Z:f58e73b9-3349-41e0-b1bc-e63f7f0b82b9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a4689482-7f35-4115-9369-a9ec4bbdc7b2", - "Body" : "{\"id\":null,\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:24 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7dcefb65-da43-479d-9385-00103017c87c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083124Z:7dcefb65-da43-479d-9385-00103017c87c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "45d52be9-bc21-41f7-8ed8-8f34ed9fd9df", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/stop?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:25 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7572fb70-a563-467f-b139-bfe6b503c018", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083126Z:7572fb70-a563-467f-b139-bfe6b503c018", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "64a2ea6e-839c-48b2-b7aa-3dba7c71b42e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:26 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5370", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8866dffd-bd3e-4f8f-b27a-72c28c3a0c53", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083127Z:8866dffd-bd3e-4f8f-b27a-72c28c3a0c53", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669707986A850\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ead4693a-4cff-4c4e-98bc-8faa806d1029", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-1a32219241\",\"state\":\"Stopped\",\"hostNames\":[\"webapp1-1a32219241.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp1-1a32219241\",\"repositorySiteName\":\"webapp1-1a32219241\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-1a32219241.azurewebsites.net\",\"webapp1-1a32219241.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-1a32219241.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-1a32219241.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:25.013\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-1a32219241\",\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp1-1a32219241\\\\$webapp1-1a32219241\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp1-1a32219241.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3709", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bb5a9828-a291-413f-a48d-8e4a39feff01", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083127Z:bb5a9828-a291-413f-a48d-8e4a39feff01", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7c815bb4-518d-437d-a58d-18b0d4f7464f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":-1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-1a32219241\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "daeebbec-e9e3-4744-a375-5d8d28edcfb9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083133Z:daeebbec-e9e3-4744-a375-5d8d28edcfb9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669707986A850\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7d89d236-0b85-4039-89c0-89284528a6e6", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings/webapp1-1a32219241.azurewebsites.net\",\"name\":\"webapp1-1a32219241/webapp1-1a32219241.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-1a32219241\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0dbb9ce7-7027-493e-be87-6c6186864b9a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083134Z:0dbb9ce7-7027-493e-be87-6c6186864b9a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a66c7e2f-639a-4e96-9e03-57b1327276a8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp1-1a3221924193b9152952b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1410cb7f-0da3-4515-ae1b-4bb625a2c01f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083135Z:1410cb7f-0da3-4515-ae1b-4bb625a2c01f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "bd8a5423-08de-432a-899c-b49b2f5d3c3d", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:36 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "49566d27-c724-4ccb-9f44-13a230aeb4e3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083136Z:49566d27-c724-4ccb-9f44-13a230aeb4e3", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "46573c26-78c9-49ff-a3cb-486e15eb6664", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:36 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "98e02042-52be-4f25-a164-c2d1769821fe", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083136Z:98e02042-52be-4f25-a164-c2d1769821fe", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d50b44d7-273d-4c27-98bf-afb37f2c31dd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/start?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7eb0a7e0-0a24-43af-881a-da09f21110c0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083139Z:7eb0a7e0-0a24-43af-881a-da09f21110c0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "a61ad7b3-c7d1-444c-af44-cd6de2c7681e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:39 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5369", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f44a833-5899-4755-9085-22690f85345d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083140Z:6f44a833-5899-4755-9085-22690f85345d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697080FE2040\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a34e0840-b4de-4817-a65a-646b475ace93", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-1a32219241\",\"state\":\"Running\",\"hostNames\":[\"webapp1-1a32219241.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp1-1a32219241\",\"repositorySiteName\":\"webapp1-1a32219241\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-1a32219241.azurewebsites.net\",\"webapp1-1a32219241.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-1a32219241.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-1a32219241.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:37.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-1a32219241\",\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp1-1a32219241\\\\$webapp1-1a32219241\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp1-1a32219241.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3709", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24bf6ddb-9c74-4ffb-9131-bc746874d41a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083140Z:24bf6ddb-9c74-4ffb-9131-bc746874d41a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4a77c20a-ca86-4146-b987-3a036b1b21d6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":-1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-1a32219241\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:41 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f107d5f8-bc13-43f0-ad30-c08d80a21199", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083141Z:f107d5f8-bc13-43f0-ad30-c08d80a21199", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697080FE2040\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "38b35c85-c0cb-41f4-941a-3de7f7996ed5", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings/webapp1-1a32219241.azurewebsites.net\",\"name\":\"webapp1-1a32219241/webapp1-1a32219241.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-1a32219241\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:42 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "28a0df9a-871f-4686-8876-09984036e994", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083143Z:28a0df9a-871f-4686-8876-09984036e994", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "554550e3-0e39-4d9c-a43f-0d763c56b2f5", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:43 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1bb7cf6a-fdda-423e-bb72-b7aba8877f5d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083143Z:1bb7cf6a-fdda-423e-bb72-b7aba8877f5d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1f0b28dd-75f0-41f0-9abe-36c6b79e3927", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp1-1a3221924193b9152952b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "36f9dde1-620c-434a-b2e4-3816f6b27cd8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083144Z:36f9dde1-620c-434a-b2e4-3816f6b27cd8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "55882e7f-f167-46f4-8fdd-dcefb0694184", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bba56a0f-fc6f-4445-919b-3fb18ace5050", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083144Z:bba56a0f-fc6f-4445-919b-3fb18ace5050", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1992a1c4-c298-4439-86e1-efe666af5176", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/restart?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bb6cd18a-0fe5-47d4-835d-04e2d1284a08", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083145Z:bb6cd18a-0fe5-47d4-835d-04e2d1284a08", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "427251dc-72d0-4686-b12f-200207e8e847", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:46 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5367", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "50e995ef-f5ef-4898-8dbc-deb852e3bbff", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083146Z:50e995ef-f5ef-4898-8dbc-deb852e3bbff", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697085A44FC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a11b4df6-bd7b-4fdf-a05e-335c4e89bae1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-2f548675ec\",\"state\":\"Running\",\"hostNames\":[\"webapp2-2f548675ec.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp2-2f548675ec\",\"repositorySiteName\":\"webapp2-2f548675ec\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-2f548675ec.azurewebsites.net\",\"webapp2-2f548675ec.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-2f548675ec.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-2f548675ec.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:45.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-2f548675ec\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp2-2f548675ec\\\\$webapp2-2f548675ec\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp2-2f548675ec.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:46 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3706", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0bcc7ca2-49d4-463b-bd80-3fe4edfb7694", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083147Z:0bcc7ca2-49d4-463b-bd80-3fe4edfb7694", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f470bdc9-dee1-4505-add8-ac8088194d14", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-2f548675ec\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":true,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":true,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:48 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "02b48043-1c3a-4b62-9094-7058fbf22a12", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083148Z:02b48043-1c3a-4b62-9094-7058fbf22a12", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697085A44FC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ac25f0dd-69c3-4b27-86f0-b2d491878868", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings/webapp2-2f548675ec.azurewebsites.net\",\"name\":\"webapp2-2f548675ec/webapp2-2f548675ec.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-2f548675ec\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6082baca-c226-4a40-a57e-1d50e39ed8d3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083149Z:6082baca-c226-4a40-a57e-1d50e39ed8d3", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ce6560a7-b003-423b-bc50-1cf1640c49b2", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "744", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7b34cfa6-7e8a-4c90-a5f1-f6873621aca9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083150Z:7b34cfa6-7e8a-4c90-a5f1-f6873621aca9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9d55c15a-011a-47bc-b9b0-925c63ec376c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:51 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "91ba8617-6a8d-4897-b8fc-7fe9b1dec37c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11985", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083151Z:91ba8617-6a8d-4897-b8fc-7fe9b1dec37c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c72cd971-d8c7-45fd-917e-28e1aa2c0526", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:51 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "73d17ed0-455a-4042-9d0b-649becb03185", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083151Z:73d17ed0-455a-4042-9d0b-649becb03185", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4a51b43c-5e2f-4c52-85f8-f21467ed4c6b", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "10779", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "35d7466e-3878-46a0-b84b-ae428c99e7ea", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083152Z:35d7466e-3878-46a0-b84b-ae428c99e7ea", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0ee4e564-7ab1-4231-a24b-39e2f149ea21", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-2f548675ec\",\"state\":\"Running\",\"hostNames\":[\"webapp2-2f548675ec.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp2-2f548675ec\",\"repositorySiteName\":\"webapp2-2f548675ec\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-2f548675ec.azurewebsites.net\",\"webapp2-2f548675ec.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-2f548675ec.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-2f548675ec.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:45.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-2f548675ec\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp2-2f548675ec\\\\$webapp2-2f548675ec\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp2-2f548675ec.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-1a32219241\",\"state\":\"Running\",\"hostNames\":[\"webapp1-1a32219241.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp1-1a32219241\",\"repositorySiteName\":\"webapp1-1a32219241\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-1a32219241.azurewebsites.net\",\"webapp1-1a32219241.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-1a32219241.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-1a32219241.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:37.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-1a32219241\",\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp1-1a32219241\\\\$webapp1-1a32219241\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp1-1a32219241.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:53 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3706", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e4645550-9d0e-4039-ab27-21fffe26b7be", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083153Z:e4645550-9d0e-4039-ab27-21fffe26b7be", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5e34c02d-5657-4078-83d5-c66f1d7ac1b2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-2f548675ec\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":true,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":true,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3709", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11771", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8529bd38-e848-4a32-beed-3e42b93f7a86", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083153Z:8529bd38-e848-4a32-beed-3e42b93f7a86", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2a6bcec0-a555-4211-9ebe-603ed2a716a2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/web\",\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":-1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-1a32219241\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:53 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ff388ac-753e-49f6-b521-3116d09bee2c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083153Z:8ff388ac-753e-49f6-b521-3116d09bee2c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "bb7448f2-b181-4dff-a307-71f36bf8425c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:54 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "75dec0b3-b807-4e06-9e37-2d6f9517baaa", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083154Z:75dec0b3-b807-4e06-9e37-2d6f9517baaa", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a617022d-6709-4624-b548-d814d7293581", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:54 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ed18a18a-8ec3-4bac-8200-b233499415a8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083155Z:ed18a18a-8ec3-4bac-8200-b233499415a8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697085A44FC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e0832ee9-10a8-4ab8-a602-27bb836c5102", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings/webapp2-2f548675ec.azurewebsites.net\",\"name\":\"webapp2-2f548675ec/webapp2-2f548675ec.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-2f548675ec\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "744", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b03fbf73-7438-4fab-9ebe-9e2a43bf52c3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11984", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083156Z:b03fbf73-7438-4fab-9ebe-9e2a43bf52c3", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5d809159-4f24-4d1d-aa56-9bf17d30ed4a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df92f114-9484-4739-9143-8e632eb3fb56", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083156Z:df92f114-9484-4739-9143-8e632eb3fb56", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "11c01de1-97cd-4e39-88ad-39f8eef80872", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8fbd959c-79a7-4550-958f-604984783f1f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083157Z:8fbd959c-79a7-4550-958f-604984783f1f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "aedd8aa8-62a1-47ec-9931-470d953fa9b1", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a21a6a0d-3e99-47ea-a804-40a2fdd5b22e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11990", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083158Z:a21a6a0d-3e99-47ea-a804-40a2fdd5b22e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "44cbe444-0ad4-4a18-877a-6ebea831c952", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:58 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "66a04be1-8089-4755-b7b9-060045acc84c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083159Z:66a04be1-8089-4755-b7b9-060045acc84c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697080FE2040\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "62d72a3f-6321-4f8e-a857-03a0b17865eb", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/hostNameBindings/webapp1-1a32219241.azurewebsites.net\",\"name\":\"webapp1-1a32219241/webapp1-1a32219241.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-1a32219241\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aeffe9d2-ade0-4dec-ad94-41b6212f1bc9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11989", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083159Z:aeffe9d2-ade0-4dec-ad94-41b6212f1bc9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "68f0a718-b365-488f-af56-43a4bf7f69a4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp1-1a3221924193b9152952b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=f029ae0460d94bcf9e26;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11765", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47af7b3e-70ce-4837-bcca-60ea033bcd2d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083200Z:47af7b3e-70ce-4837-bcca-60ea033bcd2d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6601dc05-fcd1-4a1d-b803-d09c17321ee9", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:00 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11764", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b7efd2ce-8e62-4f91-9adc-421ec6108ec7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083201Z:b7efd2ce-8e62-4f91-9adc-421ec6108ec7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a181eacf-8672-4b98-8f54-3a34b3190a22", - "Body" : "{\"id\":null,\"name\":\"webapp1-1a32219241\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e8cad7e-903f-4b49-bc56-8710b2d592fd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11990", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083201Z:6e8cad7e-903f-4b49-bc56-8710b2d592fd", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "173723c7-e867-47dc-ab9f-23c34eb768f0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:02 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5410", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3fa7bca8-963b-46f2-9f04-6387374360a6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083202Z:3fa7bca8-963b-46f2-9f04-6387374360a6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "76dd4304-6b7b-4e56-81d7-b9f3d234f7d3", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc\",\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-54458135dc\",\"state\":\"Running\",\"hostNames\":[\"webapp3-54458135dc.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp3-54458135dc\",\"repositorySiteName\":\"webapp3-54458135dc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-54458135dc.azurewebsites.net\",\"webapp3-54458135dc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-54458135dc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-54458135dc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp1-1a32219241planfd403535a\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:01.853\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-54458135dc\",\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp3-54458135dc\\\\$webapp3-54458135dc\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_4c413219042a\",\"defaultHostName\":\"webapp3-54458135dc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1500eaa4-9b54-4c0c-a32a-ffffd79fbd21", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083203Z:1500eaa4-9b54-4c0c-a32a-ffffd79fbd21", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c4ba2ed-fdd9-49b2-94b5-541688edf63b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3709", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fd79168e-7eb9-412c-bb6c-e11f853a8644", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083203Z:fd79168e-7eb9-412c-bb6c-e11f853a8644", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4d203645-47c4-4cd8-9a1f-7f6a98356798", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/web\",\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":-1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-54458135dc\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11795", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1253b6b6-035f-4616-8924-1bcbfb0244e1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083204Z:1253b6b6-035f-4616-8924-1bcbfb0244e1", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669706BB8B8D0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e7b21dc2-ed9c-4f73-85e3-338835c4bca4", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/hostNameBindings/webapp3-54458135dc.azurewebsites.net\",\"name\":\"webapp3-54458135dc/webapp3-54458135dc.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp3-54458135dc\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1040", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3d2af3c-f6ed-4be9-a578-402c50b07603", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11982", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083205Z:b3d2af3c-f6ed-4be9-a578-402c50b07603", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b8790622-8e4b-48f2-87dc-c5aadfe3ea95", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"webapp3-54458135dcc0f286275d4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=b7979f22e4174f68ae8b;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fd1d6ad0-0d40-4b27-a2f8-dcc2501fbeb0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083206Z:fd1d6ad0-0d40-4b27-a2f8-dcc2501fbeb0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "33c75160-bb2b-46e0-a27e-02cf6d8ebce4", - "Body" : "{\"id\":null,\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "566d2c06-e31a-4fa7-938e-c2bfb57dd415", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083207Z:566d2c06-e31a-4fa7-938e-c2bfb57dd415", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ae6fcc5c-c359-4636-b5d3-3396cb6ebff9", - "Body" : "{\"id\":null,\"name\":\"webapp3-54458135dc\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0de3303b-954d-4a91-b3cc-2d99e83255d3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11981", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083207Z:0de3303b-954d-4a91-b3cc-2d99e83255d3", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "01ff4ce2-2afc-4da8-a666-cb5048b4835b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_4c413219042a/providers/Microsoft.Web/sites/webapp3-54458135dc/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp1-1a32219241?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:14 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14988", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0e2a1c0a-1b8d-4e8f-9c94-56b018b2c679", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083214Z:0e2a1c0a-1b8d-4e8f-9c94-56b018b2c679", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697080FE2040\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "53c50041-817f-46bd-86bd-1bea4f60c568", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5407", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11786", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d19e3143-4d07-4168-a82e-fb872f574972", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083215Z:d19e3143-4d07-4168-a82e-fb872f574972", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "74b468df-96c7-4e93-8a64-9c30a5d50285", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-2f548675ec\",\"state\":\"Running\",\"hostNames\":[\"webapp2-2f548675ec.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6b113915b228-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6b113915b228-WestUSwebspace/sites/webapp2-2f548675ec\",\"repositorySiteName\":\"webapp2-2f548675ec\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-2f548675ec.azurewebsites.net\",\"webapp2-2f548675ec.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-2f548675ec.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-2f548675ec.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/serverfarms/webapp2-2f548675ecplaneb5621173\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:31:45.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-2f548675ec\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"functionapp\",\"inboundIpAddress\":\"40.78.25.157\",\"possibleInboundIpAddresses\":\"40.78.25.157,40.112.243.40\",\"ftpUsername\":\"webapp2-2f548675ec\\\\$webapp2-2f548675ec\",\"ftpsHostName\":\"ftps://waws-prod-bay-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141\",\"possibleOutboundIpAddresses\":\"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141,138.91.191.105,104.42.73.126,104.42.72.104,104.42.77.115,104.42.79.48,40.78.25.157,40.112.243.40\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6b113915b228\",\"defaultHostName\":\"webapp2-2f548675ec.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3706", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "83cd7ba2-c973-42e9-8af1-05f236ae48e0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083216Z:83cd7ba2-c973-42e9-8af1-05f236ae48e0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1aba9d09-3b57-44c1-8bb8-6c4496c5ff04", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/web\",\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-2f548675ec\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":true,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":true,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":{\"allowedOrigins\":[\"https://functions.azure.com\",\"https://functions-staging.azure.com\",\"https://functions-next.azure.com\"],\"supportCredentials\":false},\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:16 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0e4c6111-e5f1-478a-8db3-57687fcb3f18", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083216Z:0e4c6111-e5f1-478a-8db3-57687fcb3f18", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3d495c27-1827-4b47-80f3-91f141f864ba", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:17 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11782", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8992fb1-9fad-4aa6-8696-848ae306fb87", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083217Z:e8992fb1-9fad-4aa6-8696-848ae306fb87", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697085A44FC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3058af31-cd82-4505-b986-fbe9a6c0d04a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/hostNameBindings/webapp2-2f548675ec.azurewebsites.net\",\"name\":\"webapp2-2f548675ec/webapp2-2f548675ec.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-2f548675ec\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:17 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "744", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2185d7f4-8e92-445b-ab7c-1d3e33bd8273", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11988", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083218Z:2185d7f4-8e92-445b-ab7c-1d3e33bd8273", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8eca8a78-01fb-4e11-8516-7f725a35917b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~1\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=3b15a58a754643d08cb6;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:17 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11780", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee4ee19d-197b-4686-8012-21066def14b4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083218Z:ee4ee19d-197b-4686-8012-21066def14b4", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "af35e9dd-086e-402c-ac36-9f1c7faab3ad", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:18 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ab170934-b99d-47a2-a11d-f34bfcbf68ee", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083219Z:ab170934-b99d-47a2-a11d-f34bfcbf68ee", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1e950e99-bbfe-4e59-9182-df0e910dc8ef", - "Body" : "{\"id\":null,\"name\":\"webapp2-2f548675ec\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:18 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c7462279-cb7d-4b8f-a900-0f6ecc832317", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11987", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083219Z:c7462279-cb7d-4b8f-a900-0f6ecc832317", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3c28eae8-6c63-46fb-85a2-ee0239dbede3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6b113915b228/providers/Microsoft.Web/sites/webapp2-2f548675ec/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_6b113915b228?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:22 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "71ef8c36-8752-4b1d-a83c-5150ae84f991", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083222Z:71ef8c36-8752-4b1d-a83c-5150ae84f991", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzFORU1WOjVGNkIxMTM5MTVCMjI4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "71ef8c36-8752-4b1d-a83c-5150ae84f991", - "Body" : "" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2nemv_4c413219042a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:24 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14987", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "32ef2885-8ac9-48f3-a0b1-571cd822df6c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083225Z:32ef2885-8ac9-48f3-a0b1-571cd822df6c", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzJORU1WOjVGNEM0MTMyMTkwNDJBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "32ef2885-8ac9-48f3-a0b1-571cd822df6c", - "Body" : "" - } - } ], - "variables" : [ "webapp1-1a32219241", "webapp2-2f548675ec", "webapp3-54458135dc", "rg1nemv_6b113915b228", "rg2nemv_4c413219042a", "webapp1-1a32219241planfd403535a", "f029ae0460d94bcf9e26", "webapp1-1a3221924193b9152952b", "webapp2-2f548675ecplaneb5621173", "3b15a58a754643d08cb6", "b7979f22e4174f68ae8b", "webapp3-54458135dcc0f286275d4" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppBasic.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppBasic.json deleted file mode 100644 index 4cf331eaea09..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppBasic.json +++ /dev/null @@ -1,2561 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_28f7085314d1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:27:52 GMT", - "content-length" : "327", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "00de08ed-5237-4097-9e48-9e6258d6beb1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082753Z:00de08ed-5237-4097-9e48-9e6258d6beb1", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "00de08ed-5237-4097-9e48-9e6258d6beb1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1\",\"name\":\"rg1nemv_28f7085314d1\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-08-03T08:27:50.595716900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1393", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31432dd6-8829-4f40-85e9-2365439cbcff", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082809Z:31432dd6-8829-4f40-85e9-2365439cbcff", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "876c1cba-10f7-46d1-a408-9f700bdb62a8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"name\":\"webapp1-e76229561fplan79b00252f\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":4733,\"name\":\"webapp1-e76229561fplan79b00252f\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"linux\",\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-143_4733\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5570", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6325b980-8174-4198-a0b7-fb193879e19f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082830Z:6325b980-8174-4198-a0b7-fb193879e19f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697007652DD5\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "cf6fafa9-64f1-45cf-b2a5-9d45c3e61d39", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-e76229561f\",\"state\":\"Running\",\"hostNames\":[\"webapp1-e76229561f.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp1-e76229561f\",\"repositorySiteName\":\"webapp1-e76229561f\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-e76229561f.azurewebsites.net\",\"webapp1-e76229561f.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-e76229561f.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-e76229561f.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:12.8666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-e76229561f\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp1-e76229561f\\\\$webapp1-e76229561f\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp1-e76229561f.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3572", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "efe07d74-5468-4e83-a764-fe18f08dac51", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082832Z:efe07d74-5468-4e83-a764-fe18f08dac51", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697007652DD5\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f9f3a85d-c15f-45ee-97b3-24eac2474cfe", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-e76229561f\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16e7e48a-2446-4b28-b22f-9c43378bf690", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082833Z:16e7e48a-2446-4b28-b22f-9c43378bf690", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "173de1f4-8c1c-4ff5-b44d-9f24d873e4d5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:35 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7821e21c-1796-4b22-85e4-fb2bd9202c70", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082835Z:7821e21c-1796-4b22-85e4-fb2bd9202c70", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970140EA78B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f298ec66-3600-4bec-b4a5-4e43b59aac39", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "68045284-f62f-4148-9abf-c2c5cab8de07", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082841Z:68045284-f62f-4148-9abf-c2c5cab8de07", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970140EA78B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "dfd99a6f-8705-4303-a16a-19de1b1ced0f", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings/webapp1-e76229561f.azurewebsites.net\",\"name\":\"webapp1-e76229561f/webapp1-e76229561f.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-e76229561f\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "50a915bd-18ff-4c75-a83f-1ff21fbe7b9f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082841Z:50a915bd-18ff-4c75-a83f-1ff21fbe7b9f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f31f84fb-932d-4a4f-b0a7-634946addce7", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:41 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97ce0548-96b2-4fa9-a7dc-e078647afa4d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082842Z:97ce0548-96b2-4fa9-a7dc-e078647afa4d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "38fe3a97-a106-4733-a892-0db9b4a29b2b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:42 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "72c5ca12-be74-4948-82df-9fdda8001f4e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082842Z:72c5ca12-be74-4948-82df-9fdda8001f4e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "724bbb53-471e-4c81-936c-9d0322a33dba", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:43 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cf3ec757-87b8-4fc5-9cce-e5c71730b39d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082843Z:cf3ec757-87b8-4fc5-9cce-e5c71730b39d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "74009f5d-979a-4504-adaa-409eb9f16e12", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:43 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1393", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e40ac5f-67cd-4558-ad04-9a9e130f428d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082844Z:3e40ac5f-67cd-4558-ad04-9a9e130f428d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "59461cac-1c90-41b7-ad67-613a9ae42ecd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"name\":\"webapp1-e76229561fplan79b00252f\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":4733,\"name\":\"webapp1-e76229561fplan79b00252f\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"linux\",\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-143_4733\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5571", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5cd43f58-5470-4005-a85c-f8a8d9cd80f9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082905Z:5cd43f58-5470-4005-a85c-f8a8d9cd80f9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669701C1D2255\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "bba081f1-ff38-425a-9ee4-a23599ab5103", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-8890614127\",\"state\":\"Running\",\"hostNames\":[\"webapp2-8890614127.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp2-8890614127\",\"repositorySiteName\":\"webapp2-8890614127\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-8890614127.azurewebsites.net\",\"webapp2-8890614127.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-8890614127.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-8890614127.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:47.7933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-8890614127\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp2-8890614127\\\\$webapp2-8890614127\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp2-8890614127.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3572", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1131", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9696089c-b177-400d-aceb-45a360066679", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082908Z:9696089c-b177-400d-aceb-45a360066679", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669701C1D2255\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "cfe30da1-30bf-4356-84fc-8514d2d44a5a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-8890614127\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16ec6131-ec0b-4885-a144-ecea818132f8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082909Z:16ec6131-ec0b-4885-a144-ecea818132f8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f929df09-68bc-4cc4-bba4-6ad18542dd4d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1131", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db272d83-5bbd-4afc-a909-bdf80b9dc7f8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082910Z:db272d83-5bbd-4afc-a909-bdf80b9dc7f8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970293C1A2B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "46a1151b-f58b-4bdc-916f-c672ab39433e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:10 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a4412b43-2d6d-4f04-b124-2aa379e0697c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082911Z:a4412b43-2d6d-4f04-b124-2aa379e0697c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970293C1A2B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c3930d8c-bba2-4760-8430-813eb1519db7", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings/webapp2-8890614127.azurewebsites.net\",\"name\":\"webapp2-8890614127/webapp2-8890614127.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-8890614127\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b167cbaa-0078-4fed-a018-4d596d30c4c6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082912Z:b167cbaa-0078-4fed-a018-4d596d30c4c6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e933dde5-8e25-4fc0-b22a-223ceaa3eaa0", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c87d3498-ce9c-4236-96fa-b70a15b9bb96", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082912Z:c87d3498-ce9c-4236-96fa-b70a15b9bb96", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ef4de957-9c8d-4907-b3d9-86fbaba7aa0d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac3192f2-2356-45f3-8c55-106f92c4b1e6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082913Z:ac3192f2-2356-45f3-8c55-106f92c4b1e6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "75a27b10-a478-4306-9934-7cec4c1f144c", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a0807915-ed82-478b-a229-d6b03e0f0c8a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082913Z:a0807915-ed82-478b-a229-d6b03e0f0c8a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1a00b069-76dc-4455-8c3c-f6ec3903f0a6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2nemv_59c525245ea7?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:15 GMT", - "content-length" : "327", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e29c52c-536a-4daa-954e-93ebb189307e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082915Z:2e29c52c-536a-4daa-954e-93ebb189307e", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2e29c52c-536a-4daa-954e-93ebb189307e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7\",\"name\":\"rg2nemv_59c525245ea7\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-08-03T08:29:13.662425200Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5571", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "beb85b03-ea6a-4248-9aa4-2d6a0b7b05dd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082938Z:beb85b03-ea6a-4248-9aa4-2d6a0b7b05dd", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669702F60C655\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d9c0e5aa-a3c7-4223-83ee-e6806dd400f6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3\",\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-99e08898d3\",\"state\":\"Running\",\"hostNames\":[\"webapp3-99e08898d3.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp3-99e08898d3\",\"repositorySiteName\":\"webapp3-99e08898d3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-99e08898d3.azurewebsites.net\",\"webapp3-99e08898d3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-99e08898d3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-99e08898d3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:19.9566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-99e08898d3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp3-99e08898d3\\\\$webapp3-99e08898d3\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_59c525245ea7\",\"defaultHostName\":\"webapp3-99e08898d3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3572", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1128", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b4b7a905-f398-44c1-a5a0-c49d89c07ca5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082941Z:b4b7a905-f398-44c1-a5a0-c49d89c07ca5", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669702F60C655\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d3547d2f-0e0d-4def-9b71-1336f0b4b5e8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3\",\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-99e08898d3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:41 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1c913fc9-d890-473c-bc5e-08e7eaf3d8ad", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082941Z:1c913fc9-d890-473c-bc5e-08e7eaf3d8ad", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "75f254fd-0d5e-4a29-a391-f4c9432904db", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:42 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1124", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "305da47a-a247-491e-878b-955987b7c2ef", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082943Z:305da47a-a247-491e-878b-955987b7c2ef", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703CFEE640\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "115b37b3-14b7-4ed3-a63d-0ab3efe2eb80", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "340b8e83-23be-4ade-b6b8-2dafdbb2b97b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082944Z:340b8e83-23be-4ade-b6b8-2dafdbb2b97b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703CFEE640\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "86c1fd87-65db-4353-97ae-503207bbcc4b", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/hostNameBindings/webapp3-99e08898d3.azurewebsites.net\",\"name\":\"webapp3-99e08898d3/webapp3-99e08898d3.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp3-99e08898d3\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc19a797-4687-4427-a4f1-d19f47e6beef", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11992", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082945Z:dc19a797-4687-4427-a4f1-d19f47e6beef", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "75eb42b1-1eb6-4403-871c-51122e2d4275", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "43cbd137-2561-4f01-bc08-8b9caab3d409", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082945Z:43cbd137-2561-4f01-bc08-8b9caab3d409", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "013761d0-1305-4d38-8fa3-e15fcdea9bbc", - "Body" : "{\"id\":null,\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fd5cfc2e-dbae-4fc0-9bba-2670ae9fc981", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082946Z:fd5cfc2e-dbae-4fc0-9bba-2670ae9fc981", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f254e1ec-2307-4daf-a611-7a4dd5d4bc67", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:46 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7a85d2b-18e0-4629-b7cf-21110912fe9c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082946Z:e7a85d2b-18e0-4629-b7cf-21110912fe9c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c85f48b-31a4-4f07-ad92-f44e6004a7d7", - "Body" : "{\"id\":null,\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/stop?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ef47fa7d-fda7-4d5c-8fdf-3b019d571e4e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082947Z:ef47fa7d-fda7-4d5c-8fdf-3b019d571e4e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "e207f8b7-1559-4ee1-a4e1-7d86225c6a06", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:48 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5379", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c0437cd6-f4d8-4f81-bf84-84b4158ba90b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082948Z:c0437cd6-f4d8-4f81-bf84-84b4158ba90b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703F771F35\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "71302003-48bb-4f5a-b8ef-2c6a9adb8a77", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-e76229561f\",\"state\":\"Stopped\",\"hostNames\":[\"webapp1-e76229561f.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp1-e76229561f\",\"repositorySiteName\":\"webapp1-e76229561f\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-e76229561f.azurewebsites.net\",\"webapp1-e76229561f.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-e76229561f.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-e76229561f.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:47.6033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-e76229561f\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp1-e76229561f\\\\$webapp1-e76229561f\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp1-e76229561f.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3590", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9a0519ae-295f-4755-8f79-fce9a3c41ddb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082949Z:9a0519ae-295f-4755-8f79-fce9a3c41ddb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d00fc4e4-66b2-4836-9bc8-7c12d2a1408a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-e76229561f\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1c1696cf-27e6-437f-9fbf-265ad758b53a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082950Z:1c1696cf-27e6-437f-9fbf-265ad758b53a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703F771F35\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b4afaf8f-a37b-412a-a1ab-157d59fdf8ac", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings/webapp1-e76229561f.azurewebsites.net\",\"name\":\"webapp1-e76229561f/webapp1-e76229561f.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-e76229561f\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5f71cd8b-2a35-4f41-bb54-68fcd3b9cac2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082951Z:5f71cd8b-2a35-4f41-bb54-68fcd3b9cac2", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "859c67cf-f07f-425d-aab2-004b2247a2ef", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:51 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bd5cd65e-c7e1-4d20-8e47-d04bdd4b6bf4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082951Z:bd5cd65e-c7e1-4d20-8e47-d04bdd4b6bf4", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d8e22aa7-3ce2-4ef8-93f4-e936bacbc111", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f0c9f4a1-85ac-48b1-ba64-53947234ff8c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082952Z:f0c9f4a1-85ac-48b1-ba64-53947234ff8c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "51f451ee-64b8-4edc-8f64-bc0304a66b0f", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b35c1dd-db80-4e00-a7c2-008f3db2eeaa", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11991", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082953Z:1b35c1dd-db80-4e00-a7c2-008f3db2eeaa", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "bd487ea9-d317-4052-b97b-19e436f21e49", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/start?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:53 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e860b35-b8bd-476a-a3cd-ac9d4040c531", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082954Z:6e860b35-b8bd-476a-a3cd-ac9d4040c531", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "bbce0a12-ccdb-4662-806d-d376b4d8e2e0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:54 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5379", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "99e0d254-89f9-4ffc-866e-78185701343b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082954Z:99e0d254-89f9-4ffc-866e-78185701343b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669704337688B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b0475b74-9946-4c27-987a-2fa7957e06c4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-e76229561f\",\"state\":\"Running\",\"hostNames\":[\"webapp1-e76229561f.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp1-e76229561f\",\"repositorySiteName\":\"webapp1-e76229561f\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-e76229561f.azurewebsites.net\",\"webapp1-e76229561f.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-e76229561f.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-e76229561f.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:53.8966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-e76229561f\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp1-e76229561f\\\\$webapp1-e76229561f\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp1-e76229561f.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3590", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5e7c3bf1-d718-43ce-903b-5e8f02a80a45", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082955Z:5e7c3bf1-d718-43ce-903b-5e8f02a80a45", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "06b60cd6-b85c-495f-89d6-00f61f8781a3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-e76229561f\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "253389a6-9292-4510-a30d-66b2b451ce80", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082956Z:253389a6-9292-4510-a30d-66b2b451ce80", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669704337688B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8377aed8-a749-44fb-9a6d-a56eff13c6f2", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings/webapp1-e76229561f.azurewebsites.net\",\"name\":\"webapp1-e76229561f/webapp1-e76229561f.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-e76229561f\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d503e884-6bbb-47b3-aeec-ec975eed7b53", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082957Z:d503e884-6bbb-47b3-aeec-ec975eed7b53", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c6cb91dc-e655-43d8-9907-6da0426a2c87", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "61a9f839-5ce0-4fee-9344-1395302078a6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11992", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082957Z:61a9f839-5ce0-4fee-9344-1395302078a6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ae2d6c95-aa31-4856-b423-48bc64828794", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:58 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16b5f0a3-6e88-4ed8-8131-d4dea0a45057", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11989", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082958Z:16b5f0a3-6e88-4ed8-8131-d4dea0a45057", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7749f7ba-7a49-4f6d-91cd-2a21301bc886", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1170b477-f21a-4daf-adb3-30500ff62842", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082959Z:1170b477-f21a-4daf-adb3-30500ff62842", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a174c977-3226-4033-9a26-64415463ef84", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/restart?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5046bb57-96b2-4870-b8c7-1c78133ceebf", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082959Z:5046bb57-96b2-4870-b8c7-1c78133ceebf", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "b1745992-38fd-4b38-8ce4-473931b3f486", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:00 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5379", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c62cfd6-3664-4087-aacf-a17361b0b3d7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083000Z:0c62cfd6-3664-4087-aacf-a17361b0b3d7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970293C1A2B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0beaffc5-0f22-48b0-be40-d2b6a1b08034", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-8890614127\",\"state\":\"Running\",\"hostNames\":[\"webapp2-8890614127.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp2-8890614127\",\"repositorySiteName\":\"webapp2-8890614127\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-8890614127.azurewebsites.net\",\"webapp2-8890614127.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-8890614127.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-8890614127.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:10.3066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-8890614127\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp2-8890614127\\\\$webapp2-8890614127\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp2-8890614127.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3590", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8edcfe7f-1a91-4c42-925a-ea2d4c8347b0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083001Z:8edcfe7f-1a91-4c42-925a-ea2d4c8347b0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "dc55f5dc-713c-433e-92b1-3047973daeee", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-8890614127\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:02 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6323d89c-dc8c-404c-8440-91ce5d29dd0d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083002Z:6323d89c-dc8c-404c-8440-91ce5d29dd0d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970293C1A2B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "79dbc015-7674-40bd-b468-986bfc92456f", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings/webapp2-8890614127.azurewebsites.net\",\"name\":\"webapp2-8890614127/webapp2-8890614127.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-8890614127\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4001f0e5-1098-474c-b9df-37f6fb881f68", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083003Z:4001f0e5-1098-474c-b9df-37f6fb881f68", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1620539e-2f34-4070-a6ff-77366dc76d6c", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "14e86b71-9bdd-45b7-8e57-3217a7a0778a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11993", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083003Z:14e86b71-9bdd-45b7-8e57-3217a7a0778a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e0b16ae8-8a83-4697-b582-68d3d3e085dc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "94be79b6-389c-4077-9266-7d08ef587abb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11988", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083004Z:94be79b6-389c-4077-9266-7d08ef587abb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "95ea4423-5d3d-4903-b0b9-dbeaf1918b8a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e905a21-bd86-4632-91b3-d8766dee0586", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083004Z:7e905a21-bd86-4632-91b3-d8766dee0586", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "345006d6-1db3-4db8-9994-22d9c9f37b78", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5574", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "adf3bd76-beb8-4417-9f85-7c6828e9efcb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "496", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083007Z:adf3bd76-beb8-4417-9f85-7c6828e9efcb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703CFEE640\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7b2530e6-89b4-486f-8435-00369daa49d3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3\",\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-99e08898d3\",\"state\":\"Running\",\"hostNames\":[\"webapp3-99e08898d3.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp3-99e08898d3\",\"repositorySiteName\":\"webapp3-99e08898d3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-99e08898d3.azurewebsites.net\",\"webapp3-99e08898d3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-99e08898d3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-99e08898d3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:30:06.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-99e08898d3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp3-99e08898d3\\\\$webapp3-99e08898d3\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_59c525245ea7\",\"defaultHostName\":\"webapp3-99e08898d3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3576", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1123", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "654247c9-cda9-45c8-843b-6591f2d77d23", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083010Z:654247c9-cda9-45c8-843b-6591f2d77d23", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669704A7762C0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d1f7ea10-3cfd-4b27-806e-6bd2700f6a94", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3\",\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2019\",\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-99e08898d3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "10801", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e1a53fc3-c14d-4d94-8269-1129dcaad34c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083011Z:e1a53fc3-c14d-4d94-8269-1129dcaad34c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f9be082e-142d-4a52-8008-903b9c2ffaf4", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-e76229561f\",\"state\":\"Running\",\"hostNames\":[\"webapp1-e76229561f.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp1-e76229561f\",\"repositorySiteName\":\"webapp1-e76229561f\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-e76229561f.azurewebsites.net\",\"webapp1-e76229561f.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-e76229561f.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-e76229561f.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:53.8966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-e76229561f\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp1-e76229561f\\\\$webapp1-e76229561f\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp1-e76229561f.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-8890614127\",\"state\":\"Running\",\"hostNames\":[\"webapp2-8890614127.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp2-8890614127\",\"repositorySiteName\":\"webapp2-8890614127\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-8890614127.azurewebsites.net\",\"webapp2-8890614127.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-8890614127.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-8890614127.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:10.3066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-8890614127\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp2-8890614127\\\\$webapp2-8890614127\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp2-8890614127.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3590", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b4c1236a-d3a1-475b-ac44-e0f98be81af6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083012Z:b4c1236a-d3a1-475b-ac44-e0f98be81af6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "acb4549d-bdb7-4ed5-b696-96a30e13b4dc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-8890614127\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3590", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "59e8fb0f-3a8b-4a34-95f2-46ff025a2e00", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083012Z:59e8fb0f-3a8b-4a34-95f2-46ff025a2e00", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6714def3-82f8-44ca-9574-20d9ea538c1b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/web\",\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-e76229561f\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34ac9a27-0a3c-4195-9335-a07d99265cea", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083012Z:34ac9a27-0a3c-4195-9335-a07d99265cea", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4345e0b7-77c2-45c8-aa37-9642fc70c66e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "32521274-03f4-4fca-96a1-3d0d302d1be2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083012Z:32521274-03f4-4fca-96a1-3d0d302d1be2", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "df3fe794-2599-4647-a893-d60f5ac6782b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d8ccb9a7-48c8-4fe6-b78c-4670c0e4b986", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083013Z:d8ccb9a7-48c8-4fe6-b78c-4670c0e4b986", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669704337688B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4124e61d-58c5-4313-91c3-e00da164a0ff", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/hostNameBindings/webapp1-e76229561f.azurewebsites.net\",\"name\":\"webapp1-e76229561f/webapp1-e76229561f.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-e76229561f\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "382bdd71-77b9-4fb3-bcb1-1ee8bde162a1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083014Z:382bdd71-77b9-4fb3-bcb1-1ee8bde162a1", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "edacada1-0e43-4d6b-ab8e-3432b88c7a21", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:14 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ec6aa4c9-30ef-405a-befa-263a3076bafc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11989", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083014Z:ec6aa4c9-30ef-405a-befa-263a3076bafc", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f32db4e4-6ef1-43c4-a8f2-2a3d6057a856", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:14 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "94814cf3-e15f-4cc3-aa2e-e2736cd83526", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083015Z:94814cf3-e15f-4cc3-aa2e-e2736cd83526", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c0264ce-d0d2-4187-99ff-67dae8d434d0", - "Body" : "{\"id\":null,\"name\":\"webapp1-e76229561f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2a982594-7902-432d-b9ca-6cf8af570c99", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11992", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083015Z:2a982594-7902-432d-b9ca-6cf8af570c99", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8178471f-aa08-4512-b122-212a0ad75c93", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e99850b-fe9a-4a1a-b2ed-a4f84dc64b67", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083016Z:7e99850b-fe9a-4a1a-b2ed-a4f84dc64b67", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970293C1A2B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9cc17494-d7fe-4129-9893-e4123d382a1a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings/webapp2-8890614127.azurewebsites.net\",\"name\":\"webapp2-8890614127/webapp2-8890614127.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-8890614127\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:16 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9190f3e6-1af2-403f-9a15-923b61ba73f5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083017Z:9190f3e6-1af2-403f-9a15-923b61ba73f5", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "76d9b6f2-43e2-41c6-b114-553e83c8c9f9", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:17 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "db32e0af-ace7-44a1-8fd8-d2613349d104", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11987", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083017Z:db32e0af-ace7-44a1-8fd8-d2613349d104", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "dcd6b735-dff0-4d47-be23-25ce67008766", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:17 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc64282f-b111-46d7-be81-8ba181fbd839", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083017Z:bc64282f-b111-46d7-be81-8ba181fbd839", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c691a54-bd32-4fb2-908e-aa58eaa42acc", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:17 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1d5b7c5c-30c4-408a-8245-c51109fda711", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11991", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083018Z:1d5b7c5c-30c4-408a-8245-c51109fda711", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "be66b2d6-64f9-48bc-9cc7-7e384d4adc71", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:18 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5419", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e5aef1bc-9bfa-4851-9cd4-9790107f16db", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083019Z:e5aef1bc-9bfa-4851-9cd4-9790107f16db", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ea7d863b-6b91-467c-b3a5-0b577526fb03", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3\",\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-99e08898d3\",\"state\":\"Running\",\"hostNames\":[\"webapp3-99e08898d3.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp3-99e08898d3\",\"repositorySiteName\":\"webapp3-99e08898d3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-99e08898d3.azurewebsites.net\",\"webapp3-99e08898d3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-99e08898d3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-99e08898d3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:30:09.6966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-99e08898d3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp3-99e08898d3\\\\$webapp3-99e08898d3\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_59c525245ea7\",\"defaultHostName\":\"webapp3-99e08898d3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:19 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3594", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31b62e62-42f0-41c6-b660-178baa14fab7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083020Z:31b62e62-42f0-41c6-b660-178baa14fab7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "57334692-11aa-4ab4-820a-e27894fe59bf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/web\",\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2019\",\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-99e08898d3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:19 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9cc8a6cb-c1bf-4e70-b3b5-26fe399df4ff", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083020Z:9cc8a6cb-c1bf-4e70-b3b5-26fe399df4ff", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5051b49c-6468-4471-9b0d-71ec1d24115d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:20 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bbc5520f-1c1c-40d8-af3d-fa9c4df8b3d6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083020Z:bbc5520f-1c1c-40d8-af3d-fa9c4df8b3d6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669704CA24C0B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b4fc9f2f-0bfc-48b6-94cb-6d2e6d7252cd", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/hostNameBindings/webapp3-99e08898d3.azurewebsites.net\",\"name\":\"webapp3-99e08898d3/webapp3-99e08898d3.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp3-99e08898d3\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:21 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b6541ded-0f47-4ddb-a6b8-56377cee1962", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083021Z:b6541ded-0f47-4ddb-a6b8-56377cee1962", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0ce883ab-baec-4d58-9167-3f3e6f3aae26", - "Body" : "{\"id\":null,\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:21 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "86e9a5aa-7074-475b-b59f-332b7fd0db7b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11985", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083021Z:86e9a5aa-7074-475b-b59f-332b7fd0db7b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d92ce747-ef75-4663-93aa-0602f4d469d7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "285a5c4e-ead5-4763-a7bd-80dab8e7e971", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11986", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083022Z:285a5c4e-ead5-4763-a7bd-80dab8e7e971", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ef421b0-e38d-4e81-b6b3-8214c2f46b1a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_59c525245ea7/providers/Microsoft.Web/sites/webapp3-99e08898d3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "696365b6-f198-48b8-992a-ee44cb84866e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083022Z:696365b6-f198-48b8-992a-ee44cb84866e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4b5dffd-8fee-4d97-8135-e3e5d490f79c", - "Body" : "{\"id\":null,\"name\":\"webapp3-99e08898d3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp1-e76229561f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:26 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14992", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3176283a-c623-4af6-bbb4-b79dcb3e48d6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083027Z:3176283a-c623-4af6-bbb4-b79dcb3e48d6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669704337688B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "abc9bb3f-bce5-40ea-b59d-f33dd3df3faf", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5419", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4ea4ed2d-1d27-4cc5-b83a-9eed9ab9ea15", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083028Z:4ea4ed2d-1d27-4cc5-b83a-9eed9ab9ea15", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4bdb053c-b527-4aab-9bde-91d1c37d342e", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-8890614127\",\"state\":\"Running\",\"hostNames\":[\"webapp2-8890614127.azurewebsites.net\"],\"webSpace\":\"rg1nemv_28f7085314d1-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_28f7085314d1-WestUSwebspace/sites/webapp2-8890614127\",\"repositorySiteName\":\"webapp2-8890614127\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-8890614127.azurewebsites.net\",\"webapp2-8890614127.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"NODE|6.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-8890614127.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-8890614127.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/serverfarms/webapp1-e76229561fplan79b00252f\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:10.3066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-8890614127\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app,linux\",\"inboundIpAddress\":\"40.112.243.46\",\"possibleInboundIpAddresses\":\"40.112.243.46\",\"ftpUsername\":\"webapp2-8890614127\\\\$webapp2-8890614127\",\"ftpsHostName\":\"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83\",\"possibleOutboundIpAddresses\":\"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-143\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_28f7085314d1\",\"defaultHostName\":\"webapp2-8890614127.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:28 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8c11ea2a-b9d4-4c7e-be93-4831831a3599", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083028Z:8c11ea2a-b9d4-4c7e-be93-4831831a3599", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5a66c63d-79b0-4028-b5bf-8cb8616fe403", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:28 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3590", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cc620be6-483e-44fc-9afc-f9a7e38a890c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083029Z:cc620be6-483e-44fc-9afc-f9a7e38a890c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4bbb4dd9-ee3a-4e32-b8e4-7c83d37ae214", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/web\",\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"6.9\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"NODE|6.9\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-8890614127\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "44358599-40e8-4b85-8bee-e3c6724e74ee", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083030Z:44358599-40e8-4b85-8bee-e3c6724e74ee", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970293C1A2B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "20f51ca6-9c84-4daf-ba93-febe0d2dfa5b", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/hostNameBindings/webapp2-8890614127.azurewebsites.net\",\"name\":\"webapp2-8890614127/webapp2-8890614127.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-8890614127\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e704cff-7da7-498e-8a6e-1177d74e27ed", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083030Z:6e704cff-7da7-498e-8a6e-1177d74e27ed", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "dcf5b059-e8ee-4b83-a3c3-13bc858571b0", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "195650e5-695b-43a0-9662-875e225d84e5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11984", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083030Z:195650e5-695b-43a0-9662-875e225d84e5", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "716ff7fd-21a9-41da-a3e3-85b2b2615983", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6192e246-70bc-4325-810b-7a8d61f32d7d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083031Z:6192e246-70bc-4325-810b-7a8d61f32d7d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f7517547-7680-4ec9-ba0f-3031fc13d2bc", - "Body" : "{\"id\":null,\"name\":\"webapp2-8890614127\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "08642792-fd83-42ce-a01a-3fd9c13b85e0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11983", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083031Z:08642792-fd83-42ce-a01a-3fd9c13b85e0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "cc780749-9fea-44a7-b490-93c86145b8bf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_28f7085314d1/providers/Microsoft.Web/sites/webapp2-8890614127/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_28f7085314d1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:33 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14989", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bdccd13d-e646-4f55-a6a5-3a1790013a57", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083034Z:bdccd13d-e646-4f55-a6a5-3a1790013a57", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzFORU1WOjVGMjhGNzA4NTMxNEQxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "bdccd13d-e646-4f55-a6a5-3a1790013a57", - "Body" : "" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2nemv_59c525245ea7?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:35 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "90159d98-dbd0-40aa-9e76-29c49d9be123", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083035Z:90159d98-dbd0-40aa-9e76-29c49d9be123", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzJORU1WOjVGNTlDNTI1MjQ1RUE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "90159d98-dbd0-40aa-9e76-29c49d9be123", - "Body" : "" - } - } ], - "variables" : [ "webapp1-e76229561f", "webapp2-8890614127", "webapp3-99e08898d3", "rg1nemv_28f7085314d1", "rg2nemv_59c525245ea7", "webapp1-e76229561fplan79b00252f" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppSqlConnection.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppSqlConnection.json deleted file mode 100644 index bc67f12b47e9..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageLinuxWebAppSqlConnection.json +++ /dev/null @@ -1,1152 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_6ac423502e9b?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:57:55 GMT", - "content-length" : "193", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "15a259e0-8981-4273-ae64-1dabfabaf370", - "x-ms-routing-request-id" : "WESTUS2:20180219T215756Z:15a259e0-8981-4273-ae64-1dabfabaf370", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "15a259e0-8981-4273-ae64-1dabfabaf370", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b\",\"name\":\"rg1nemv_6ac423502e9b\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:57:56 GMT", - "content-length" : "72", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e7a1d61-1522-4209-8d09-4f0362c2e71d", - "x-ms-routing-request-id" : "WESTUS2:20180219T215757Z:3e7a1d61-1522-4209-8d09-4f0362c2e71d", - "content-type" : "application/json; charset=utf-8", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverOperationResults/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "cache-control" : "no-cache", - "x-ms-request-id" : "3c60ecd4-91bc-4d3b-8613-45741048a073", - "Body" : "{\"operation\":\"UpsertLogicalServer\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:57:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "106", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14999", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d800677-da8e-4cf2-8b75-68bedd94c2f5", - "x-ms-routing-request-id" : "WESTUS2:20180219T215758Z:8d800677-da8e-4cf2-8b75-68bedd94c2f5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "84715a43-c650-49ae-8d74-f93b8ef1b406", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:57:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "106", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14998", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4a91895b-0d4b-42e2-9547-880c5c4c6fba", - "x-ms-routing-request-id" : "WESTUS2:20180219T215759Z:4a91895b-0d4b-42e2-9547-880c5c4c6fba", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "103b562d-1328-4975-aed2-6943a07785e7", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "106", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27297043-5a03-4ce8-a194-befc6cecff08", - "x-ms-routing-request-id" : "WESTUS2:20180219T215800Z:27297043-5a03-4ce8-a194-befc6cecff08", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1254bee0-9c17-4bb9-b841-2cae1bfd1ce7", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "106", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5445ecfa-f5ef-41bf-911a-4609023c9e80", - "x-ms-routing-request-id" : "WESTUS2:20180219T215801Z:5445ecfa-f5ef-41bf-911a-4609023c9e80", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0733b730-94bf-400f-a417-bf6dea2ce658", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "106", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "65082819-bf98-4882-9ce7-fd92d1e4cd33", - "x-ms-routing-request-id" : "WESTUS2:20180219T215802Z:65082819-bf98-4882-9ce7-fd92d1e4cd33", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "99c4dc56-17cd-48a3-be20-389acf6a44e4", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "106", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "25610ce8-e5fc-455c-b223-c5db87e0a6df", - "x-ms-routing-request-id" : "WESTUS2:20180219T215822Z:25610ce8-e5fc-455c-b223-c5db87e0a6df", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3183bf5d-0550-4e49-bf77-3df1b44779a3", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/3c60ecd4-91bc-4d3b-8613-45741048a073?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "105", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a60a239d-6d32-4923-bc21-27fa39c92bf2", - "x-ms-routing-request-id" : "WESTUS2:20180219T215843Z:a60a239d-6d32-4923-bc21-27fa39c92bf2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "02e77d46-3c00-41e5-907b-3456de6d253a", - "Body" : "{\"name\":\"3c60ecd4-91bc-4d3b-8613-45741048a073\",\"status\":\"Succeeded\",\"startTime\":\"2018-02-19T21:57:57.7Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "404", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cccf4ce4-08b6-424e-98ab-6a535515a80d", - "x-ms-routing-request-id" : "WESTUS2:20180219T215843Z:cccf4ce4-08b6-424e-98ab-6a535515a80d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c907c149-e77a-4a81-8abc-1d366cfc56f4", - "Body" : "{\"kind\":\"v12.0\",\"properties\":{\"administratorLogin\":\"jsdkadmin\",\"version\":\"12.0\",\"state\":\"Ready\",\"fullyQualifiedDomainName\":\"jsdkserver2e4704942.database.windows.net\"},\"location\":\"westus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942\",\"name\":\"jsdkserver2e4704942\",\"type\":\"Microsoft.Sql/servers\"}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/AllowAllWindowsAzureIps?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:43 GMT", - "content-length" : "367", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2991052f-15dd-4b5a-a982-7063623b8612", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T215844Z:2991052f-15dd-4b5a-a982-7063623b8612", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "021a989e-c0ac-44e5-b699-adaa8dd6c328", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/AllowAllWindowsAzureIps\",\"name\":\"AllowAllWindowsAzureIps\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"0.0.0.0\",\"endIpAddress\":\"0.0.0.0\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:44 GMT", - "content-length" : "80", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "202", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c634f29-e436-4478-ba31-288a74828be1", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T215845Z:6c634f29-e436-4478-ba31-288a74828be1", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/operationResults/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "8216242e-25de-4e4a-9c6a-4a1ca61350e2", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1519077524984+0000)\\/\"}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:58:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "89", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1111322d-b579-4bb5-8613-c66c9c3db658", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T215845Z:1111322d-b579-4bb5-8613-c66c9c3db658", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "d63e36b5-5f24-499d-925a-8d7959580ff2", - "Body" : "{\"operationId\":\"8216242e-25de-4e4a-9c6a-4a1ca61350e2\",\"status\":\"InProgress\",\"error\":null}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:59:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "89", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c7d68f0-051a-45aa-9e91-b977734d71c5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T215916Z:5c7d68f0-051a-45aa-9e91-b977734d71c5", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "1e6024b3-9e85-4ddb-ad32-6abc722b8014", - "Body" : "{\"operationId\":\"8216242e-25de-4e4a-9c6a-4a1ca61350e2\",\"status\":\"InProgress\",\"error\":null}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:59:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "88", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc12c6e2-16c3-418e-a12b-76756568e24c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T215946Z:dc12c6e2-16c3-418e-a12b-76756568e24c", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "cf49b330-c1cd-41e8-90e8-0778e29adf2e", - "Body" : "{\"operationId\":\"8216242e-25de-4e4a-9c6a-4a1ca61350e2\",\"status\":\"Succeeded\",\"error\":null}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0/azureAsyncOperation/8216242e-25de-4e4a-9c6a-4a1ca61350e2?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:59:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "950", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a418c5df-2615-4210-b4ae-e979a1b468f5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T215946Z:a418c5df-2615-4210-b4ae-e979a1b468f5", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "6dbd3e3f-d777-457b-a84b-bc607c78c2d2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/databases/jsdkdb390146890f0\",\"name\":\"jsdkdb390146890f0\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"West US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"1ff08b34-e90b-4d2a-af5d-7e24483da0ef\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2018-02-19T21:58:45.25Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"East US\",\"earliestRestoreDate\":\"2018-02-19T22:29:30.063Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null,\"zoneRedundant\":false,\"isUpgradeRequested\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/serverfarms/webapp1-925910805fplan9bb753050?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:00:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1250", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e98bc2e5-14c2-4ad7-9c04-060f00e6c653", - "x-ms-routing-request-id" : "WESTUS2:20180219T220003Z:e98bc2e5-14c2-4ad7-9c04-060f00e6c653", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b4f67167-73cc-4f94-9fcd-1cf097b9f2e4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/serverfarms/webapp1-925910805fplan9bb753050\",\"name\":\"webapp1-925910805fplan9bb753050\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"linux\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":0,\"name\":\"webapp1-925910805fplan9bb753050\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6ac423502e9b-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"tags\":{},\"kind\":\"linux\",\"resourceGroup\":\"rg1nemv_6ac423502e9b\",\"reserved\":true,\"mdmId\":\"waws-prod-bay-063_13762\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\"},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:00:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2822", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16deac42-dcc9-4141-9782-a2ffe94ef1a8", - "x-ms-routing-request-id" : "WESTUS2:20180219T220009Z:16deac42-dcc9-4141-9782-a2ffe94ef1a8", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CCFFE3040B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "2916375a-f9ba-4d3e-92db-cd3a240d3669", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app,linux\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-925910805f\",\"state\":\"Running\",\"hostNames\":[\"webapp1-925910805f.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6ac423502e9b-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6ac423502e9b-WestUSwebspace/sites/webapp1-925910805f\",\"repositorySiteName\":\"webapp1-925910805f\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-925910805f.azurewebsites.net\",\"webapp1-925910805f.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-925910805f.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-925910805f.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/serverfarms/webapp1-925910805fplan9bb753050\",\"reserved\":true,\"lastModifiedTimeUtc\":\"2018-02-19T22:00:05.1\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-925910805f\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app,linux\",\"outboundIpAddresses\":\"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234\",\"possibleOutboundIpAddresses\":\"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-063\",\"cloningInfo\":null,\"snapshotInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6ac423502e9b\",\"defaultHostName\":\"webapp1-925910805f.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "POST", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/appsettings/list?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:00:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "268", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d198a781-b8f2-4fff-a599-94093c062d9e", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "WESTUS2:20180219T220009Z:d198a781-b8f2-4fff-a599-94093c062d9e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3181cb2f-deef-4c4a-9b97-d63763b3ec56", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/appsettings?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:00:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "443", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db72cc70-91c8-46a9-a964-68da3ec47254", - "x-ms-routing-request-id" : "WESTUS2:20180219T220010Z:db72cc70-91c8-46a9-a964-68da3ec47254", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD02435535\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "19ab4e1c-c416-4b00-8698-33d96d279cd7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"ProjectNami.DBName\":\"jsdkdb390146890f0\",\"ProjectNami.DBHost\":\"jsdkserver2e4704942.database.windows.net\",\"ProjectNami.DBPass\":\"StrongPass!123\",\"ProjectNami.DBUser\":\"jsdkadmin\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:01:00 GMT", - "content-length" : "469", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9d0fdee-402d-4a45-aa90-bbbc9feb4f22", - "x-ms-routing-request-id" : "WESTUS2:20180219T220100Z:d9d0fdee-402d-4a45-aa90-bbbc9feb4f22", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "9ca250d2-0e67-4b55-a1dd-2d2da146e082", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:01:01 GMT", - "content-length" : "538", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f347d03-fbaa-4af5-992b-0b513ff29c5c", - "x-ms-routing-request-id" : "WESTUS2:20180219T220102Z:5f347d03-fbaa-4af5-992b-0b513ff29c5c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "df5ed4d6-9b4d-4060-9504-0707e90d9a55", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T22:00:59.9600000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:01:32 GMT", - "content-length" : "538", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb5c7963-6578-4c3e-8bfe-4000fc7efaec", - "x-ms-routing-request-id" : "WESTUS2:20180219T220132Z:bb5c7963-6578-4c3e-8bfe-4000fc7efaec", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "79401c77-77cb-4430-8bb5-c7ef8f75738a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T22:00:59.9600000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:02:03 GMT", - "content-length" : "639", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87c0d54a-8702-4855-a881-8b6d64814c52", - "x-ms-routing-request-id" : "WESTUS2:20180219T220203Z:87c0d54a-8702-4855-a881-8b6d64814c52", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "027115f3-2797-40b3-a328-16af510ca57f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T22:02:01.3300971 http://webapp1-925910805f.scm.azurewebsites.net:8181/api/deployments/latest?deployer=GitHub&time=2018-02-19_22-01-49Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:02:34 GMT", - "content-length" : "639", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "191692c1-fe09-4689-beb6-efa5acd62e13", - "x-ms-routing-request-id" : "WESTUS2:20180219T220234Z:191692c1-fe09-4689-beb6-efa5acd62e13", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd03d037-50e6-4da7-af27-a3f0322e9b29", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T22:02:33.8634933 http://webapp1-925910805f.scm.azurewebsites.net:8181/api/deployments/latest?deployer=GitHub&time=2018-02-19_22-01-49Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:03:04 GMT", - "content-length" : "639", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1fbf24b4-02b2-420e-84a0-d7f77919ae2c", - "x-ms-routing-request-id" : "WESTUS2:20180219T220305Z:1fbf24b4-02b2-420e-84a0-d7f77919ae2c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "2dcceefe-cc65-4b1b-babe-3c2a5a2a32c1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T22:02:56.1159561 http://webapp1-925910805f.scm.azurewebsites.net:8181/api/deployments/latest?deployer=GitHub&time=2018-02-19_22-01-49Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:03:35 GMT", - "content-length" : "639", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03698994-8b51-4b90-859a-aad5b2905d73", - "x-ms-routing-request-id" : "WESTUS2:20180219T220335Z:03698994-8b51-4b90-859a-aad5b2905d73", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d3548bd7-5115-4fa7-86a5-570eed0cdbe5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T22:03:28.9480380 http://webapp1-925910805f.scm.azurewebsites.net:8181/api/deployments/latest?deployer=GitHub&time=2018-02-19_22-01-49Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "468", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f26aea9f-c91d-44c0-bc0a-26bf29607b02", - "x-ms-routing-request-id" : "WESTUS2:20180219T220406Z:f26aea9f-c91d-44c0-bc0a-26bf29607b02", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CD2077784B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "2199cb8e-463b-4e0b-808d-c1f22646fc70", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/sourcecontrols/web\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:36 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2370", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4e2e1b5-535e-403b-a7d9-2a0e8c6b61db", - "x-ms-routing-request-id" : "WESTUS2:20180219T220436Z:e4e2e1b5-535e-403b-a7d9-2a0e8c6b61db", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CDA113DE20\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "e98aa6c5-f7d4-4c4a-8513-48bf0b4c96f5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f\",\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"PHP|5.6\",\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-925910805f\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"ExternalGit\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"ipSecurityRestrictions\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/hostNameBindings?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0b6cc1b-0a3f-4ff9-8282-f8e624067e7e", - "x-ms-routing-request-id" : "WESTUS2:20180219T220437Z:b0b6cc1b-0a3f-4ff9-8282-f8e624067e7e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CDA113DE20\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4285fce-68c1-48a9-a9be-dc0687eef4e8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/hostNameBindings/webapp1-925910805f.azurewebsites.net\",\"name\":\"webapp1-925910805f/webapp1-925910805f.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-925910805f\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/appsettings/list?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "443", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a04f7457-0ce9-460f-9af3-fd2effcfb9ce", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "WESTUS2:20180219T220437Z:a04f7457-0ce9-460f-9af3-fd2effcfb9ce", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "973eb697-8e4b-48cd-8004-f3c6b3889887", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"ProjectNami.DBName\":\"jsdkdb390146890f0\",\"ProjectNami.DBHost\":\"jsdkserver2e4704942.database.windows.net\",\"ProjectNami.DBPass\":\"StrongPass!123\",\"ProjectNami.DBUser\":\"jsdkadmin\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/slotConfigNames?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27418b84-c5c9-45d3-8260-c48cc7678f11", - "x-ms-routing-request-id" : "WESTUS2:20180219T220438Z:27418b84-c5c9-45d3-8260-c48cc7678f11", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "226f4075-fa61-4463-a5e5-4d0e6d63f3de", - "Body" : "{\"id\":null,\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/connectionstrings/list?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2b15f7bf-1f0a-4ed7-afa1-cc99c699c32c", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "WESTUS2:20180219T220438Z:2b15f7bf-1f0a-4ed7-afa1-cc99c699c32c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4fd2a785-8026-4620-868b-a26683a741f7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Web/sites/webapp1-925910805f/config/slotConfigNames?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7099927b-cecb-4c0c-8868-19d100d40b9d", - "x-ms-routing-request-id" : "WESTUS2:20180219T220438Z:7099927b-cecb-4c0c-8868-19d100d40b9d", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "46b654ba-80bc-44a3-8567-f80655e146ad", - "Body" : "{\"id\":null,\"name\":\"webapp1-925910805f\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:39 GMT", - "content-length" : "74", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "213c0788-b128-49d7-bd0c-7a0722a3b276", - "x-ms-routing-request-id" : "WESTUS2:20180219T220439Z:213c0788-b128-49d7-bd0c-7a0722a3b276", - "content-type" : "application/json; charset=utf-8", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverOperationResults/be9ceff7-1bdf-4150-8263-dff9ed04b314?api-version=2015-05-01-preview", - "cache-control" : "no-cache", - "x-ms-request-id" : "be9ceff7-1bdf-4150-8263-dff9ed04b314", - "Body" : "{\"operation\":\"UpsertLogicalServer\",\"startTime\":\"2018-02-19T22:04:39.193Z\"}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/be9ceff7-1bdf-4150-8263-dff9ed04b314?api-version=2015-05-01-preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/be9ceff7-1bdf-4150-8263-dff9ed04b314?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60fc6e6f-7655-44c5-a13b-19c03f2f520d", - "x-ms-routing-request-id" : "WESTUS2:20180219T220439Z:60fc6e6f-7655-44c5-a13b-19c03f2f520d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cbfc660a-4ba6-4faf-be25-a7b8325e6f30", - "Body" : "{\"name\":\"be9ceff7-1bdf-4150-8263-dff9ed04b314\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T22:04:39.193Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/be9ceff7-1bdf-4150-8263-dff9ed04b314?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "107", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2227fd25-a274-40f3-9e73-00cb1a517c47", - "x-ms-routing-request-id" : "WESTUS2:20180219T220441Z:2227fd25-a274-40f3-9e73-00cb1a517c47", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d2804f78-d682-4017-85b5-24f21526e437", - "Body" : "{\"name\":\"be9ceff7-1bdf-4150-8263-dff9ed04b314\",\"status\":\"Succeeded\",\"startTime\":\"2018-02-19T22:04:39.193Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "404", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a807ccad-d481-40f1-80b2-8d9cf4299410", - "x-ms-routing-request-id" : "WESTUS2:20180219T220441Z:a807ccad-d481-40f1-80b2-8d9cf4299410", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cecb743e-febc-4f76-a0b3-01a4f95e87a5", - "Body" : "{\"kind\":\"v12.0\",\"properties\":{\"administratorLogin\":\"jsdkadmin\",\"version\":\"12.0\",\"state\":\"Ready\",\"fullyQualifiedDomainName\":\"jsdkserver2e4704942.database.windows.net\"},\"location\":\"westus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942\",\"name\":\"jsdkserver2e4704942\",\"type\":\"Microsoft.Sql/servers\"}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_59682?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:42 GMT", - "content-length" : "361", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21845136-9fe7-4365-a0d5-ec0fac467077", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T220442Z:21845136-9fe7-4365-a0d5-ec0fac467077", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "5a0f1650-1a44-4b93-8a35-cd8252f34c02", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_59682\",\"name\":\"firewall_59682\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.91.108.234\",\"endIpAddress\":\"13.91.108.234\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_62940?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:43 GMT", - "content-length" : "359", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "12496048-6021-4495-8712-2917db83e4bf", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T220443Z:12496048-6021-4495-8712-2917db83e4bf", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "69ee2cd5-a6bf-49be-8e3d-f8e9e5a995ed", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_62940\",\"name\":\"firewall_62940\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.93.205.56\",\"endIpAddress\":\"13.93.205.56\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_64091?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:44 GMT", - "content-length" : "361", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aaeec682-c366-44c2-bec0-5d15a335d392", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T220444Z:aaeec682-c366-44c2-bec0-5d15a335d392", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "ebd2e65e-dc34-48d7-9ba7-e894af9e5161", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_64091\",\"name\":\"firewall_64091\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"104.209.45.67\",\"endIpAddress\":\"104.209.45.67\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_93838?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:44 GMT", - "content-length" : "361", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "997fdbf8-39b6-4467-9e4c-eb1f6456a807", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T220445Z:997fdbf8-39b6-4467-9e4c-eb1f6456a807", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "11b9018b-78fa-4e20-bd4e-70e1762e798a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_93838\",\"name\":\"firewall_93838\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.93.220.109\",\"endIpAddress\":\"13.93.220.109\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_56669?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:04:45 GMT", - "content-length" : "363", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5745dcec-f1d6-474d-b2ed-ead855183c18", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T220445Z:5745dcec-f1d6-474d-b2ed-ead855183c18", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "0a9d569f-f58a-4b44-b911-5310fbeca82d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6ac423502e9b/providers/Microsoft.Sql/servers/jsdkserver2e4704942/firewallRules/firewall_56669\",\"name\":\"firewall_56669\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.160.105.227\",\"endIpAddress\":\"52.160.105.227\"}}" - } - }, { - "Method" : "DELETE", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_6ac423502e9b?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 22:54:31 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d46ae73b-3cdc-4a4d-926b-4487dd851889", - "x-ms-routing-request-id" : "WESTUS2:20180219T225431Z:d46ae73b-3cdc-4a4d-926b-4487dd851889", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzFORU1WOjVGNkFDNDIzNTAyRTlCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", - "cache-control" : "no-cache", - "x-ms-request-id" : "d46ae73b-3cdc-4a4d-926b-4487dd851889", - "Body" : "" - } - } ], - "variables" : [ "webapp1-925910805f", "jsdkserver2e4704942", "jsdkdb390146890f0", "rg1nemv_6ac423502e9b", "9662fd73-e86d-43d2-a8bf-7c2ba8780c8c", "138a3f3b-0a0d-4a98-b836-31796179ef9c", "405bd1d8-d7d9-4063-bce4-5b371be177df", "efb7404d-a267-47ad-a5f8-98f962983f30", "e719824e-33e1-4de3-aeba-0ed64e6b7802", "webapp1-925910805fplan9bb753050", "009eaf13-d6e9-49f4-a43a-6f5cf916d618", "512b057e-2c44-4035-ade7-0e768cc6c747", "72045fb5-c967-4af7-9072-565f19e46690", "1c5022b2-c079-4a27-8e92-43e06e644261", "4f482358-e073-4575-887c-0bd9ff56e283", "cffcac94-2dd2-4d75-928c-23e7a3dd4efc", "1fa94909-9336-4907-9fba-a220f80b84be", "firewall_62940", "5ff82ba6-cdbc-4a8c-87d3-157458338e9e", "firewall_93838", "cda32fb7-d228-4b52-adbd-284f9ee777b7", "firewall_59682", "58d58223-5cd9-4a17-a39d-f0b61fd40d1c", "firewall_56669", "f84222d8-ce5b-4bff-a926-0b791b5ec564", "firewall_64091", "b9e36ce1-e624-4ff2-8598-65e1f913b485" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppBasic.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppBasic.json deleted file mode 100644 index 5e8f88485c31..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppBasic.json +++ /dev/null @@ -1,2303 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_fc2365374cd6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:27:53 GMT", - "content-length" : "324", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34619bee-3bc1-4daf-b0e5-f53d2bda4c1f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082753Z:34619bee-3bc1-4daf-b0e5-f53d2bda4c1f", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "34619bee-3bc1-4daf-b0e5-f53d2bda4c1f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6\",\"name\":\"rg1nemv_fc2365374cd6\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-08-03T08:27:49.203963Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1392", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7d9b00e4-190a-4320-815c-50c16098f460", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082805Z:7d9b00e4-190a-4320-815c-50c16098f460", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0f43c5ac-f45c-4d0f-b0be-c5d7a646a8ae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"name\":\"webapp1-6ed975312eplanb69605865\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":40664,\"name\":\"webapp1-6ed975312eplanb69605865\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-051_40664\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5543", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "caccceef-b6ce-4031-9e6c-70d09aff70d0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082827Z:caccceef-b6ce-4031-9e6c-70d09aff70d0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669700557C4A0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4fd009fa-4a50-4977-af97-9f82dc1f1688", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-6ed975312e\",\"state\":\"Running\",\"hostNames\":[\"webapp1-6ed975312e.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp1-6ed975312e\",\"repositorySiteName\":\"webapp1-6ed975312e\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-6ed975312e.azurewebsites.net\",\"webapp1-6ed975312e.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-6ed975312e.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-6ed975312e.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:09.507\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-6ed975312e\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp1-6ed975312e\\\\$webapp1-6ed975312e\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp1-6ed975312e.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:28 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1912164a-04eb-492c-a9bf-c1e087d92029", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082829Z:1912164a-04eb-492c-a9bf-c1e087d92029", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669700557C4A0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f7580df3-99c0-41dc-9b7b-874b9a7e6495", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings/webapp1-6ed975312e.azurewebsites.net\",\"name\":\"webapp1-6ed975312e/webapp1-6ed975312e.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-6ed975312e\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "af730cd8-28e8-4a83-8e24-f6dbcf19061d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082830Z:af730cd8-28e8-4a83-8e24-f6dbcf19061d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "143c8b68-c883-400a-a910-8f7e5e80c58e", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0930bed6-0483-40aa-986a-11a117cc9e03", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082830Z:0930bed6-0483-40aa-986a-11a117cc9e03", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3b605fad-9d49-4755-8087-638d9fd07a10", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "785b13a7-cd6d-4ad3-a990-602b1ab5ce65", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082831Z:785b13a7-cd6d-4ad3-a990-602b1ab5ce65", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "618ff94e-4374-4f5e-a146-8a8351b7c7b2", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "68277a00-d672-4ad8-8e1f-e0ae73d18cde", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082831Z:68277a00-d672-4ad8-8e1f-e0ae73d18cde", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "251e0d5d-18de-40ce-9afc-2cb87cea5143", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1392", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2574a233-77cd-4faf-91ae-aa148ee08229", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082832Z:2574a233-77cd-4faf-91ae-aa148ee08229", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "965c7aa8-8df2-4208-80ea-e4dd43a06777", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"name\":\"webapp1-6ed975312eplanb69605865\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":40664,\"name\":\"webapp1-6ed975312eplanb69605865\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bay-051_40664\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:54 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5543", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f0b62431-8d82-402f-ac99-2282fbe97a25", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082854Z:f0b62431-8d82-402f-ac99-2282fbe97a25", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697015F4D9B0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e6d6e822-8874-457a-8164-7c9193f772ae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-e95788356d\",\"state\":\"Running\",\"hostNames\":[\"webapp2-e95788356d.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp2-e95788356d\",\"repositorySiteName\":\"webapp2-e95788356d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-e95788356d.azurewebsites.net\",\"webapp2-e95788356d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-e95788356d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-e95788356d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:37.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-e95788356d\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp2-e95788356d\\\\$webapp2-e95788356d\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp2-e95788356d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2f7ef42a-0f11-435f-bad4-76af1cadc9d7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082856Z:2f7ef42a-0f11-435f-bad4-76af1cadc9d7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697015F4D9B0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6e3df98b-e533-4d44-b002-e08b3ae5e805", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings/webapp2-e95788356d.azurewebsites.net\",\"name\":\"webapp2-e95788356d/webapp2-e95788356d.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-e95788356d\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0edf2b9f-1a59-4cb1-b561-0684049fd6b6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082857Z:0edf2b9f-1a59-4cb1-b561-0684049fd6b6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "595670e8-d07d-46bd-bcd8-324abb9563eb", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "149d28d8-3b7b-4e47-80ce-382349ca0106", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082857Z:149d28d8-3b7b-4e47-80ce-382349ca0106", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "dcb00cb9-450e-40f7-81b0-03f058750ac7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "17a17c09-d646-414f-82c2-ea836931e05c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082858Z:17a17c09-d646-414f-82c2-ea836931e05c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d46f79b7-3b02-4f14-936c-b69d3feb6400", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ddd377f7-b259-4fe5-aee6-32c48be566f0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082858Z:ddd377f7-b259-4fe5-aee6-32c48be566f0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c5d1cfa1-e5b4-4421-bc05-570c93dab198", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2nemv_c9c612635076?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:59 GMT", - "content-length" : "327", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1131", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aa5f2e28-0208-4e6e-94b2-790ad9056b83", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082859Z:aa5f2e28-0208-4e6e-94b2-790ad9056b83", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "aa5f2e28-0208-4e6e-94b2-790ad9056b83", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076\",\"name\":\"rg2nemv_c9c612635076\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-08-03T08:28:58.557411100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:21 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5543", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47b141db-a7ce-43da-b776-13e7f428d9c9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "496", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082921Z:47b141db-a7ce-43da-b776-13e7f428d9c9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970262A5350\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "687459d6-df60-49e2-9618-c713afa812d9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3\",\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-d6869152c3\",\"state\":\"Running\",\"hostNames\":[\"webapp3-d6869152c3.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp3-d6869152c3\",\"repositorySiteName\":\"webapp3-d6869152c3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-d6869152c3.azurewebsites.net\",\"webapp3-d6869152c3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-d6869152c3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-d6869152c3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:04.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-d6869152c3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp3-d6869152c3\\\\$webapp3-d6869152c3\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_c9c612635076\",\"defaultHostName\":\"webapp3-d6869152c3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d36a7a5f-dff0-4009-b34b-9bde8b5111ed", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082923Z:d36a7a5f-dff0-4009-b34b-9bde8b5111ed", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970262A5350\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "96a91415-1557-49cf-8956-0203e2a0a2de", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/hostNameBindings/webapp3-d6869152c3.azurewebsites.net\",\"name\":\"webapp3-d6869152c3/webapp3-d6869152c3.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp3-d6869152c3\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "52c399ae-74cc-4134-be63-7b7d3de14247", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082923Z:52c399ae-74cc-4134-be63-7b7d3de14247", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c601d86a-d1ea-4140-8745-b6d46f498db8", - "Body" : "{\"id\":null,\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:23 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "102c2947-2af3-448e-851e-ff531984a313", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082923Z:102c2947-2af3-448e-851e-ff531984a313", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b24a14e3-2d0e-458a-9fd8-2b659b392357", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:24 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b187a795-bac7-4b2d-aa73-fbe1ad32f05e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082924Z:b187a795-bac7-4b2d-aa73-fbe1ad32f05e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b00aa45e-0740-4ca1-ae37-421b1c18fd90", - "Body" : "{\"id\":null,\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:24 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "df155c58-5c92-414b-9a2f-b0e1446bbd95", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082925Z:df155c58-5c92-414b-9a2f-b0e1446bbd95", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c2f92a38-89b2-4a89-b0f6-9188bff63981", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/stop?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:25 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d056ab09-61c2-4f7c-9be5-32c6b115ef71", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082925Z:d056ab09-61c2-4f7c-9be5-32c6b115ef71", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "1979a598-8e31-4048-bc55-8b2dc2b07eeb", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:26 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5344", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "43a0b2e1-9182-487b-9658-02caabe0ff01", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082926Z:43a0b2e1-9182-487b-9658-02caabe0ff01", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970327F5E70\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8e6aa473-1e64-4793-bebc-653e189aa79c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-6ed975312e\",\"state\":\"Stopped\",\"hostNames\":[\"webapp1-6ed975312e.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp1-6ed975312e\",\"repositorySiteName\":\"webapp1-6ed975312e\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-6ed975312e.azurewebsites.net\",\"webapp1-6ed975312e.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-6ed975312e.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-6ed975312e.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:25.847\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-6ed975312e\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp1-6ed975312e\\\\$webapp1-6ed975312e\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp1-6ed975312e.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3582", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1187635a-fea3-4331-8eb8-f38fdf224549", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082927Z:1187635a-fea3-4331-8eb8-f38fdf224549", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5e4941d0-9ae3-47a0-850e-6103fd18a157", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/web\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-6ed975312e\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ab0d2839-d36e-4c35-9943-7bc037d8b733", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082928Z:ab0d2839-d36e-4c35-9943-7bc037d8b733", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970327F5E70\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2731bb44-5c57-456a-9aa7-69cbefee965a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings/webapp1-6ed975312e.azurewebsites.net\",\"name\":\"webapp1-6ed975312e/webapp1-6ed975312e.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-6ed975312e\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "87ef89d9-b744-4145-ae67-c7af00523b05", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082929Z:87ef89d9-b744-4145-ae67-c7af00523b05", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0739eeeb-fff8-4472-9894-c2b66f354b14", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:28 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c413d0b4-1aeb-4325-8955-dcdbbae023fd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082929Z:c413d0b4-1aeb-4325-8955-dcdbbae023fd", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6dd50e8e-ba01-4d3e-977b-61c847e03e03", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "66348a9d-4414-4cee-9a14-858a1e4d2bec", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082930Z:66348a9d-4414-4cee-9a14-858a1e4d2bec", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e5696cf2-dee1-4ffb-aa93-6624a2db534e", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0dd4a550-f419-4827-b854-237661f2d60d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082930Z:0dd4a550-f419-4827-b854-237661f2d60d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f7c986c4-84e3-410f-83b5-c0c966285b0c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/start?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d25cc1d9-a519-43b9-bbc8-984aee8c365d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082931Z:d25cc1d9-a519-43b9-bbc8-984aee8c365d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "07f959a4-1e41-4c85-b3e7-727f984fcf68", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5344", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "912ce975-a439-4e9d-b61d-5598acf341e0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082932Z:912ce975-a439-4e9d-b61d-5598acf341e0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697035EF30D0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ac373b74-18b1-4f3f-b38e-7bbfef466271", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-6ed975312e\",\"state\":\"Running\",\"hostNames\":[\"webapp1-6ed975312e.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp1-6ed975312e\",\"repositorySiteName\":\"webapp1-6ed975312e\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-6ed975312e.azurewebsites.net\",\"webapp1-6ed975312e.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-6ed975312e.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-6ed975312e.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:31.613\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-6ed975312e\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp1-6ed975312e\\\\$webapp1-6ed975312e\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp1-6ed975312e.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3582", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "03ef2b28-156f-4319-a2af-a3ad9cd6d098", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082933Z:03ef2b28-156f-4319-a2af-a3ad9cd6d098", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2fcee7d6-21bf-4fbe-8ed2-e80e201a58de", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/web\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-6ed975312e\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "277e4568-9dbd-486c-9ea0-4c2cf1fd56db", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082934Z:277e4568-9dbd-486c-9ea0-4c2cf1fd56db", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697035EF30D0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f71f4409-19f5-4325-acbe-1e92a32b55d9", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings/webapp1-6ed975312e.azurewebsites.net\",\"name\":\"webapp1-6ed975312e/webapp1-6ed975312e.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-6ed975312e\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f3203083-29de-480b-983e-0c63e662eac7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082935Z:f3203083-29de-480b-983e-0c63e662eac7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2c216094-cada-431d-bf1a-99f85cb486dc", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:35 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "54a5caeb-6aad-4f42-8442-461c693203b8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11993", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082935Z:54a5caeb-6aad-4f42-8442-461c693203b8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ff0852b0-4793-4e6b-a2f5-02408e756a50", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:35 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1dc9dcaf-d2d0-45b6-9aa8-f68feab04eb3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082936Z:1dc9dcaf-d2d0-45b6-9aa8-f68feab04eb3", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "761a3932-32ab-4145-8905-45435017f5ef", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:36 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "152f8375-b639-4433-9856-02246da5e6a8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082936Z:152f8375-b639-4433-9856-02246da5e6a8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "db6331ae-edec-4ee7-ab5e-bb4f9df7e468", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/restart?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:36 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8e0cbb5-7862-4082-bf36-bd1aa087bcfb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082937Z:f8e0cbb5-7862-4082-bf36-bd1aa087bcfb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "ba49fb3c-2d26-419a-85a0-30ee09966754", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5344", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6d359200-f15c-484b-8e6b-94f7ad9cc03f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082938Z:6d359200-f15c-484b-8e6b-94f7ad9cc03f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697015F4D9B0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4dbed972-9ba9-47a9-8993-274cd02b84cf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-e95788356d\",\"state\":\"Running\",\"hostNames\":[\"webapp2-e95788356d.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp2-e95788356d\",\"repositorySiteName\":\"webapp2-e95788356d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-e95788356d.azurewebsites.net\",\"webapp2-e95788356d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-e95788356d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-e95788356d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:37.963\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-e95788356d\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp2-e95788356d\\\\$webapp2-e95788356d\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp2-e95788356d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3582", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad3ec489-0b6e-4c6e-bf38-2ac4261d33eb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082939Z:ad3ec489-0b6e-4c6e-bf38-2ac4261d33eb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "895537b7-34b4-4d8b-b523-51ae5d982d23", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/web\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-e95788356d\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:39 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2466f933-b36c-4571-bd7f-39f113fda10d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082939Z:2466f933-b36c-4571-bd7f-39f113fda10d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697015F4D9B0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "afc259c3-73ef-443a-ac2e-68b07d77bc26", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings/webapp2-e95788356d.azurewebsites.net\",\"name\":\"webapp2-e95788356d/webapp2-e95788356d.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-e95788356d\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c7f7cc17-be0d-4b2a-8065-7a977316352f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082940Z:c7f7cc17-be0d-4b2a-8065-7a977316352f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "df1d8615-3fa5-4c72-9ee0-53ce3799ab4c", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e92b1ccb-e641-4907-8d45-174f90b56428", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082941Z:e92b1ccb-e641-4907-8d45-174f90b56428", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "288d1089-bf35-4679-bc09-89ccf596e684", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:41 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2ead933b-9d54-4e06-8bbf-0ef25eeda985", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082941Z:2ead933b-9d54-4e06-8bbf-0ef25eeda985", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d8165d96-19ca-40a6-9904-a74a1dc73f63", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:41 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f1b421e8-8d2b-448d-b959-fb69c9c69371", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082941Z:f1b421e8-8d2b-448d-b959-fb69c9c69371", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ef3a32d3-a418-4ba2-87c1-e3aa1c02d608", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5543", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b8f080db-aa1f-4055-9257-04aa4f87ec08", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082946Z:b8f080db-aa1f-4055-9257-04aa4f87ec08", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970262A5350\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "70e7f83e-3984-426a-987b-5b59a0ae9071", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3\",\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-d6869152c3\",\"state\":\"Running\",\"hostNames\":[\"webapp3-d6869152c3.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp3-d6869152c3\",\"repositorySiteName\":\"webapp3-d6869152c3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-d6869152c3.azurewebsites.net\",\"webapp3-d6869152c3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-d6869152c3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-d6869152c3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:44.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-d6869152c3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp3-d6869152c3\\\\$webapp3-d6869152c3\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_c9c612635076\",\"defaultHostName\":\"webapp3-d6869152c3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:48 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3568", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1123", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fff42b86-bcbd-4445-8730-5ac3221d3857", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082949Z:fff42b86-bcbd-4445-8730-5ac3221d3857", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D669703D7C0580\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "76b8234f-20c3-4823-b672-c6420e4535d9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3\",\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-d6869152c3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":true,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":true,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "10731", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "93530d10-12b3-4b5f-821e-4a527dc00498", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082950Z:93530d10-12b3-4b5f-821e-4a527dc00498", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6f570108-474a-4ac3-8c92-12996e7cb9c9", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-6ed975312e\",\"state\":\"Running\",\"hostNames\":[\"webapp1-6ed975312e.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp1-6ed975312e\",\"repositorySiteName\":\"webapp1-6ed975312e\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-6ed975312e.azurewebsites.net\",\"webapp1-6ed975312e.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-6ed975312e.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-6ed975312e.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:31.613\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-6ed975312e\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp1-6ed975312e\\\\$webapp1-6ed975312e\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp1-6ed975312e.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-e95788356d\",\"state\":\"Running\",\"hostNames\":[\"webapp2-e95788356d.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp2-e95788356d\",\"repositorySiteName\":\"webapp2-e95788356d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-e95788356d.azurewebsites.net\",\"webapp2-e95788356d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-e95788356d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-e95788356d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:37.963\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-e95788356d\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp2-e95788356d\\\\$webapp2-e95788356d\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp2-e95788356d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3582", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "13119987-fc0e-49a5-bf2c-89f57468ab80", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082951Z:13119987-fc0e-49a5-bf2c-89f57468ab80", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4d9f166-24c1-4931-9daf-27f5129910e3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/web\",\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-6ed975312e\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "83c68d74-8f4d-48f6-8d02-319ebb841439", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082951Z:83c68d74-8f4d-48f6-8d02-319ebb841439", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b1a26416-fd8b-4cad-94fa-26789ec99a1b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "757f878a-7a81-4be1-a0cd-f51038fe5b56", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082951Z:757f878a-7a81-4be1-a0cd-f51038fe5b56", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e5305303-c36a-466b-988e-9aca550c2ab5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:51 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3582", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fb5bf60a-2bf7-433e-99c0-9432383a33eb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082951Z:fb5bf60a-2bf7-433e-99c0-9432383a33eb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e51de67a-ea28-4676-89a6-72ccbe45b5fe", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/web\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-e95788356d\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e572ccdb-3678-40cb-873f-4d23312852d7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082952Z:e572ccdb-3678-40cb-873f-4d23312852d7", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697035EF30D0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "16e2a247-5eec-4550-9734-a52eeece865d", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/hostNameBindings/webapp1-6ed975312e.azurewebsites.net\",\"name\":\"webapp1-6ed975312e/webapp1-6ed975312e.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-6ed975312e\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:53 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc66bcf0-4940-42e8-ab40-5ee7653f17f2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082953Z:bc66bcf0-4940-42e8-ab40-5ee7653f17f2", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "03461d64-4954-49aa-aadc-ef26f5818a8d", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad2ecac9-04d1-45dc-a31c-13af80ac967a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11993", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082953Z:ad2ecac9-04d1-45dc-a31c-13af80ac967a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1f1ebe1f-9db6-44a7-8e10-5edcc304bae9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:53 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7c140bf-7db4-4b66-a081-9281b3812f2f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082954Z:e7c140bf-7db4-4b66-a081-9281b3812f2f", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4fb1ed1c-4f7c-4814-b9ef-5492a974d233", - "Body" : "{\"id\":null,\"name\":\"webapp1-6ed975312e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:54 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a4852d78-6f8a-4845-b2fd-3ca6f27e6097", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082954Z:a4852d78-6f8a-4845-b2fd-3ca6f27e6097", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8404c8d8-3315-4d8d-a930-fbab7cfdf365", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2f8822a5-56c8-41ba-ae03-ca57c29d527c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082955Z:2f8822a5-56c8-41ba-ae03-ca57c29d527c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697015F4D9B0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "11ea440d-495f-42b6-b874-5f79b71eae2f", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings/webapp2-e95788356d.azurewebsites.net\",\"name\":\"webapp2-e95788356d/webapp2-e95788356d.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-e95788356d\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06dfe58f-2412-4205-becf-43d1cfa1c63d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082956Z:06dfe58f-2412-4205-becf-43d1cfa1c63d", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "88e802f5-b8f8-4e76-8920-0e8773d32919", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7af37a14-0466-47d3-9c1f-a8194d317058", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11993", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082956Z:7af37a14-0466-47d3-9c1f-a8194d317058", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "01cc0805-25e4-4763-8841-52e42c1e5987", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:56 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "824d3228-b9bb-46a4-93f1-e9f08a8eabf0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082957Z:824d3228-b9bb-46a4-93f1-e9f08a8eabf0", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3b19840d-e0b9-4bd9-bc2e-843ab76fce22", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:57 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b7ceac1-6a9c-43d9-a0d3-a0be36d6b7dd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11990", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082957Z:2b7ceac1-6a9c-43d9-a0d3-a0be36d6b7dd", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e721bf24-9af8-41dd-98e8-a0bd049525bb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:58 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5384", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "297955fa-70fb-40db-9775-1f509287737b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082958Z:297955fa-70fb-40db-9775-1f509287737b", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1f46bb22-a6de-462d-8367-027c3d0d48ef", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3\",\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp3-d6869152c3\",\"state\":\"Running\",\"hostNames\":[\"webapp3-d6869152c3.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp3-d6869152c3\",\"repositorySiteName\":\"webapp3-d6869152c3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-d6869152c3.azurewebsites.net\",\"webapp3-d6869152c3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-d6869152c3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-d6869152c3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:29:49.107\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp3-d6869152c3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp3-d6869152c3\\\\$webapp3-d6869152c3\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2nemv_c9c612635076\",\"defaultHostName\":\"webapp3-d6869152c3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:58 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "86a063d8-6ea9-41e6-876e-dad162887306", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082959Z:86a063d8-6ea9-41e6-876e-dad162887306", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "eddea426-f461-4535-b1db-f8b9c65c6d17", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:58 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3586", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "346026cb-4b65-4b3e-a563-5d72bf370bc9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082959Z:346026cb-4b65-4b3e-a563-5d72bf370bc9", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ef29e8c8-8524-4fcf-b5b5-a324548fcf42", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/web\",\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-d6869152c3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":true,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":true,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:00 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6863e38d-8592-4db3-afb9-f0e803aac3fa", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083000Z:6863e38d-8592-4db3-afb9-f0e803aac3fa", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D66970405C9030\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "736b7536-b750-4635-a1e5-1d512e3a13f4", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/hostNameBindings/webapp3-d6869152c3.azurewebsites.net\",\"name\":\"webapp3-d6869152c3/webapp3-d6869152c3.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp3-d6869152c3\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3a88379a-2792-4f6f-a595-b2bc1b730019", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083002Z:3a88379a-2792-4f6f-a595-b2bc1b730019", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1540dd00-171e-4eb1-8551-02314c5cf2b4", - "Body" : "{\"id\":null,\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8d9783b1-0deb-46e2-96fa-971da22c405a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11992", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083002Z:8d9783b1-0deb-46e2-96fa-971da22c405a", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "94f47b35-a2ca-4d4f-b363-60fc8250d6b9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:02 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a6c574f7-8da9-4dda-8cf5-195e8108a84e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083002Z:a6c574f7-8da9-4dda-8cf5-195e8108a84e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d28e6f33-09b6-4884-bf5d-b1dcc5bc88b3", - "Body" : "{\"id\":null,\"name\":\"webapp3-d6869152c3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "23a72bd1-eabc-4487-b279-794e9831c27c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11991", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083003Z:23a72bd1-eabc-4487-b279-794e9831c27c", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d0f5d3e3-9d2a-42d2-a584-ed2a25662a27", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2nemv_c9c612635076/providers/Microsoft.Web/sites/webapp3-d6869152c3/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp1-6ed975312e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "85416c3b-f3d1-4ca4-8dcb-f5858a9235b6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083009Z:85416c3b-f3d1-4ca4-8dcb-f5858a9235b6", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697035EF30D0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "2f50f837-aacd-4c35-a804-d584969de151", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5384", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5ae3685f-c328-4fdd-a1e1-6a985e9ba4bd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083010Z:5ae3685f-c328-4fdd-a1e1-6a985e9ba4bd", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ac68564f-9787-407e-b983-a887ca4edffc", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"name\":\"webapp2-e95788356d\",\"state\":\"Running\",\"hostNames\":[\"webapp2-e95788356d.azurewebsites.net\"],\"webSpace\":\"rg1nemv_fc2365374cd6-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_fc2365374cd6-WestUSwebspace/sites/webapp2-e95788356d\",\"repositorySiteName\":\"webapp2-e95788356d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-e95788356d.azurewebsites.net\",\"webapp2-e95788356d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-e95788356d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-e95788356d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/serverfarms/webapp1-6ed975312eplanb69605865\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-03T08:28:37.963\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp2-e95788356d\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.78.18.232\",\"possibleInboundIpAddresses\":\"40.78.18.232,40.112.243.37\",\"ftpUsername\":\"webapp2-e95788356d\\\\$webapp2-e95788356d\",\"ftpsHostName\":\"ftps://waws-prod-bay-051.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180\",\"possibleOutboundIpAddresses\":\"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180,13.64.158.49,40.118.230.241,40.83.138.42,13.64.95.4,13.64.88.244,40.78.18.232,40.112.243.37\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-051\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_fc2365374cd6\",\"defaultHostName\":\"webapp2-e95788356d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3582", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "281fb731-910c-43b1-9715-c53d2e883cf8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083011Z:281fb731-910c-43b1-9715-c53d2e883cf8", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4bcd2a22-e665-44f1-a253-f016e1b98625", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/web\",\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-e95788356d\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/logs?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "668", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "785db2d9-8e2e-4110-bfa8-61edc81b0ccd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083011Z:785db2d9-8e2e-4110-bfa8-61edc81b0ccd", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3068b47b-49a9-4920-bba2-b16b1975108c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/logs\",\"name\":\"logs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"applicationLogs\":{\"fileSystem\":{\"level\":\"Off\"},\"azureTableStorage\":{\"level\":\"Off\",\"sasUrl\":null},\"azureBlobStorage\":{\"level\":\"Off\",\"sasUrl\":null,\"retentionInDays\":null}},\"httpLogs\":{\"fileSystem\":{\"retentionInMb\":35,\"retentionInDays\":null,\"enabled\":false},\"azureBlobStorage\":{\"sasUrl\":null,\"retentionInDays\":null,\"enabled\":false}},\"failedRequestsTracing\":{\"enabled\":false},\"detailedErrorMessages\":{\"enabled\":false}}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac24c9e2-bc28-4188-8e72-0ecec1f5c27e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083012Z:ac24c9e2-bc28-4188-8e72-0ecec1f5c27e", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "etag" : "\"1D6697015F4D9B0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6f5d6dd1-d1fc-4301-a880-6e798e2ee961", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/hostNameBindings/webapp2-e95788356d.azurewebsites.net\",\"name\":\"webapp2-e95788356d/webapp2-e95788356d.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp2-e95788356d\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1f542c93-5008-4835-8327-2fb18d6bd022", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083013Z:1f542c93-5008-4835-8327-2fb18d6bd022", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8b100f92-aa4c-4d45-aeec-ce69d9c84bdd", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "273c4cf0-21b6-4f22-8bc6-ea48b7f29dfb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11986", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083013Z:273c4cf0-21b6-4f22-8bc6-ea48b7f29dfb", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4298b58d-8234-46b4-9832-8091be0e7fbb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:14 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "197", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b905ed3-050e-43be-af48-e13f6d2d41ae", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083014Z:9b905ed3-050e-43be-af48-e13f6d2d41ae", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1b0572ab-fe2e-4a71-99c7-87a8a25d6784", - "Body" : "{\"id\":null,\"name\":\"webapp2-e95788356d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:14 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "140575f1-0f59-4ad3-9572-14455e570b54", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11988", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083014Z:140575f1-0f59-4ad3-9572-14455e570b54", - "x-powered-by" : "ASP.NET", - "connection" : "keep-alive", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6800bced-df52-4f07-8731-43b7f292da96", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_fc2365374cd6/providers/Microsoft.Web/sites/webapp2-e95788356d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_fc2365374cd6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:17 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14991", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d17aeedb-060c-4594-89b0-9c83df12db8b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083017Z:d17aeedb-060c-4594-89b0-9c83df12db8b", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzFORU1WOjVGRkMyMzY1Mzc0Q0Q2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d17aeedb-060c-4594-89b0-9c83df12db8b", - "Body" : "" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2nemv_c9c612635076?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:18 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14993", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4b4bbebf-208e-4dc0-a0c6-75ec62bb2fba", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083019Z:4b4bbebf-208e-4dc0-a0c6-75ec62bb2fba", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzJORU1WOjVGQzlDNjEyNjM1MDc2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4b4bbebf-208e-4dc0-a0c6-75ec62bb2fba", - "Body" : "" - } - } ], - "variables" : [ "webapp1-6ed975312e", "webapp2-e95788356d", "webapp3-d6869152c3", "rg1nemv_fc2365374cd6", "rg2nemv_c9c612635076", "webapp1-6ed975312eplanb69605865" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSlots.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSlots.json deleted file mode 100644 index c578ce1751a6..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSlots.json +++ /dev/null @@ -1,3930 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg3e881652d1326e0?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:02:42 GMT", - "content-length" : "271", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc13c7d6-c0a1-4281-a6c9-79dd38014895", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060242Z:dc13c7d6-c0a1-4281-a6c9-79dd38014895", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dc13c7d6-c0a1-4281-a6c9-79dd38014895", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0\",\"name\":\"rg3e881652d1326e0\",\"location\":\"eastus\",\"tags\":{\"date\":\"2018-07-12T06:02:39.260Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:02:50 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1309", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56b10b62-118e-4f79-b2ce-64f7783a65d7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060250Z:56b10b62-118e-4f79-b2ce-64f7783a65d7", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd400d67-066b-486a-ba46-01b432b287d3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576\",\"name\":\"webapp1-46e7983461plan4eb048576\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"serverFarmId\":22373,\"name\":\"webapp1-46e7983461plan4eb048576\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg3e881652d1326e0-EastUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"East US\",\"perSiteScaling\":false,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg3e881652d1326e0\",\"reserved\":false,\"isXenon\":false,\"mdmId\":\"waws-prod-blu-041_22373\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:04:02 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2819", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "044df90a-b8e3-4576-b223-6745e245149a", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "x-ms-routing-request-id" : "WESTUS2:20180712T060402Z:044df90a-b8e3-4576-b223-6745e245149a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A5F88B6450\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "9519f9ea-7dad-41c7-8eac-e4b073ecc444", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-46e7983461\",\"state\":\"Running\",\"hostNames\":[\"webapp1-46e7983461.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastUSwebspace\",\"selfLink\":\"https://waws-prod-blu-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastUSwebspace/sites/webapp1-46e7983461\",\"repositorySiteName\":\"webapp1-46e7983461\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-46e7983461.azurewebsites.net\",\"webapp1-46e7983461.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-46e7983461.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-46e7983461.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:02:52.73\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-46e7983461\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130\",\"possibleOutboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130,13.93.142.91\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-blu-041\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp1-46e7983461.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:04:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2485", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab82d4de-4867-4674-b2f4-c2bd3c41652a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060403Z:ab82d4de-4867-4674-b2f4-c2bd3c41652a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A622AFD040\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "20cd34c0-00fb-4e3c-856c-b63570d573cc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-46e7983461\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:04:14 GMT", - "content-length" : "473", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a378e5c7-682a-4071-a2f6-dca276724a04", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060415Z:a378e5c7-682a-4071-a2f6-dca276724a04", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A62993BAC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "26df37c9-bfb8-4379-8967-76e8ee76315f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:04:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "542", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14999", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d31e47ae-9756-4d42-ac3f-e1f066b9155c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060415Z:d31e47ae-9756-4d42-ac3f-e1f066b9155c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A62993BAC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "4b550ea1-992f-4110-9827-36bd9f333af3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:04:14.8900000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:04:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "639", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14998", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba5d7b8b-e5f9-4846-827e-4144c8cbff12", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060446Z:ba5d7b8b-e5f9-4846-827e-4144c8cbff12", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A62993BAC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "f86a4484-bd90-407e-a11b-494ac243136a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:04:37.3755038 https://webapp1-46e7983461.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-07-12_06-04-26Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:05:16 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "472", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "28fa7ce1-69ae-4c15-b585-46c8462df7b3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060517Z:28fa7ce1-69ae-4c15-b585-46c8462df7b3", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A62993BAC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "3ac03f68-4d61-4438-9022-035e248a3b29", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/hostNameBindings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:05:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "455", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a32ee2f-7c61-4d7c-aad1-6e1a90e65a0e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060547Z:6a32ee2f-7c61-4d7c-aad1-6e1a90e65a0e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A62993BAC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "79816a12-84aa-426f-9542-0884f425ed60", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/hostNameBindings/webapp1-46e7983461.azurewebsites.net\",\"name\":\"webapp1-46e7983461/webapp1-46e7983461.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East US\",\"properties\":{\"siteName\":\"webapp1-46e7983461\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:05:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "303", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d7019cc-fc49-41df-80d3-783d907ee076", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "WESTUS2:20180712T060547Z:0d7019cc-fc49-41df-80d3-783d907ee076", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8d5b8945-0878-4556-b102-84d9e60a23f9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:05:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b07dcb5-9cba-4f32-a4f1-adb9a36fbe53", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060547Z:8b07dcb5-9cba-4f32-a4f1-adb9a36fbe53", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "400cc6e9-63e2-42c2-8b0a-60842d547982", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:05:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "277", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c00c79a-51c6-404d-95a7-df80ea5957f2", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "WESTUS2:20180712T060548Z:9c00c79a-51c6-404d-95a7-df80ea5957f2", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "66992fdd-b7cc-477e-ab6e-b49ef3064512", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:05:48 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75168494-33ac-40e3-ad6e-ecaf0b4add3b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060548Z:75168494-33ac-40e3-ad6e-ecaf0b4add3b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "963c2e97-9e72-4783-b746-8bc6afb17cec", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:06:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1319", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce0f77e2-1d81-43d1-8eed-0d96155574af", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060607Z:ce0f77e2-1d81-43d1-8eed-0d96155574af", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e85bb7d9-9ca4-4658-90fd-c978186afe5f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781\",\"name\":\"webapp2-c01168227dplan0fe114781\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"serverFarmId\":2950,\"name\":\"webapp2-c01168227dplan0fe114781\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg3e881652d1326e0-WestEuropewebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West Europe\",\"perSiteScaling\":false,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg3e881652d1326e0\",\"reserved\":false,\"isXenon\":false,\"mdmId\":\"waws-prod-am2-207_2950\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:06:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2910", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63daf218-0614-4cae-ad1f-6b008d42fa83", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "WESTUS2:20180712T060622Z:63daf218-0614-4cae-ad1f-6b008d42fa83", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A66E723E35\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "88a85593-a6c7-4d0a-b260-1635a562434a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"name\":\"webapp2-c01168227d\",\"state\":\"Running\",\"hostNames\":[\"webapp2-c01168227d.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-WestEuropewebspace\",\"selfLink\":\"https://waws-prod-am2-207.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-WestEuropewebspace/sites/webapp2-c01168227d\",\"repositorySiteName\":\"webapp2-c01168227d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-c01168227d.azurewebsites.net\",\"webapp2-c01168227d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-c01168227d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-c01168227d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:06:10.1666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp2-c01168227d\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216\",\"possibleOutboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216,52.136.237.60,23.97.182.229,23.97.129.152,168.63.47.74\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-am2-207\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp2-c01168227d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:06:24 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2489", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "edc8cda8-8811-4a42-9cd3-1c5a5a2c05fb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060625Z:edc8cda8-8811-4a42-9cd3-1c5a5a2c05fb", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A676B313A0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d214a1ae-c891-4d57-b02b-9428f46e4c39", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-c01168227d\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:06:36 GMT", - "content-length" : "477", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "065e6db3-7d07-4f4f-aa6b-e1f0c79788a8", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060637Z:065e6db3-7d07-4f4f-aa6b-e1f0c79788a8", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "005044bc-bbef-49af-b184-805c01fb3886", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:06:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "546", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44fc021a-d93f-4d1d-a62f-702cce163131", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060637Z:44fc021a-d93f-4d1d-a62f-702cce163131", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "db5469f9-4a67-47bd-a3bc-367544664eb7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:06:36.7100000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:07:08 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "643", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e836f8e6-588c-4c36-89c0-2178d1803c80", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060708Z:e836f8e6-588c-4c36-89c0-2178d1803c80", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "517523dd-1e91-4800-81f0-443729ea5c35", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:07:06.6109088 https://webapp2-c01168227d.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-07-12_06-06-55Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:07:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "476", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b21e9b3-9e27-45ff-9d19-6b72061bdf49", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060739Z:1b21e9b3-9e27-45ff-9d19-6b72061bdf49", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "831dbd28-2ffc-469c-be6a-cafdb34d37e6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/hostNameBindings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "459", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "06aab434-5c6e-4c1d-a5ff-3859a2f7e46e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060809Z:06aab434-5c6e-4c1d-a5ff-3859a2f7e46e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "9589a7e6-0d3c-461d-837a-6a544f2d1da4", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/hostNameBindings/webapp2-c01168227d.azurewebsites.net\",\"name\":\"webapp2-c01168227d/webapp2-c01168227d.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West Europe\",\"properties\":{\"siteName\":\"webapp2-c01168227d\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:10 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "307", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "37fe382f-9ec2-48e1-b99a-f265f8687cc4", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "WESTUS2:20180712T060810Z:37fe382f-9ec2-48e1-b99a-f265f8687cc4", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9c79e74d-2625-413e-9b5a-662b869ea9d4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:10 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b4574af3-e57e-4a54-8afe-619b42b71e78", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060810Z:b4574af3-e57e-4a54-8afe-619b42b71e78", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "506b2c3c-f6a8-4858-929b-43de80986cc6", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:10 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "281", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb4c981f-603e-4b2f-a002-c51d4e11c3c3", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "WESTUS2:20180712T060811Z:eb4c981f-603e-4b2f-a002-c51d4e11c3c3", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d43edab4-c869-48b8-ae06-0ce4e8391624", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:10 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58d1ef72-0288-4f1d-b2aa-b4bcff46294a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060811Z:58d1ef72-0288-4f1d-b2aa-b4bcff46294a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "14302497-901d-4206-aa01-a1f8c68ffbc2", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1315", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e9a9a61-4315-492d-83a5-fe7ad5bf98de", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060828Z:8e9a9a61-4315-492d-83a5-fe7ad5bf98de", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "769ef238-0612-4f42-b56f-ab7b067bdab8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766\",\"name\":\"webapp3-41351100e1plan1c9488766\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"serverFarmId\":32089,\"name\":\"webapp3-41351100e1plan1c9488766\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg3e881652d1326e0-EastAsiawebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg3e881652d1326e0\",\"reserved\":false,\"isXenon\":false,\"mdmId\":\"waws-prod-hk1-009_32089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:38 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2884", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0932c4e6-392c-4c2a-97ba-bfd1c9f6a8f4", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "x-ms-routing-request-id" : "WESTUS2:20180712T060838Z:0932c4e6-392c-4c2a-97ba-bfd1c9f6a8f4", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6C2950A80\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "bbe2724f-7c87-44b7-aff3-8f56f54c9e09", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"name\":\"webapp3-41351100e1\",\"state\":\"Running\",\"hostNames\":[\"webapp3-41351100e1.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastAsiawebspace/sites/webapp3-41351100e1\",\"repositorySiteName\":\"webapp3-41351100e1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-41351100e1.azurewebsites.net\",\"webapp3-41351100e1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-41351100e1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-41351100e1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:08:31.353\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp3-41351100e1\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83\",\"possibleOutboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83,23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp3-41351100e1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:40 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2487", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd67ac26-488b-4f74-8507-4bc6a112f118", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060841Z:bd67ac26-488b-4f74-8507-4bc6a112f118", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6C7742450\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "82b1c1ee-aa6f-4e8f-bc59-78618d84886f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-41351100e1\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:52 GMT", - "content-length" : "475", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d6637c4d-4c8d-402e-a568-94cfbbd61728", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060852Z:d6637c4d-4c8d-402e-a568-94cfbbd61728", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "c056f511-956f-4cd0-8f83-4e148e3dfb33", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:08:52 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "544", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d23fe872-8f87-440a-a9a8-7bf9a9a60842", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060853Z:d23fe872-8f87-440a-a9a8-7bf9a9a60842", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "6fa33896-d4bf-44c1-87c1-d58c3daee0b3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:08:52.1030000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:09:23 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "641", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b310049-c069-44a4-a34e-22c5b73592e5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060924Z:4b310049-c069-44a4-a34e-22c5b73592e5", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "e013baf7-96a2-4f39-896f-d749c87bb516", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:09:15.5995030 https://webapp3-41351100e1.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-07-12_06-09-01Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:09:54 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "474", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07e7b966-9ba6-4b2b-b216-f8cc88270f90", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T060955Z:07e7b966-9ba6-4b2b-b216-f8cc88270f90", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "db873853-7727-4ee9-ad2c-f5d49c8ee192", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/hostNameBindings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:10:24 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "457", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22f1f2dc-a19e-4892-8e6d-32bdfeca82ea", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061025Z:22f1f2dc-a19e-4892-8e6d-32bdfeca82ea", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "7f5b1f80-37d2-411e-8007-424bc0834826", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/hostNameBindings/webapp3-41351100e1.azurewebsites.net\",\"name\":\"webapp3-41351100e1/webapp3-41351100e1.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East Asia\",\"properties\":{\"siteName\":\"webapp3-41351100e1\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:10:25 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "305", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6d994925-7e12-46a5-96d9-704f7eae954c", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "WESTUS2:20180712T061025Z:6d994925-7e12-46a5-96d9-704f7eae954c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7868d861-941a-42e5-aafc-ccd929c4f39c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:10:25 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d7c041b7-f91c-47ba-a8e0-ffbf7f7e7095", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061026Z:d7c041b7-f91c-47ba-a8e0-ffbf7f7e7095", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "dbfe0cea-00a2-4c3d-8c36-e65ed07fc29f", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:10:25 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "279", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "69525e48-d5be-43ea-a6e9-3523e7d93232", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "WESTUS2:20180712T061026Z:69525e48-d5be-43ea-a6e9-3523e7d93232", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "76b53f0d-0bd2-43dd-8327-a8fd800ef9c8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:10:26 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0dcc3ec-da09-4d6b-abb2-2b171daf0959", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061026Z:c0dcc3ec-da09-4d6b-abb2-2b171daf0959", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ba3b88c2-2870-4811-8467-970c7897c7d4", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:31 GMT", - "content-length" : "141", - "expires" : "-1", - "retry-after" : "0", - "StatusCode" : "504", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "708e9748-60a3-4432-b4de-9abe01b3646f", - "x-content-type-options" : "nosniff", - "x-ms-failure-cause" : "service", - "x-ms-routing-request-id" : "WESTUS2:20180712T061132Z:708e9748-60a3-4432-b4de-9abe01b3646f", - "connection" : "close", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "708e9748-60a3-4432-b4de-9abe01b3646f", - "Body" : "{\"error\":{\"code\":\"GatewayTimeout\",\"message\":\"The gateway did not receive a response from 'Microsoft.Web' within the specified time period.\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:36 GMT", - "content-length" : "577", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "429", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e492d1e4-aa3f-4357-8b90-87395096d589", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "x-ms-routing-request-id" : "WESTUS2:20180712T061137Z:e492d1e4-aa3f-4357-8b90-87395096d589", - "x-powered-by" : "ASP.NET", - "connection" : "close", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e492d1e4-aa3f-4357-8b90-87395096d589", - "Body" : "{\"Code\":\"429\",\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\",\"Target\":null,\"Details\":[{\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\"},{\"Code\":\"429\"},{\"ErrorEntity\":{\"ExtendedCode\":\"59206\",\"MessageTemplate\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\",\"Parameters\":[],\"Code\":\"429\",\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\"}}],\"Innererror\":null}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2911", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf655c21-eebf-4100-a304-81d99d231da8", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "x-ms-routing-request-id" : "WESTUS2:20180712T061144Z:bf655c21-eebf-4100-a304-81d99d231da8", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A734D71250\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "af6489e2-7f59-40ad-9b4c-107bf4fb9767", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging\",\"name\":\"webapp1-46e7983461/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-46e7983461(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastUSwebspace\",\"selfLink\":\"https://waws-prod-blu-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastUSwebspace/sites/webapp1-46e7983461\",\"repositorySiteName\":\"webapp1-46e7983461\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\",\"webapp1-46e7983461-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-46e7983461-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:11:43.733\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-46e7983461__c979\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130\",\"possibleOutboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130,13.93.142.91\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-blu-041\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "303", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da5264b6-fbec-409f-9dba-69d934e6cc80", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "WESTUS2:20180712T061145Z:da5264b6-fbec-409f-9dba-69d934e6cc80", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "07d1c741-3aff-4dc1-988b-46da5e7275e0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14999", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ab8700d-7a03-4cdd-8fc1-755d9f1506e6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061145Z:1ab8700d-7a03-4cdd-8fc1-755d9f1506e6", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a195fbe0-61dd-4f0d-8a58-1a749ac597b1", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:46 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "317", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1dcba92-5d03-442e-a36f-5bac008b461b", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "WESTUS2:20180712T061146Z:d1dcba92-5d03-442e-a36f-5bac008b461b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c79c507-6681-4226-9678-3af2c5e45146", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "317", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4a32a2f9-88e3-48ff-ac37-b2ee920ad1f3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061147Z:4a32a2f9-88e3-48ff-ac37-b2ee920ad1f3", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A736C06BC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "9017e988-8aba-48ef-8ce1-2e98cdb7a54f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "277", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d23e7f46-73e6-4174-b24e-4f49682420c6", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "WESTUS2:20180712T061147Z:d23e7f46-73e6-4174-b24e-4f49682420c6", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5d02b526-0f82-4800-ae3a-0673e8cc1f50", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14998", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf7945a2-8255-41d9-a4dd-d7b9c0dd5a2d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061147Z:bf7945a2-8255-41d9-a4dd-d7b9c0dd5a2d", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "811fed56-89b1-4470-88d8-2a918c10b2c9", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:48 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2534", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c9518a9-0f0e-4c23-938c-b18aee5773a7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061148Z:6c9518a9-0f0e-4c23-938c-b18aee5773a7", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A737C3D200\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "067e8068-f366-4754-82df-a79115a713eb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging\",\"name\":\"webapp1-46e7983461/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-46e7983461__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/hostNameBindings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "502", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94f9c279-aa18-4030-9b3a-00d95a3b5582", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061149Z:94f9c279-aa18-4030-9b3a-00d95a3b5582", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A737C3D200\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "160690d1-e286-4d56-a067-bc5071656649", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/hostNameBindings/webapp1-46e7983461-staging.azurewebsites.net\",\"name\":\"webapp1-46e7983461/staging/webapp1-46e7983461-staging.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East US\",\"properties\":{\"siteName\":\"webapp1-46e7983461(staging)\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "317", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cf95cebb-49ae-4197-b06b-e370fb04d7bc", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "WESTUS2:20180712T061149Z:cf95cebb-49ae-4197-b06b-e370fb04d7bc", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f8d9e8ad-2f21-4154-a3a0-939231d065dd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "093f2e0a-e8ea-42d2-84fe-8da83bd2a4bb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061149Z:093f2e0a-e8ea-42d2-84fe-8da83bd2a4bb", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3dc04786-05ae-43a9-a5fd-9b3ff5cffe61", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "291", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9396c380-710c-4b05-b5dd-e21900d9891c", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "WESTUS2:20180712T061150Z:9396c380-710c-4b05-b5dd-e21900d9891c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "cfe647b0-191a-4724-8bec-d5ef3e20ff31", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:11:49 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81e63131-7a27-47bf-a7d1-22812d5cc789", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061150Z:81e63131-7a27-47bf-a7d1-22812d5cc789", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3d7bd785-1c10-453f-ab78-61cbc8344d0e", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2996", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aba01f63-2ca8-428d-a5cb-601848762eba", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "WESTUS2:20180712T061206Z:aba01f63-2ca8-428d-a5cb-601848762eba", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd2d83e1-8cb0-43c9-ba34-f7f9d57bf1a6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging\",\"name\":\"webapp2-c01168227d/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"name\":\"webapp2-c01168227d(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-WestEuropewebspace\",\"selfLink\":\"https://waws-prod-am2-207.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-WestEuropewebspace/sites/webapp2-c01168227d\",\"repositorySiteName\":\"webapp2-c01168227d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\",\"webapp2-c01168227d-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-c01168227d-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:11:52.94\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp2-c01168227d__e19c\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216\",\"possibleOutboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216,52.136.237.60,23.97.182.229,23.97.129.152,168.63.47.74\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-am2-207\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "307", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4057b01b-ea02-49ed-a1ec-570024103122", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "WESTUS2:20180712T061207Z:4057b01b-ea02-49ed-a1ec-570024103122", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9aceec00-d31b-4847-80df-12cd978400ae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "acbd1935-6b40-4496-adae-d53399921ae1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061207Z:acbd1935-6b40-4496-adae-d53399921ae1", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "71e29b4c-4ba9-4a19-a4cb-6732257e6362", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:07 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "321", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00fa49d9-90a0-43d0-a01f-c3ab089c7d9b", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "WESTUS2:20180712T061208Z:00fa49d9-90a0-43d0-a01f-c3ab089c7d9b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "29827535-c3bc-42d8-8edc-ab823675a07b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "321", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b54217fb-043f-4685-ab8b-32d7839bf474", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061209Z:b54217fb-043f-4685-ab8b-32d7839bf474", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A743C88035\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "981c60d6-4866-4012-8760-d02830bb9c21", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "281", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c86321c-7def-4966-8226-2901f15c16c9", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", - "x-ms-routing-request-id" : "WESTUS2:20180712T061209Z:7c86321c-7def-4966-8226-2901f15c16c9", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "eb9c7c4f-9748-46db-927f-d071988a0c78", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:09 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f470925-41d4-45d0-b92f-939fe1142648", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061209Z:8f470925-41d4-45d0-b92f-939fe1142648", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e86a4b26-1249-40a7-b448-60340bcde2ab", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:11 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2538", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59886123-fe33-4875-9bb7-5686a826fd76", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061212Z:59886123-fe33-4875-9bb7-5686a826fd76", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A74554364B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "c0c3066b-e5ba-4a28-8238-49de81f60b96", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging\",\"name\":\"webapp2-c01168227d/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-c01168227d__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/hostNameBindings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "506", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "552c567c-2cc4-4dfc-8e99-bc72b3f89e77", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061212Z:552c567c-2cc4-4dfc-8e99-bc72b3f89e77", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A74554364B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "197aae2b-76e4-4797-a9c5-fd0fbd547e8a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/hostNameBindings/webapp2-c01168227d-staging.azurewebsites.net\",\"name\":\"webapp2-c01168227d/staging/webapp2-c01168227d-staging.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West Europe\",\"properties\":{\"siteName\":\"webapp2-c01168227d(staging)\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "321", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd4eefd9-fc8c-4158-a3ea-258757191ba9", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "WESTUS2:20180712T061212Z:dd4eefd9-fc8c-4158-a3ea-258757191ba9", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f9c7f3b5-2ce5-430a-b861-3c3b063cfe55", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5aea4fa0-3cec-482f-a7f1-572954bc0523", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061213Z:5aea4fa0-3cec-482f-a7f1-572954bc0523", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7619e558-12cb-4cef-9fad-b4c9d62d2dcd", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:13 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "295", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53d543e3-cd51-415c-aaa6-7e5e6dd0e8cb", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "WESTUS2:20180712T061213Z:53d543e3-cd51-415c-aaa6-7e5e6dd0e8cb", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a934f0fd-2dbd-4b4e-8d99-40814d8ce818", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:14 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6f2bb443-5119-42fe-af06-c6bf7e865224", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061214Z:6f2bb443-5119-42fe-af06-c6bf7e865224", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3d10d402-910f-46bd-a0fa-aec67250d0b2", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:24 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2973", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d01dd4ea-b2c8-4848-85ab-0b080ba0bc5f", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "x-ms-routing-request-id" : "WESTUS2:20180712T061225Z:d01dd4ea-b2c8-4848-85ab-0b080ba0bc5f", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "fce73a13-6381-4266-9dc6-d210127bc0dc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging\",\"name\":\"webapp3-41351100e1/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"name\":\"webapp3-41351100e1(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastAsiawebspace/sites/webapp3-41351100e1\",\"repositorySiteName\":\"webapp3-41351100e1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\",\"webapp3-41351100e1-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-41351100e1-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:12:17.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp3-41351100e1__36b3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83\",\"possibleOutboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83,23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:26 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2536", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "daa0c095-2de8-47a2-883d-501bb7102596", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061227Z:daa0c095-2de8-47a2-883d-501bb7102596", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A74E830830\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "369c39c4-b9ab-466f-9ac7-8e63e988f9bc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging\",\"name\":\"webapp3-41351100e1/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-41351100e1__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "305", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4d3b54e-53ea-4a26-953f-29a65ec5578e", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11995", - "x-ms-routing-request-id" : "WESTUS2:20180712T061228Z:a4d3b54e-53ea-4a26-953f-29a65ec5578e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "2f156eb3-5f51-4a2b-b45e-7085ab174943", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:27 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1bf282f-f962-45bc-9fcb-7bc4ddddec6e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061228Z:a1bf282f-f962-45bc-9fcb-7bc4ddddec6e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "50c4a4a8-c451-461e-b765-1a8593cb56b6", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:28 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "319", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "276f449a-d1ba-48a9-8aae-8dfa42990594", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11993", - "x-ms-routing-request-id" : "WESTUS2:20180712T061228Z:276f449a-d1ba-48a9-8aae-8dfa42990594", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "29eebecb-3fbe-4d43-bd59-9a6fc14143a5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "319", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71c4c584-baca-4c7c-9937-502068d41333", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061229Z:71c4c584-baca-4c7c-9937-502068d41333", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A74FE8B2B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "25ee0bff-f22c-404e-8d90-46c3f3447337", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "279", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ce2f05c-336b-42ca-9fb8-bf1caa54ecff", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11994", - "x-ms-routing-request-id" : "WESTUS2:20180712T061230Z:0ce2f05c-336b-42ca-9fb8-bf1caa54ecff", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4c502383-86f7-4f5a-a75f-b67833f8e68c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e851c04a-e1c3-4b06-bc1b-27371029890e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061230Z:e851c04a-e1c3-4b06-bc1b-27371029890e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "82b89e4b-f9a1-46e8-80fa-0d897b6c6ab7", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/hostNameBindings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "504", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b29428a-9a2b-4be1-b3e4-9cc68d883d2e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061230Z:0b29428a-9a2b-4be1-b3e4-9cc68d883d2e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A74FE8B2B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "22be7213-6d6b-4de2-9c45-6a3093e4bbff", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/hostNameBindings/webapp3-41351100e1-staging.azurewebsites.net\",\"name\":\"webapp3-41351100e1/staging/webapp3-41351100e1-staging.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East Asia\",\"properties\":{\"siteName\":\"webapp3-41351100e1(staging)\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "319", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0a29c56-e4ce-4f03-a30e-e2b95a2b2dfd", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11992", - "x-ms-routing-request-id" : "WESTUS2:20180712T061231Z:c0a29c56-e4ce-4f03-a30e-e2b95a2b2dfd", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ee8ce698-1aa6-4ffe-8c02-52a771b19fbe", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "551ae619-f00c-43c4-adf7-1f0748a2beaa", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061231Z:551ae619-f00c-43c4-adf7-1f0748a2beaa", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "aa9a8a30-1210-4df7-b172-00bfac059f02", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "293", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f485d59b-7b28-403a-a052-0edc398ce394", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11991", - "x-ms-routing-request-id" : "WESTUS2:20180712T061231Z:f485d59b-7b28-403a-a052-0edc398ce394", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "878a62a1-7d3c-4858-91d7-12b57c406e64", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb4ace6c-58bd-467a-9918-75509e72a237", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061232Z:eb4ace6c-58bd-467a-9918-75509e72a237", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "04938684-032f-47d6-bda7-a5a9fd593c4f", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2911", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "deaa2806-676a-4e57-a9f1-a7c6047ac22b", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "496", - "x-ms-routing-request-id" : "WESTUS2:20180712T061234Z:deaa2806-676a-4e57-a9f1-a7c6047ac22b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7522B0190\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "90d53cda-d7a3-4661-a832-592bc58fe7ce", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging\",\"name\":\"webapp1-46e7983461/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-46e7983461(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastUSwebspace\",\"selfLink\":\"https://waws-prod-blu-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastUSwebspace/sites/webapp1-46e7983461\",\"repositorySiteName\":\"webapp1-46e7983461\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\",\"webapp1-46e7983461-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-46e7983461-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:12:32.937\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-46e7983461__c979\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130\",\"possibleOutboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130,13.93.142.91\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-blu-041\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "303", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "20c62de3-2d10-4840-b037-30889718c8c0", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11993", - "x-ms-routing-request-id" : "WESTUS2:20180712T061234Z:20c62de3-2d10-4840-b037-30889718c8c0", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "a6040e12-859d-4402-9b5b-e532532f7743", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7965b81b-63f4-4f77-993d-4f1e53d07c03", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061234Z:7965b81b-63f4-4f77-993d-4f1e53d07c03", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "27851c91-7fb9-4619-8997-9ce88853e038", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "317", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4cae9a47-23f7-434c-ad70-51f900d2b640", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11990", - "x-ms-routing-request-id" : "WESTUS2:20180712T061234Z:4cae9a47-23f7-434c-ad70-51f900d2b640", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5b5d9432-b18b-4795-aee1-7ae396312008", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "317", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca4be617-418d-4dc4-a55d-cb0a53ebc617", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061235Z:ca4be617-418d-4dc4-a55d-cb0a53ebc617", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7534BDAE0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ddcec08-9d39-4554-be3e-ae6fdf348954", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "277", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ef604d8-a68c-47e5-9d63-99ed32c68300", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11992", - "x-ms-routing-request-id" : "WESTUS2:20180712T061235Z:5ef604d8-a68c-47e5-9d63-99ed32c68300", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4fa8ad53-eb84-454c-b19b-9af2dd8a273f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b87a917-0f3b-424b-ab02-72f7f6d17e26", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061235Z:5b87a917-0f3b-424b-ab02-72f7f6d17e26", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f923c44d-b287-4534-82d3-8a6772fb3026", - "Body" : "{\"id\":null,\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:35 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2534", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b46d7c1f-da82-4d5a-8022-fa7ff8d66c61", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061236Z:b46d7c1f-da82-4d5a-8022-fa7ff8d66c61", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A75402F5E0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "92ed3784-7342-4cd0-9a5f-ded9a433b9d5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging\",\"name\":\"webapp1-46e7983461/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-46e7983461__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:44 GMT", - "content-length" : "488", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4bff05d-7d90-420b-b324-733eda1a84a3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061244Z:d4bff05d-7d90-420b-b324-733eda1a84a3", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A75905C450\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "1b99025e-4552-4cf6-b969-2b9ebc6ac701", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:12:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "557", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "223be3fd-f165-4c34-a0e8-29d22e7c8f69", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061244Z:223be3fd-f165-4c34-a0e8-29d22e7c8f69", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A75905C450\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "c1662936-04bc-4547-9330-be1ca261593c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:12:44.2170000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:13:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "662", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1ee68c9-fa67-40fa-92e1-a99f1125f2ad", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061315Z:a1ee68c9-fa67-40fa-92e1-a99f1125f2ad", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A75905C450\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "3b99e2f4-99aa-4713-a077-073c8bb0131b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:13:14.4048991 https://webapp1-46e7983461-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-07-12_06-12-53Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:13:45 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "487", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1945d8e8-fb94-4971-8e6e-14e3baf03cb1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061345Z:1945d8e8-fb94-4971-8e6e-14e3baf03cb1", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A62993BAC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "200254ec-41c8-45a8-ac47-a216aac41f51", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/sourcecontrols/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:14:20 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3001", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fafbc79e-5d3e-4484-99a4-ba5fd0930c02", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "495", - "x-ms-routing-request-id" : "WESTUS2:20180712T061420Z:fafbc79e-5d3e-4484-99a4-ba5fd0930c02", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A791ECC5F5\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "79e82b47-10cf-422b-abf4-ada206179d44", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging\",\"name\":\"webapp2-c01168227d/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"name\":\"webapp2-c01168227d(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-WestEuropewebspace\",\"selfLink\":\"https://waws-prod-am2-207.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-WestEuropewebspace/sites/webapp2-c01168227d\",\"repositorySiteName\":\"webapp2-c01168227d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\",\"webapp2-c01168227d-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-c01168227d-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:14:19.9033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp2-c01168227d__e19c\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216\",\"possibleOutboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216,52.136.237.60,23.97.182.229,23.97.129.152,168.63.47.74\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-am2-207\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:14:22 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2538", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5a6b0a27-90aa-49e4-b79e-c3a794c53edd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061422Z:5a6b0a27-90aa-49e4-b79e-c3a794c53edd", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A793611675\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "09d3b0af-c159-409f-980a-8998103747c4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging\",\"name\":\"webapp2-c01168227d/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-c01168227d__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:14:32 GMT", - "content-length" : "492", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84d6f123-ac07-4744-b005-779d1f1b9b26", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061433Z:84d6f123-ac07-4744-b005-779d1f1b9b26", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A799A54B8B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "63ab0def-dd27-49d2-94c0-bced2b873b35", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:14:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "561", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c538bb64-2841-46ae-b9fd-fa5f37606bdd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061433Z:c538bb64-2841-46ae-b9fd-fa5f37606bdd", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A799A54B8B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "918f5713-06a3-4472-8ecc-4d8a33b6a6a9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:14:32.3700000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:15:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "666", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af0ed22d-5dd5-41e9-bef6-9faa2a51f80e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061504Z:af0ed22d-5dd5-41e9-bef6-9faa2a51f80e", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A799A54B8B\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "802a2022-e7da-44b6-b051-38ca2fcf865c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:14:54.2097127 https://webapp2-c01168227d-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-07-12_06-14-42Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:15:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "491", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5e6d829-e723-4497-a4ae-a1f684881d2b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061534Z:b5e6d829-e723-4497-a4ae-a1f684881d2b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A67E25EAAB\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "83d03b0d-c063-46af-9d35-eca18835ed7a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/sourcecontrols/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "307", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23a6b348-7c05-456e-a263-893744364cd4", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11991", - "x-ms-routing-request-id" : "WESTUS2:20180712T061605Z:23a6b348-7c05-456e-a263-893744364cd4", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "d39d5281-a984-4266-8d65-53ef14ebf7d6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e89a2ae4-330c-4761-b7a0-526f28ba626a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061605Z:e89a2ae4-330c-4761-b7a0-526f28ba626a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "62995bcd-db56-4d94-892c-6f3807c250df", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:05 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "321", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba55ee28-bc9c-4bbe-9c2d-f5613985f2e8", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11989", - "x-ms-routing-request-id" : "WESTUS2:20180712T061606Z:ba55ee28-bc9c-4bbe-9c2d-f5613985f2e8", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "1c6cb2f1-2760-4899-9385-e982bdc98b13", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "321", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ef2030ab-ed5e-494b-8271-5e4716dccd10", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061606Z:ef2030ab-ed5e-494b-8271-5e4716dccd10", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7D1731500\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "76d23d76-45f0-4711-98e4-aace529907cd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "281", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de44355f-63d4-4f7e-9567-1a42af01b08d", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11990", - "x-ms-routing-request-id" : "WESTUS2:20180712T061607Z:de44355f-63d4-4f7e-9567-1a42af01b08d", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f9e91d77-022e-498e-b7e4-65011e3d9d98", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:06 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "170", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cba9ceda-09a0-4355-b5d0-755ec26ded33", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061607Z:cba9ceda-09a0-4355-b5d0-755ec26ded33", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8ef03f5b-66a9-4fbc-a6fc-747537ee55c7", - "Body" : "{\"id\":null,\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:12 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2974", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb9036ff-1ad3-4c81-a844-434fae998391", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "494", - "x-ms-routing-request-id" : "WESTUS2:20180712T061613Z:fb9036ff-1ad3-4c81-a844-434fae998391", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7D51BF8C0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "95d4d3bf-1169-4cdb-9111-759b829e3db2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging\",\"name\":\"webapp3-41351100e1/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"name\":\"webapp3-41351100e1(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastAsiawebspace/sites/webapp3-41351100e1\",\"repositorySiteName\":\"webapp3-41351100e1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\",\"webapp3-41351100e1-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-41351100e1-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:16:12.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp3-41351100e1__36b3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83\",\"possibleOutboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83,23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:15 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2536", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0415dd89-3bc8-494f-9983-b18a91747569", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061615Z:0415dd89-3bc8-494f-9983-b18a91747569", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7D6AECDC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "0738dac4-6f18-4d18-9840-85faf2491aaf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging\",\"name\":\"webapp3-41351100e1/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-41351100e1__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:29 GMT", - "content-length" : "490", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2ffd3c8-b38d-4543-aa9d-ae898113e90b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061629Z:a2ffd3c8-b38d-4543-aa9d-ae898113e90b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7DF31C240\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "168ef12e-d254-4c42-a8c9-efc2c220b160", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:16:29 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "559", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98df882b-b6c4-4e18-b519-6370295c9bb9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061630Z:98df882b-b6c4-4e18-b519-6370295c9bb9", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7DF31C240\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d58ac09e-20e9-4f7c-b451-c461794535cd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:16:29.1830000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:17:00 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "664", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "485e6503-9362-4935-9f0d-105337f4a247", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061700Z:485e6503-9362-4935-9f0d-105337f4a247", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A7DF31C240\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "938cc4d2-4979-448b-90c2-009bcbe3172f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-07-12T06:16:57.8870936 https://webapp3-41351100e1-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-07-12_06-16-36Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:17:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "489", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45c41926-e636-457f-8152-47e751dc75bc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061731Z:45c41926-e636-457f-8152-47e751dc75bc", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A6CEE078B0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "42c52e39-9e45-4fa5-a304-4be3852c27db", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/sourcecontrols/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test.git\",\"branch\":\"staging\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "305", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9080a97-5e85-4ecd-bf76-a3c5b3928567", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11989", - "x-ms-routing-request-id" : "WESTUS2:20180712T061802Z:b9080a97-5e85-4ecd-bf76-a3c5b3928567", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8fe01856-e4f6-41f2-9d26-940456dbe60d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e889390-3b9d-4ad1-9524-243da8372680", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061802Z:8e889390-3b9d-4ad1-9524-243da8372680", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6e01998f-8c03-418b-88ee-5dc7cc6e330e", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:01 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "319", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3033e0d-406a-4eca-b683-be47ef3e4007", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11988", - "x-ms-routing-request-id" : "WESTUS2:20180712T061802Z:d3033e0d-406a-4eca-b683-be47ef3e4007", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "46c2e79c-5069-4da1-b475-206b8f64ee2d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "319", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bfe5534-79e4-4f97-9f82-7ccc66604f0a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061804Z:9bfe5534-79e4-4f97-9f82-7ccc66604f0a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A8176CE680\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "762f75c4-f236-435e-942d-eb94a6cfd251", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/connectionstrings/list?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:03 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "279", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e11d5fda-179a-4cda-bd08-fbf61538513a", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11988", - "x-ms-routing-request-id" : "WESTUS2:20180712T061804Z:e11d5fda-179a-4cda-bd08-fbf61538513a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0161bec7-46bc-4d8c-9763-7fb5f02f9877", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/config/slotConfigNames?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:04 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "168", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11bb4c6e-6087-4dc6-a22e-dfb42985ba61", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061805Z:11bb4c6e-6087-4dc6-a22e-dfb42985ba61", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "0186b1ba-3d7d-4857-a158-7b6387da949e", - "Body" : "{\"id\":null,\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/slotsswap?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:09 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb8598bc-b581-477d-bd13-d2ec4ede11ae", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061809Z:cb8598bc-b581-477d-bd13-d2ec4ede11ae", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D419A75905C450\"", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cb8598bc-b581-477d-bd13-d2ec4ede11ae", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:09 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c430b582-b5f7-47dd-9f0d-52471ee443a5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061809Z:c430b582-b5f7-47dd-9f0d-52471ee443a5", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c430b582-b5f7-47dd-9f0d-52471ee443a5", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:24 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b06cdef-6eec-4516-be73-5f19556027bd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061825Z:8b06cdef-6eec-4516-be73-5f19556027bd", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8b06cdef-6eec-4516-be73-5f19556027bd", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:40 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f613215-025d-4495-be87-3d4cef5ec6d9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061840Z:4f613215-025d-4495-be87-3d4cef5ec6d9", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4f613215-025d-4495-be87-3d4cef5ec6d9", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/operationresults/9c2d4964-4fad-4a4b-9303-e1d78906d685?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3013", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9913e8b-4893-43af-9ccf-2ceb1722b28a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061855Z:c9913e8b-4893-43af-9ccf-2ceb1722b28a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A8301D8C70\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d77c7029-3cd8-4a41-b419-70342674e73d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging\",\"name\":\"webapp1-46e7983461/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-46e7983461(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastUSwebspace\",\"selfLink\":\"https://waws-prod-blu-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastUSwebspace/sites/webapp1-46e7983461\",\"repositorySiteName\":\"webapp1-46e7983461\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\",\"webapp1-46e7983461-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-46e7983461-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:18:45.303\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-46e7983461__c979\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130\",\"possibleOutboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130,13.93.142.91\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-blu-041\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"slotSwapStatus\":{\"timestampUtc\":\"2018-07-12T06:18:45.303Z\",\"sourceSlotName\":\"staging\",\"destinationSlotName\":\"Production\"},\"httpsOnly\":false}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3013", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2df6eb51-5e3f-4469-9ccf-c895f6f06ac8", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061855Z:2df6eb51-5e3f-4469-9ccf-c895f6f06ac8", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A8301D8C70\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "0950bf9c-1203-4164-930f-90f531a1ecb8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging\",\"name\":\"webapp1-46e7983461/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-46e7983461(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastUSwebspace\",\"selfLink\":\"https://waws-prod-blu-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastUSwebspace/sites/webapp1-46e7983461\",\"repositorySiteName\":\"webapp1-46e7983461\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-46e7983461-staging.azurewebsites.net\",\"webapp1-46e7983461-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-46e7983461-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp1-46e7983461plan4eb048576\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:18:45.303\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-46e7983461__c979\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130\",\"possibleOutboundIpAddresses\":\"40.76.215.220,40.76.210.146,40.76.212.195,40.76.214.130,13.93.142.91\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-blu-041\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp1-46e7983461-staging.azurewebsites.net\",\"slotSwapStatus\":{\"timestampUtc\":\"2018-07-12T06:18:45.303Z\",\"sourceSlotName\":\"staging\",\"destinationSlotName\":\"Production\"},\"httpsOnly\":false}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:55 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2545", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17f52282-a76b-4c3b-9b60-5e88d2e0c5d9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061855Z:17f52282-a76b-4c3b-9b60-5e88d2e0c5d9", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "fbefc970-dc01-496f-9e4e-57ebd7fb4994", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp1-46e7983461/slots/staging/config/web\",\"name\":\"webapp1-46e7983461\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-46e7983461__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"ExternalGit\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/slotsswap?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:58 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8852bf8-d054-4537-ba85-b26b6ae043f9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061858Z:c8852bf8-d054-4537-ba85-b26b6ae043f9", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D419A799A54B8B\"", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c8852bf8-d054-4537-ba85-b26b6ae043f9", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:18:58 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2acc3d7c-49aa-40ee-957d-4c04122e16b9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061858Z:2acc3d7c-49aa-40ee-957d-4c04122e16b9", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2acc3d7c-49aa-40ee-957d-4c04122e16b9", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:12 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "55334e0f-05b2-493a-9a9a-e45c29c96b84", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061913Z:55334e0f-05b2-493a-9a9a-e45c29c96b84", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "55334e0f-05b2-493a-9a9a-e45c29c96b84", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:28 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3c0a437-dfe3-45a7-ba46-0d8d1802ae34", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061928Z:d3c0a437-dfe3-45a7-ba46-0d8d1802ae34", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d3c0a437-dfe3-45a7-ba46-0d8d1802ae34", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/operationresults/3ed435f6-342c-4904-b70a-32c063d2ca0e?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3103", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e549e2d9-a8bb-4ea5-a701-46054d9f7516", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061944Z:e549e2d9-a8bb-4ea5-a701-46054d9f7516", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A84D1B7975\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c973262-c358-4189-ad0a-a54c53d8ac10", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging\",\"name\":\"webapp2-c01168227d/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"name\":\"webapp2-c01168227d(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-WestEuropewebspace\",\"selfLink\":\"https://waws-prod-am2-207.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-WestEuropewebspace/sites/webapp2-c01168227d\",\"repositorySiteName\":\"webapp2-c01168227d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\",\"webapp2-c01168227d-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-c01168227d-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:19:33.9433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp2-c01168227d__e19c\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216\",\"possibleOutboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216,52.136.237.60,23.97.182.229,23.97.129.152,168.63.47.74\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-am2-207\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"slotSwapStatus\":{\"timestampUtc\":\"2018-07-12T06:19:33.995Z\",\"sourceSlotName\":\"staging\",\"destinationSlotName\":\"Production\"},\"httpsOnly\":false}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3103", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c97eb0a2-ecb8-4021-befa-6334ccf044eb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061944Z:c97eb0a2-ecb8-4021-befa-6334ccf044eb", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A84D1B7975\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "c020deaf-2d8e-4a47-a02b-1dd8668a21ee", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging\",\"name\":\"webapp2-c01168227d/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"name\":\"webapp2-c01168227d(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-WestEuropewebspace\",\"selfLink\":\"https://waws-prod-am2-207.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-WestEuropewebspace/sites/webapp2-c01168227d\",\"repositorySiteName\":\"webapp2-c01168227d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp2-c01168227d-staging.azurewebsites.net\",\"webapp2-c01168227d-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp2-c01168227d-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp2-c01168227dplan0fe114781\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:19:33.9433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp2-c01168227d__e19c\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216\",\"possibleOutboundIpAddresses\":\"104.45.1.117,52.136.236.252,23.97.216.229,52.136.232.67,137.116.204.216,52.136.237.60,23.97.182.229,23.97.129.152,168.63.47.74\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-am2-207\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp2-c01168227d-staging.azurewebsites.net\",\"slotSwapStatus\":{\"timestampUtc\":\"2018-07-12T06:19:33.995Z\",\"sourceSlotName\":\"staging\",\"destinationSlotName\":\"Production\"},\"httpsOnly\":false}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:44 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2549", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74977593-21cb-47eb-af1f-9677b7563206", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061945Z:74977593-21cb-47eb-af1f-9677b7563206", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c78a68e-91b5-4e24-973c-2109e6d0349f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp2-c01168227d/slots/staging/config/web\",\"name\":\"webapp2-c01168227d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp2-c01168227d__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"ExternalGit\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/slotsswap?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:47 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cffdfbfc-2743-410f-8237-3892444c6eff", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061947Z:cffdfbfc-2743-410f-8237-3892444c6eff", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D419A7DF31C240\"", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cffdfbfc-2743-410f-8237-3892444c6eff", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:19:47 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a48dc03-c2df-49a6-92ec-d65d4acf5dbf", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T061948Z:3a48dc03-c2df-49a6-92ec-d65d4acf5dbf", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "3a48dc03-c2df-49a6-92ec-d65d4acf5dbf", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:20:06 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07b1ce03-71e0-47ea-ad90-3fd1942a750d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T062006Z:07b1ce03-71e0-47ea-ad90-3fd1942a750d", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "07b1ce03-71e0-47ea-ad90-3fd1942a750d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:20:21 GMT", - "content-length" : "0", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97505e85-c036-4f9e-8833-4b5a796d1927", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T062021Z:97505e85-c036-4f9e-8833-4b5a796d1927", - "x-powered-by" : "ASP.NET", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "97505e85-c036-4f9e-8833-4b5a796d1927", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/operationresults/215b12c5-7681-451a-91e7-4857af482831?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:20:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3076", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c4df75f-8e99-418a-b39d-32afa6270451", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T062037Z:5c4df75f-8e99-418a-b39d-32afa6270451", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A86A64AD50\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "07e26adc-c80b-404f-9760-5d714a1d5184", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging\",\"name\":\"webapp3-41351100e1/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"name\":\"webapp3-41351100e1(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastAsiawebspace/sites/webapp3-41351100e1\",\"repositorySiteName\":\"webapp3-41351100e1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\",\"webapp3-41351100e1-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-41351100e1-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:20:23.077\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp3-41351100e1__36b3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83\",\"possibleOutboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83,23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"slotSwapStatus\":{\"timestampUtc\":\"2018-07-12T06:20:23.14Z\",\"sourceSlotName\":\"staging\",\"destinationSlotName\":\"Production\"},\"httpsOnly\":false}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:20:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "3076", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1c2cceb-2664-498f-9773-2ed0f278922b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T062037Z:f1c2cceb-2664-498f-9773-2ed0f278922b", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D419A86A64AD50\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "b18d61b1-3624-41b3-bdd9-e01f504f78fb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging\",\"name\":\"webapp3-41351100e1/staging\",\"type\":\"Microsoft.Web/sites/slots\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"name\":\"webapp3-41351100e1(staging)\",\"state\":\"Running\",\"hostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\"],\"webSpace\":\"rg3e881652d1326e0-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg3e881652d1326e0-EastAsiawebspace/sites/webapp3-41351100e1\",\"repositorySiteName\":\"webapp3-41351100e1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp3-41351100e1-staging.azurewebsites.net\",\"webapp3-41351100e1-staging.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp3-41351100e1-staging.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/serverfarms/webapp3-41351100e1plan1c9488766\",\"reserved\":false,\"isXenon\":false,\"lastModifiedTimeUtc\":\"2018-07-12T06:20:23.077\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp3-41351100e1__36b3\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83\",\"possibleOutboundIpAddresses\":\"23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174,20.184.8.83,23.99.115.89,23.99.116.84,23.99.116.67,23.99.114.174\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg3e881652d1326e0\",\"defaultHostName\":\"webapp3-41351100e1-staging.azurewebsites.net\",\"slotSwapStatus\":{\"timestampUtc\":\"2018-07-12T06:20:23.14Z\",\"sourceSlotName\":\"staging\",\"destinationSlotName\":\"Production\"},\"httpsOnly\":false}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/web?api-version=2018-02-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (WebSiteManagementClient, 2018-02-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:20:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2547", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee118f64-1244-43b7-81f1-b0768e2a2f43", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T062038Z:ee118f64-1244-43b7-81f1-b0768e2a2f43", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "380cdc17-1039-44ec-96d4-4efde40d031b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg3e881652d1326e0/providers/Microsoft.Web/sites/webapp3-41351100e1/slots/staging/config/web\",\"name\":\"webapp3-41351100e1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2012\",\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp3-41351100e1__staging\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"ExternalGit\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"1.8\",\"javaContainer\":\"TOMCAT\",\"javaContainerVersion\":\"8.0\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":\"production\",\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"ftpsState\":\"AllAllowed\"}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg3e881652d1326e0?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:60181b8d39682b63faf8a787fefe5eb83eccbe9ae8498e49be8efaa0d205d067 Java:1.8.0_172 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 12 Jul 2018 06:20:39 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23bb3fca-9f57-426e-8816-afa0c5324b71", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180712T062040Z:23bb3fca-9f57-426e-8816-afa0c5324b71", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzNFODgxNjUyRDEzMjZFMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "cache-control" : "no-cache", - "x-ms-request-id" : "23bb3fca-9f57-426e-8816-afa0c5324b71", - "Body" : "" - } - } ], - "variables" : [ "rg3e881652d1326e0", "webapp1-46e7983461", "webapp2-c01168227d", "webapp3-41351100e1", "af86933e-e958-4d40-b117-011ddd006b90", "f47992e1-f7ef-4215-9406-a66342ce7fc1", "webapp1-46e7983461plan4eb048576", "853e9c6a-5171-47a9-a678-d1f38b874dbc", "c9a61bd5-1683-4442-8bd3-e43057a10bc9", "bd3b8087-e710-447f-bbfb-5995f64620d9", "bf19ea7c-a8c8-4827-bdff-72ad346ced45", "f87e0248-7568-41c5-a1ff-696ac0e66224", "d22c4d2a-dfdf-4616-9ed7-8ec34d36be14", "4dae60cd-18ab-4282-ab10-f2fa7233619d", "6a207838-6598-4259-9143-78cc0ad7cb84", "webapp2-c01168227dplan0fe114781", "be6fefb4-3dd3-4090-962d-49d343c45b43", "78bfd902-c750-4bfb-88ca-8d371a92fb60", "a6585c5f-97de-4c73-9dce-baac1de4e272", "2bc6ae57-1118-4668-b301-971107e3dd27", "c5769203-5e1c-4b69-b516-33c3d77a3276", "b86c9956-3e88-4bb1-b321-714be96ae148", "8505c8b0-0109-4ede-8961-4581e75c6e7f", "433dfcea-d376-4a6b-bd3e-29459779ff82", "webapp3-41351100e1plan1c9488766", "e4f37552-d789-4b14-a839-5b92655280d5", "299ce225-d130-46fd-bec8-966266fdbb48", "b07a84ec-11f2-4a9a-8e9c-feeadebe70cd", "57c77ea4-452d-4f04-a00d-984dd5f959aa", "f7c286c6-4326-487b-8374-a89dd048a1f9", "cf51d99b-57dc-4a2e-b19c-09535c96df6a", "ab437011-4361-4a2e-8e16-0f78137cc629", "ffe463e4-8167-4adb-9598-1c12d91a488f", "d05d8aa3-afaa-4e98-ae1a-f0f292b117f7", "de2e8d57-a27d-4e71-88a6-57135b4b355b", "a0a55fa0-7151-49c2-85e4-89b944ad0f18", "fed6ca3e-e602-4671-97ca-9ebadf896f18", "c951c7cf-9bf0-4fe6-b5ec-e92dccb2ec05", "d2e71e4f-e074-4b9f-b447-69a147dca289", "95220744-8529-48a4-82b4-068dc77097d0", "99015f71-cf73-4e73-a2b0-70d2d8a01b7f", "339ab4d4-e81b-4707-8064-626a88bad38b", "22bba999-0ce7-4aff-8811-9d6769114ec9", "5306e09f-9f8b-4cb6-87d7-96329a40d4fa", "1550aceb-ab2f-4fcd-9d1c-11e57b22351b", "818a5c16-aa0a-4a8d-8411-8007642ac55a", "7431d379-cde5-494a-b08e-1099a8f6b5da", "02f16161-3a4d-4583-b392-f82e8b1472e9", "53cf589d-cac2-42a0-bcd2-bf8aefc2ee26", "ee3a1bc8-d4ef-4bb5-be8c-385055958e60", "e2802600-b562-484a-8f76-f0bae689646c", "bec0c61c-7ab3-4dc0-bcf9-025f6d449be0", "239d9f2c-1932-40e9-9191-514cf7fcdbe2", "01e85bd6-133a-4073-a623-c6f521e409be", "e76040af-2a56-49bc-9365-9d45ba18955e", "4269dfbd-3b33-4717-ab76-f12ffd84f645", "f8ef8050-d0db-4ddd-9298-1108cb91594e", "b4ca2b8d-8857-4315-b707-17cf617574f0", "0f225815-8388-4016-9902-fcdd14235b3f", "80f51cc4-6ddc-4613-b15b-6628d7d60170", "24060b80-7d11-4bf4-982c-bf80b40ba3ad", "99c9678a-81f9-408a-9b0d-333d0806a0f0", "5781b581-c687-4e38-94a5-0842cd96c2fa", "2a1b83fc-9d32-447f-8e88-214fba803316", "02adbee0-f3e8-4dff-925c-7ed139d1161c", "67be88f0-3947-4022-a886-be059b6fb804", "03096a80-bd37-417c-ac47-4bca2aa8ce2f", "4c8d7943-3b7e-402e-a247-96351110de31", "12a9d6df-cea6-4d36-8c0c-85cb1737c576", "8d65e292-f7a0-4a2b-99a5-ea77bb166a1f", "a5078ea6-1e10-488d-a71f-e58e67706bcc" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSqlConnection.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSqlConnection.json deleted file mode 100644 index 481e16f0cb56..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/AppServiceSampleTests.testManageWebAppSqlConnection.json +++ /dev/null @@ -1,1074 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_6559694249ee?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:13 GMT", - "content-length" : "193", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54793810-62ed-4ba4-800e-91b3176a4ee5", - "x-ms-routing-request-id" : "WESTUS2:20180219T213814Z:54793810-62ed-4ba4-800e-91b3176a4ee5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "54793810-62ed-4ba4-800e-91b3176a4ee5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee\",\"name\":\"rg1nemv_6559694249ee\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:14 GMT", - "content-length" : "74", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce0f252a-6f74-4bfa-9b68-98ea74238e69", - "x-ms-routing-request-id" : "WESTUS2:20180219T213814Z:ce0f252a-6f74-4bfa-9b68-98ea74238e69", - "content-type" : "application/json; charset=utf-8", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverOperationResults/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "cache-control" : "no-cache", - "x-ms-request-id" : "a6d771e3-c9ea-49cf-bd16-2458c4c55e4e", - "Body" : "{\"operation\":\"UpsertLogicalServer\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14999", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79538e00-6d91-41f0-9a3b-5f3a0cefd8b3", - "x-ms-routing-request-id" : "WESTUS2:20180219T213815Z:79538e00-6d91-41f0-9a3b-5f3a0cefd8b3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4fd75beb-238f-41ec-ade9-41dec4003dc3", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14998", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca6dfdae-7985-4935-9eb1-335ced3c6a41", - "x-ms-routing-request-id" : "WESTUS2:20180219T213816Z:ca6dfdae-7985-4935-9eb1-335ced3c6a41", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d3001d2b-8740-4fa0-a71b-76ffc730fbf4", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0eddd33-200e-47cc-8162-ad857a59c914", - "x-ms-routing-request-id" : "WESTUS2:20180219T213817Z:d0eddd33-200e-47cc-8162-ad857a59c914", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f81b1dd5-a017-4363-a013-2ef8be976f2c", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7230ed98-fa19-4dba-9902-2c6d327c7017", - "x-ms-routing-request-id" : "WESTUS2:20180219T213818Z:7230ed98-fa19-4dba-9902-2c6d327c7017", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d09394f5-2b7e-46c0-8d95-4d0fda4b2b46", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61e40fb4-3e74-4e62-83a2-83141edecd7e", - "x-ms-routing-request-id" : "WESTUS2:20180219T213819Z:61e40fb4-3e74-4e62-83a2-83141edecd7e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2fa23560-6d87-462b-9dc9-3d8328a4df5a", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "35d73844-f745-4234-8a06-df3b3ffeed20", - "x-ms-routing-request-id" : "WESTUS2:20180219T213820Z:35d73844-f745-4234-8a06-df3b3ffeed20", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6ee57eea-50a9-426f-a643-3ba92a87a3da", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:38:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1582262c-c0c2-4a60-a5e4-61e4a393e6ee", - "x-ms-routing-request-id" : "WESTUS2:20180219T213841Z:1582262c-c0c2-4a60-a5e4-61e4a393e6ee", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5630e026-29f2-4e68-ad12-57d66cc42ede", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/a6d771e3-c9ea-49cf-bd16-2458c4c55e4e?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "107", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e17b8a7-5bb0-425a-a44f-3917d6452ffb", - "x-ms-routing-request-id" : "WESTUS2:20180219T213901Z:6e17b8a7-5bb0-425a-a44f-3917d6452ffb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2d9c367a-0aa4-447c-beec-a3ca2b911e76", - "Body" : "{\"name\":\"a6d771e3-c9ea-49cf-bd16-2458c4c55e4e\",\"status\":\"Succeeded\",\"startTime\":\"2018-02-19T21:38:14.297Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "404", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec42752b-2652-4c6e-be5b-6e57e78b7d7e", - "x-ms-routing-request-id" : "WESTUS2:20180219T213901Z:ec42752b-2652-4c6e-be5b-6e57e78b7d7e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d4fa379d-ec12-4f01-819d-1aa70b192b32", - "Body" : "{\"kind\":\"v12.0\",\"properties\":{\"administratorLogin\":\"jsdkadmin\",\"version\":\"12.0\",\"state\":\"Ready\",\"fullyQualifiedDomainName\":\"jsdkserver065209131.database.windows.net\"},\"location\":\"westus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131\",\"name\":\"jsdkserver065209131\",\"type\":\"Microsoft.Sql/servers\"}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/AllowAllWindowsAzureIps?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:01 GMT", - "content-length" : "367", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a365dfb2-1976-4780-9fb9-4a7a88e6a3ab", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T213902Z:a365dfb2-1976-4780-9fb9-4a7a88e6a3ab", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "ec80521a-5b5f-4f30-8128-1732c31bf391", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/AllowAllWindowsAzureIps\",\"name\":\"AllowAllWindowsAzureIps\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"0.0.0.0\",\"endIpAddress\":\"0.0.0.0\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:02 GMT", - "content-length" : "80", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "202", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b99eec9-5151-4ed0-a3ba-127ca1cb592d", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T213903Z:8b99eec9-5151-4ed0-a3ba-127ca1cb592d", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21/operationResults/db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8?api-version=2014-04-01-Preview", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1519076342870+0000)\\/\"}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21/azureAsyncOperation/db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21/azureAsyncOperation/db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8?api-version=2014-04-01-Preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "89", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e50d601-f693-446f-8d7f-c093ec079b9d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T213903Z:5e50d601-f693-446f-8d7f-c093ec079b9d", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "1e80e446-b636-47fe-8bf1-cd2d8c0e406b", - "Body" : "{\"operationId\":\"db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8\",\"status\":\"InProgress\",\"error\":null}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21/azureAsyncOperation/db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21/azureAsyncOperation/db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8?api-version=2014-04-01-Preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "88", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8bebfddc-c5a1-4282-9dcd-841ef6863038", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T213933Z:8bebfddc-c5a1-4282-9dcd-841ef6863038", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "36ce369a-544b-4196-9e57-2839ec95562e", - "Body" : "{\"operationId\":\"db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8\",\"status\":\"Succeeded\",\"error\":null}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21/azureAsyncOperation/db3ae0d9-a32b-41bc-b5f3-0c3c9cff24a8?api-version=2014-04-01-Preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "950", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c7bc94ec-3c60-466a-808d-39fb8b4fcc88", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T213933Z:c7bc94ec-3c60-466a-808d-39fb8b4fcc88", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "3b0b6bb8-51e0-47ea-83ac-cac6af079133", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/databases/jsdkdbb5d85486d21\",\"name\":\"jsdkdbb5d85486d21\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"West US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"8e6885ff-b8e2-403c-940c-e5973afc792a\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2018-02-19T21:39:03.323Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"East US\",\"earliestRestoreDate\":\"2018-02-19T22:09:30.59Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null,\"zoneRedundant\":false,\"isUpgradeRequested\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/serverfarms/webapp1-584185996eplan51c409592?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:41 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "1247", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e948c652-cfc1-49d9-830e-ac9a057bdf79", - "x-ms-routing-request-id" : "WESTUS2:20180219T213941Z:e948c652-cfc1-49d9-830e-ac9a057bdf79", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "5250c283-bf80-4e3d-977d-a701bf3c84c6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/serverfarms/webapp1-584185996eplan51c409592\",\"name\":\"webapp1-584185996eplan51c409592\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"serverFarmId\":0,\"name\":\"webapp1-584185996eplan51c409592\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rg1nemv_6559694249ee-WestUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":10,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"West US\",\"perSiteScaling\":false,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rg1nemv_6559694249ee\",\"reserved\":false,\"mdmId\":\"waws-prod-bay-031_28046\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\"},\"sku\":{\"name\":\"S1\",\"tier\":\"Standard\",\"size\":\"S1\",\"family\":\"S\",\"capacity\":1}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:47 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2782", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a51a21b-4fec-4604-983f-20dc38bf21f1", - "x-ms-routing-request-id" : "WESTUS2:20180219T213948Z:0a51a21b-4fec-4604-983f-20dc38bf21f1", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA283E3610\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d2ac1be8-048c-4593-86ea-4f832e5b9109", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"name\":\"webapp1-584185996e\",\"state\":\"Running\",\"hostNames\":[\"webapp1-584185996e.azurewebsites.net\"],\"webSpace\":\"rg1nemv_6559694249ee-WestUSwebspace\",\"selfLink\":\"https://waws-prod-bay-031.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg1nemv_6559694249ee-WestUSwebspace/sites/webapp1-584185996e\",\"repositorySiteName\":\"webapp1-584185996e\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-584185996e.azurewebsites.net\",\"webapp1-584185996e.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-584185996e.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-584185996e.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/serverfarms/webapp1-584185996eplan51c409592\",\"reserved\":false,\"lastModifiedTimeUtc\":\"2018-02-19T21:39:44.38\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":null,\"deploymentId\":\"webapp1-584185996e\",\"trafficManagerHostNames\":null,\"sku\":\"Standard\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"kind\":\"app\",\"outboundIpAddresses\":\"104.40.86.151,104.40.89.251,104.40.90.248,104.40.87.14\",\"possibleOutboundIpAddresses\":\"104.40.86.151,104.40.89.251,104.40.90.248,104.40.87.14\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bay-031\",\"cloningInfo\":null,\"snapshotInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg1nemv_6559694249ee\",\"defaultHostName\":\"webapp1-584185996e.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:56 GMT", - "content-length" : "469", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc55ae55-a95e-4740-bd75-53bbcbb7708c", - "x-ms-routing-request-id" : "WESTUS2:20180219T213956Z:bc55ae55-a95e-4740-bd75-53bbcbb7708c", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA2EE51790\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d37c544c-c9f9-4c4f-9c52-2ed46c68bd0a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:39:56 GMT", - "content-length" : "538", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ebf23619-957d-4973-b0f8-b3b16b2c8ff8", - "x-ms-routing-request-id" : "WESTUS2:20180219T213957Z:ebf23619-957d-4973-b0f8-b3b16b2c8ff8", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA2EE51790\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "fff8030c-1244-41b8-b64e-35c6a79aa387", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T21:39:55.6800000 Ensuring ScmType\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:40:27 GMT", - "content-length" : "635", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5cfe77e6-d1f7-489b-870c-3abeffcf9cf1", - "x-ms-routing-request-id" : "WESTUS2:20180219T214028Z:5cfe77e6-d1f7-489b-870c-3abeffcf9cf1", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA2EE51790\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "44590945-a95d-48ef-a0b2-678ea2671537", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T21:40:19.3832542 https://webapp1-584185996e.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-02-19_21-40-06Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:40:58 GMT", - "content-length" : "635", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9dae79e9-f0b3-463e-ba37-b157deaea641", - "x-ms-routing-request-id" : "WESTUS2:20180219T214059Z:9dae79e9-f0b3-463e-ba37-b157deaea641", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA2EE51790\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "360c0222-9538-4634-9e80-422f3b26d997", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T21:40:50.0331680 https://webapp1-584185996e.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-02-19_21-40-06Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:41:28 GMT", - "content-length" : "635", - "server" : "Microsoft-IIS/10.0", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "893ff03a-a8dd-418c-8f52-8509ddfa667d", - "x-ms-routing-request-id" : "WESTUS2:20180219T214129Z:893ff03a-a8dd-418c-8f52-8509ddfa667d", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA2EE51790\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "dfdbebd2-f600-40fb-8e60-394ab1904610", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2018-02-19T21:41:20.8696508 https://webapp1-584185996e.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2018-02-19_21-40-06Z\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:41:59 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "468", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a91b468e-c2ef-4fb2-ab4a-a9e763c64821", - "x-ms-routing-request-id" : "WESTUS2:20180219T214159Z:a91b468e-c2ef-4fb2-ab4a-a9e763c64821", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA2EE51790\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "819f9aa9-d090-4625-9b03-e9037c1ef094", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/sourcecontrols/web\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/ProjectNami/projectnami\",\"branch\":\"master\",\"isManualIntegration\":true,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/web?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:30 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "2363", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5f531fd-6058-4428-b3d4-e7346182f964", - "x-ms-routing-request-id" : "WESTUS2:20180219T214231Z:e5f531fd-6058-4428-b3d4-e7346182f964", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA8ACD3AB0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "72bb9948-f3b3-4ab5-af22-231b1abdb9af", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e\",\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"linuxFxVersion\":\"\",\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-584185996e\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"ExternalGit\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"googleClientId\":null,\"googleClientSecret\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"ipSecurityRestrictions\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/appsettings/list?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:31 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "306", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99cb3e6a-017d-4a88-8ccc-2a0591824c5a", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "WESTUS2:20180219T214231Z:99cb3e6a-017d-4a88-8ccc-2a0591824c5a", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "86c9d2d4-3781-4487-a419-6a714f7e95ad", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/appsettings?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "482", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3ee6075b-1265-4426-8ad8-3a31e1fd1d7f", - "x-ms-routing-request-id" : "WESTUS2:20180219T214232Z:3ee6075b-1265-4426-8ad8-3a31e1fd1d7f", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA8BB6B050\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "0f66945a-a127-4238-acae-edb6e9fa5922", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\",\"ProjectNami.DBName\":\"jsdkdbb5d85486d21\",\"ProjectNami.DBHost\":\"jsdkserver065209131.database.windows.net\",\"ProjectNami.DBPass\":\"StrongPass!123\",\"ProjectNami.DBUser\":\"jsdkadmin\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/hostNameBindings?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "458", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a298985f-c1e3-4745-9e50-a1cbdd38fc55", - "x-ms-routing-request-id" : "WESTUS2:20180219T214233Z:a298985f-c1e3-4745-9e50-a1cbdd38fc55", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "etag" : "\"1D3A9CA8BB6B050\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "f7559caa-10f1-4afc-9c22-f16b94df3eca", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/hostNameBindings/webapp1-584185996e.azurewebsites.net\",\"name\":\"webapp1-584185996e/webapp1-584185996e.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US\",\"properties\":{\"siteName\":\"webapp1-584185996e\",\"domainId\":null,\"hostNameType\":\"Verified\"}}],\"nextLink\":null,\"id\":null}" - } - }, { - "Method" : "POST", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/appsettings/list?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "482", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "90f33097-47fd-49f0-a50e-65621bfadea6", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "x-ms-routing-request-id" : "WESTUS2:20180219T214233Z:90f33097-47fd-49f0-a50e-65621bfadea6", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "74b557d7-a922-4d90-8415-7c7156901860", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\",\"ProjectNami.DBName\":\"jsdkdbb5d85486d21\",\"ProjectNami.DBHost\":\"jsdkserver065209131.database.windows.net\",\"ProjectNami.DBPass\":\"StrongPass!123\",\"ProjectNami.DBUser\":\"jsdkadmin\"}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/slotConfigNames?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:33 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a2750e7-0c9b-403c-8237-9f6274bf66eb", - "x-ms-routing-request-id" : "WESTUS2:20180219T214234Z:0a2750e7-0c9b-403c-8237-9f6274bf66eb", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "3153ae45-e573-4abf-afaa-0cddfc089bff", - "Body" : "{\"id\":null,\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "POST", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/connectionstrings/list?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "280", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6db05eaf-f3a7-40e7-ae4c-68e8a064ba13", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "x-ms-routing-request-id" : "WESTUS2:20180219T214234Z:6db05eaf-f3a7-40e7-ae4c-68e8a064ba13", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c16831d3-7ade-4c9e-8e86-4b16911bfa49", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US\",\"tags\":{},\"properties\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Web/sites/webapp1-584185996e/config/slotConfigNames?api-version=2016-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (WebSiteManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:34 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "166", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-aspnet-version" : "4.0.30319", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "606ad210-eab0-4cf1-b359-04f0ac7295eb", - "x-ms-routing-request-id" : "WESTUS2:20180219T214234Z:606ad210-eab0-4cf1-b359-04f0ac7295eb", - "x-powered-by" : "ASP.NET", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "f14d8e36-b1bc-4a97-8779-733fafe56b13", - "Body" : "{\"id\":null,\"name\":\"webapp1-584185996e\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:34 GMT", - "content-length" : "74", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6d68446b-b4c3-4ca1-b70a-d5fe7db79422", - "x-ms-routing-request-id" : "WESTUS2:20180219T214235Z:6d68446b-b4c3-4ca1-b70a-d5fe7db79422", - "content-type" : "application/json; charset=utf-8", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverOperationResults/6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a?api-version=2015-05-01-preview", - "cache-control" : "no-cache", - "x-ms-request-id" : "6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a", - "Body" : "{\"operation\":\"UpsertLogicalServer\",\"startTime\":\"2018-02-19T21:42:34.843Z\"}", - "azure-asyncoperation" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a?api-version=2015-05-01-preview" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "108", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fcb07d75-b328-4599-8577-b105f34bd23c", - "x-ms-routing-request-id" : "WESTUS2:20180219T214235Z:fcb07d75-b328-4599-8577-b105f34bd23c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8781845e-ac8d-4520-b095-c066b661fa91", - "Body" : "{\"name\":\"6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a\",\"status\":\"InProgress\",\"startTime\":\"2018-02-19T21:42:34.843Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "107", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "795c261e-299c-4e15-94e3-835809515818", - "x-ms-routing-request-id" : "WESTUS2:20180219T214236Z:795c261e-299c-4e15-94e3-835809515818", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cc2ad114-9246-4b7a-b899-009eeaa80cc2", - "Body" : "{\"name\":\"6a17d19f-d757-47cd-9aeb-9b1b2a25ac7a\",\"status\":\"Succeeded\",\"startTime\":\"2018-02-19T21:42:34.843Z\"}" - } - }, { - "Method" : "GET", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131?api-version=2015-05-01-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "404", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca945c2f-c604-4ec3-823e-6590e819a7ab", - "x-ms-routing-request-id" : "WESTUS2:20180219T214236Z:ca945c2f-c604-4ec3-823e-6590e819a7ab", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "30031ac9-b9ef-4c35-a93d-4af629a0722b", - "Body" : "{\"kind\":\"v12.0\",\"properties\":{\"administratorLogin\":\"jsdkadmin\",\"version\":\"12.0\",\"state\":\"Ready\",\"fullyQualifiedDomainName\":\"jsdkserver065209131.database.windows.net\"},\"location\":\"westus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131\",\"name\":\"jsdkserver065209131\",\"type\":\"Microsoft.Sql/servers\"}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_43269?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:37 GMT", - "content-length" : "361", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "830db9f3-e43e-445f-aec2-f31b00dabaf5", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T214237Z:830db9f3-e43e-445f-aec2-f31b00dabaf5", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "9e23f560-d991-4265-ad5b-6c69f9b8b2cd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_43269\",\"name\":\"firewall_43269\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"104.40.90.248\",\"endIpAddress\":\"104.40.90.248\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_34438?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:37 GMT", - "content-length" : "359", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1dec809-7ba9-4fc1-9ba2-8b7886396581", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T214238Z:f1dec809-7ba9-4fc1-9ba2-8b7886396581", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "53f7fde7-f102-470e-ab3f-ad524a5b5627", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_34438\",\"name\":\"firewall_34438\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"104.40.87.14\",\"endIpAddress\":\"104.40.87.14\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_96546?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:38 GMT", - "content-length" : "361", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0f299c2f-13a6-47b8-ba92-508cc7a040c1", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T214239Z:0f299c2f-13a6-47b8-ba92-508cc7a040c1", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "b0757927-39f2-4e30-894b-dde96790cf43", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_96546\",\"name\":\"firewall_96546\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"104.40.86.151\",\"endIpAddress\":\"104.40.86.151\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_51886?api-version=2014-04-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (SqlManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:42:40 GMT", - "content-length" : "361", - "server" : "Microsoft-HTTPAPI/2.0", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "retry-after" : "0", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b09a55ef-702b-4a7f-9f08-f047ffe49fc9", - "preference-applied" : "return-content", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "WESTUS2:20180219T214240Z:b09a55ef-702b-4a7f-9f08-f047ffe49fc9", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "cache-control" : "no-store, no-cache", - "dataserviceversion" : "3.0;", - "x-ms-request-id" : "8b7b6f17-f68f-4bd0-ba6a-6ce7e8865e3b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1nemv_6559694249ee/providers/Microsoft.Sql/servers/jsdkserver065209131/firewallRules/firewall_51886\",\"name\":\"firewall_51886\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"104.40.89.251\",\"endIpAddress\":\"104.40.89.251\"}}" - } - }, { - "Method" : "DELETE", - "Uri" : "null/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1nemv_6559694249ee?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/10.13.3 MacAddressHash:c47051c66801a0ac3d4aa18627b9114205ef95fbf5f19bb8a8fac72c233e9d27 Java:1.8.0_102 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 19 Feb 2018 21:47:41 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc599a25-5958-44e9-9f23-76e18f62e5ee", - "x-ms-routing-request-id" : "WESTUS2:20180219T214741Z:fc599a25-5958-44e9-9f23-76e18f62e5ee", - "location" : "null/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzFORU1WOjVGNjU1OTY5NDI0OUVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10", - "cache-control" : "no-cache", - "x-ms-request-id" : "fc599a25-5958-44e9-9f23-76e18f62e5ee", - "Body" : "" - } - } ], - "variables" : [ "webapp1-584185996e", "jsdkserver065209131", "jsdkdbb5d85486d21", "rg1nemv_6559694249ee", "64607f5b-f1e1-472e-bf24-c65b230d0246", "3e2bb4e2-e063-4d78-8d8d-5387f5541edc", "a86eb4b0-ce83-4e7d-8693-3862c39e4bd6", "968573c9-5cd1-4f93-a6b2-20fefd5f0bd5", "c36578a9-8aa6-482e-8735-dd25dbb89a15", "webapp1-584185996eplan51c409592", "d5bbea78-b236-421a-826a-06e341eb7ca0", "e1c2982c-3818-4971-834d-ac9e585940cc", "624b49d3-9daf-460e-8e0e-80298423247b", "b0eb205b-9896-4bbd-adc6-05cd96f8433f", "26c86ad5-89ad-44e6-9beb-f9a804390802", "ea0cff6a-a070-49eb-8606-065bfe964d02", "a13aa16d-9cf4-48c2-b9c6-c396a2370427", "firewall_96546", "bc548280-b95b-4e08-ab32-8f58833ee648", "firewall_51886", "c45556d7-90ae-4edc-89d9-1dcb0c65a26f", "firewall_43269", "050cb726-c9da-4680-ba95-96e869c6ea45", "firewall_34438", "1d5ca58d-edaa-4273-a4e6-6210eac8b59c" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CdnSampleTests.testManageCdnProfileWithCustomDomain.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CdnSampleTests.testManageCdnProfileWithCustomDomain.json deleted file mode 100644 index 2dca6488d92e..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/CdnSampleTests.testManageCdnProfileWithCustomDomain.json +++ /dev/null @@ -1,942 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "e6dde493-7a07-4658-80e9-c46609c4d8c0", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Wed, 29 Mar 2023 07:02:22 GMT", - "x-ms-correlation-request-id" : "a997e1b8-a171-4ed3-91a1-509752847dff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070222Z:a997e1b8-a171-4ed3-91a1-509752847dff", - "Expires" : "-1", - "Content-Length" : "231", - "x-ms-request-id" : "a997e1b8-a171-4ed3-91a1-509752847dff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490\",\"name\":\"rgnemv7615249d490\",\"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/rgnemv7615249d490/providers/Microsoft.Network/dnsZones/jsdkcdn536824.com?api-version=2018-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.dns/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "ccb24c11-5d1a-42a5-9a48-49ebbede6a73", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Wed, 29 Mar 2023 07:02:43 GMT", - "x-ms-correlation-request-id" : "90e8c009-5b1d-44c2-8fa0-52cec6e927ed", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "Cache-Control" : "private", - "ETag" : "ca4ab453-87f7-4478-b3d1-67dfdb64bf94", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070243Z:90e8c009-5b1d-44c2-8fa0-52cec6e927ed", - "Content-Length" : "535", - "x-ms-request-id" : "ccb24c11-5d1a-42a5-9a48-49ebbede6a73", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv7615249d490\\/providers\\/Microsoft.Network\\/dnszones\\/jsdkcdn536824.com\",\"name\":\"jsdkcdn536824.com\",\"type\":\"Microsoft.Network\\/dnszones\",\"etag\":\"ca4ab453-87f7-4478-b3d1-67dfdb64bf94\",\"location\":\"global\",\"tags\":{},\"properties\":{\"maxNumberOfRecordSets\":10000,\"maxNumberOfRecordsPerRecordSet\":null,\"nameServers\":[\"ns1-03.azure-dns.com.\",\"ns2-03.azure-dns.net.\",\"ns3-03.azure-dns.org.\",\"ns4-03.azure-dns.info.\"],\"numberOfRecordSets\":2,\"zoneType\":\"Public\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DomainRegistration/topLevelDomains/com/listAgreements?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "4ee622a2-4d5f-4475-bc29-127a47bdc8b0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:02:44 GMT", - "x-ms-correlation-request-id" : "e05bf84a-458e-4774-b84e-d0b4c8dc5627", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070244Z:e05bf84a-458e-4774-b84e-d0b4c8dc5627", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "93389", - "x-ms-request-id" : "4722ccc8-3eb7-41fa-b024-3225bba309a6", - "Body" : "{\"value\":[{\"agreementKey\":\"DNRA\",\"title\":\"Domain Registration Agreement\",\"content\":\"\\n\\n\\n\\n\",\"url\":\"REDACTED\"}],\"nextLink\":null,\"id\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.DomainRegistration/domains/jsdkcdn536824.com?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "5e3b642b-106f-4921-b2d2-04b3b4503949", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Wed, 29 Mar 2023 07:02:55 GMT", - "x-ms-correlation-request-id" : "55d46ad3-8dfd-4daf-b6e3-8e61011a3220", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070256Z:55d46ad3-8dfd-4daf-b6e3-8e61011a3220", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "55d46ad3-8dfd-4daf-b6e3-8e61011a3220", - "X-Powered-By" : "ASP.NET", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.DomainRegistration/domains/jsdkcdn536824.com/operationresults/599a8a72-5dbd-4d7c-8449-e95290e8d72a?api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.DomainRegistration/domains/jsdkcdn536824.com/operationresults/599a8a72-5dbd-4d7c-8449-e95290e8d72a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "84f42423-464b-4330-9afc-1d94ffd3c048" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7670899-edc7-4f55-816d-aa1f7eab4590", - "Date" : "Wed, 29 Mar 2023 07:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070421Z:e7670899-edc7-4f55-816d-aa1f7eab4590", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "851", - "x-ms-request-id" : "8da2eeda-c263-45e1-9ff7-b675136e5223", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.DomainRegistration/domains/jsdkcdn536824.com\",\"name\":\"jsdkcdn536824.com\",\"type\":\"Microsoft.DomainRegistration/domains\",\"location\":\"global\",\"tags\":{},\"properties\":{\"registrationStatus\":\"Active\",\"provisioningState\":\"Succeeded\",\"nameServers\":[\"ns1-03.azure-dns.com\",\"ns2-03.azure-dns.net\",\"ns3-03.azure-dns.org\",\"ns4-03.azure-dns.info\"],\"privacy\":true,\"createdTime\":\"2023-03-29T02:03:05\",\"expirationTime\":\"2024-03-29T02:03:05\",\"autoRenew\":false,\"readyForDnsRecordManagement\":true,\"managedHostNames\":[],\"domainNotRenewableReasons\":[\"ExpirationNotInRenewalTimeRange\"],\"dnsType\":\"AzureDns\",\"dnsZoneId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Network/dnszones/jsdkcdn536824.com\"}}", - "Content-Type" : "application/json", - "X-Powered-By" : "ASP.NET" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Network/dnsZones/jsdkcdn536824.com?api-version=2018-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.dns/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "d1564877-0a3e-450d-bb23-d66181b626ee", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:04:36 GMT", - "x-ms-correlation-request-id" : "1cea58e1-ab34-45ef-afda-1de0b362b8ff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "Cache-Control" : "private", - "ETag" : "cbadd91a-896e-4aed-8b2b-4cc6fd0bdc2a", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070437Z:1cea58e1-ab34-45ef-afda-1de0b362b8ff", - "Content-Length" : "535", - "x-ms-request-id" : "d1564877-0a3e-450d-bb23-d66181b626ee", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv7615249d490\\/providers\\/Microsoft.Network\\/dnszones\\/jsdkcdn536824.com\",\"name\":\"jsdkcdn536824.com\",\"type\":\"Microsoft.Network\\/dnszones\",\"etag\":\"cbadd91a-896e-4aed-8b2b-4cc6fd0bdc2a\",\"location\":\"global\",\"tags\":{},\"properties\":{\"maxNumberOfRecordSets\":10000,\"maxNumberOfRecordsPerRecordSet\":null,\"nameServers\":[\"ns1-03.azure-dns.com.\",\"ns2-03.azure-dns.net.\",\"ns3-03.azure-dns.org.\",\"ns4-03.azure-dns.info.\"],\"numberOfRecordSets\":2,\"zoneType\":\"Public\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Network/dnsZones/jsdkcdn536824.com?api-version=2018-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.dns/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "d870d399-570a-4a1a-b600-b724ba8e0fb2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:04:52 GMT", - "x-ms-correlation-request-id" : "80ada9c4-a449-48da-b886-bd12fb33c692", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "Cache-Control" : "private", - "ETag" : "c20b70d0-6a29-46f3-9996-52b1750c9f26", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070453Z:80ada9c4-a449-48da-b886-bd12fb33c692", - "Content-Length" : "535", - "x-ms-request-id" : "d870d399-570a-4a1a-b600-b724ba8e0fb2", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv7615249d490\\/providers\\/Microsoft.Network\\/dnszones\\/jsdkcdn536824.com\",\"name\":\"jsdkcdn536824.com\",\"type\":\"Microsoft.Network\\/dnszones\",\"etag\":\"c20b70d0-6a29-46f3-9996-52b1750c9f26\",\"location\":\"global\",\"tags\":{},\"properties\":{\"maxNumberOfRecordSets\":10000,\"maxNumberOfRecordsPerRecordSet\":null,\"nameServers\":[\"ns1-03.azure-dns.com.\",\"ns2-03.azure-dns.net.\",\"ns3-03.azure-dns.org.\",\"ns4-03.azure-dns.info.\"],\"numberOfRecordSets\":2,\"zoneType\":\"Public\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Network/dnsZones/jsdkcdn536824.com/CNAME/sample?api-version=2018-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.dns/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "845431bd-057f-4e89-9467-918913bb6733", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Wed, 29 Mar 2023 07:04:53 GMT", - "x-ms-correlation-request-id" : "03ebb2af-05f5-4281-8991-b2296c364898", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "Cache-Control" : "private", - "ETag" : "580c21cb-6809-43fe-9199-0233bf522d7a", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070454Z:03ebb2af-05f5-4281-8991-b2296c364898", - "Content-Length" : "449", - "x-ms-request-id" : "845431bd-057f-4e89-9467-918913bb6733", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv7615249d490\\/providers\\/Microsoft.Network\\/dnszones\\/jsdkcdn536824.com\\/CNAME\\/sample\",\"name\":\"sample\",\"type\":\"Microsoft.Network\\/dnszones\\/CNAME\",\"etag\":\"580c21cb-6809-43fe-9199-0233bf522d7a\",\"properties\":{\"fqdn\":\"sample.jsdkcdn536824.com.\",\"TTL\":3600,\"CNAMERecord\":{\"cname\":\"jsdkcdne11824a11e5.azureedge.net\"},\"targetResource\":{},\"provisioningState\":\"Succeeded\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "d7c82b53-b7e5-41f8-881a-aaa27e32855f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "201", - "Date" : "Wed, 29 Mar 2023 07:04:59 GMT", - "x-ms-correlation-request-id" : "0b09a35b-1183-47c4-aa93-a25973f33f82", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "24", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070459Z:0b09a35b-1183-47c4-aa93-a25973f33f82", - "Expires" : "-1", - "Content-Length" : "357", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/0accde07-3b2b-4084-a16d-f0aa798517e7?api-version=2021-06-01", - "x-ms-request-id" : "19d3aadf-3d5f-4736-a501-32a79c8c6e2b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa\",\"type\":\"Microsoft.Cdn/profiles\",\"name\":\"jsdkcdnp48268dd4fa\",\"location\":\"WestUs\",\"kind\":\"cdn\",\"tags\":{},\"sku\":{\"name\":\"Standard_Microsoft\"},\"properties\":{\"resourceState\":\"Creating\",\"provisioningState\":\"Creating\"}}", - "x-ms-client-request-id" : "d7c82b53-b7e5-41f8-881a-aaa27e32855f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/0accde07-3b2b-4084-a16d-f0aa798517e7?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "984f27ae-2775-4b41-889c-1a30d064598a" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "499ffe38-eefb-4f04-b8a1-ba9700d7277c", - "Date" : "Wed, 29 Mar 2023 07:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070510Z:499ffe38-eefb-4f04-b8a1-ba9700d7277c", - "Expires" : "-1", - "Content-Length" : "62", - "x-ms-request-id" : "9cdcf7d1-f26b-4028-9e7d-06300a6a5a2a", - "Body" : "{\"status\":\"InProgress\",\"error\":{\"code\":\"None\",\"message\":null}}", - "x-ms-client-request-id" : "984f27ae-2775-4b41-889c-1a30d064598a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/0accde07-3b2b-4084-a16d-f0aa798517e7?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "77f85dd1-cab3-4900-bc53-e3cac48c6ac3" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a6e6310-c916-4498-9c2d-7fe9d2021c16", - "Date" : "Wed, 29 Mar 2023 07:05:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070541Z:6a6e6310-c916-4498-9c2d-7fe9d2021c16", - "Expires" : "-1", - "Content-Length" : "61", - "x-ms-request-id" : "b9dac2e3-08bf-406f-bd1b-c5a1d38bd6d0", - "Body" : "{\"status\":\"Succeeded\",\"error\":{\"code\":\"None\",\"message\":null}}", - "x-ms-client-request-id" : "77f85dd1-cab3-4900-bc53-e3cac48c6ac3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "8dcb7e57-4992-4b4c-80d7-30fbe6ef8088" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd990f37-3967-4d5e-902f-5d25ada98204", - "Date" : "Wed, 29 Mar 2023 07:05:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "49", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070542Z:cd990f37-3967-4d5e-902f-5d25ada98204", - "Expires" : "-1", - "Content-Length" : "356", - "x-ms-request-id" : "eb9ce7c3-9b33-41f9-a42d-91c17ab61267", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa\",\"type\":\"Microsoft.Cdn/profiles\",\"name\":\"jsdkcdnp48268dd4fa\",\"location\":\"WestUs\",\"kind\":\"cdn\",\"tags\":{},\"sku\":{\"name\":\"Standard_Microsoft\"},\"properties\":{\"resourceState\":\"Active\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "8dcb7e57-4992-4b4c-80d7-30fbe6ef8088", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "c42f0e4e-70d5-4e6a-be5c-802b4908a846", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:05:45 GMT", - "x-ms-correlation-request-id" : "3ca3aa12-7639-4849-bcbe-5910e75accc7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "23", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070545Z:3ca3aa12-7639-4849-bcbe-5910e75accc7", - "Expires" : "-1", - "Content-Length" : "356", - "x-ms-request-id" : "a63430f1-127d-4a7f-8548-867c46a9d9b7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa\",\"type\":\"Microsoft.Cdn/profiles\",\"name\":\"jsdkcdnp48268dd4fa\",\"location\":\"WestUs\",\"kind\":\"cdn\",\"tags\":{},\"sku\":{\"name\":\"Standard_Microsoft\"},\"properties\":{\"resourceState\":\"Active\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "c42f0e4e-70d5-4e6a-be5c-802b4908a846", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "5e7a5704-7698-4eac-9dea-d8425478be12", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "201", - "Date" : "Wed, 29 Mar 2023 07:05:54 GMT", - "x-ms-correlation-request-id" : "d086d0db-a19d-4030-91cd-1858ac0e3fa5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "99", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070554Z:d086d0db-a19d-4030-91cd-1858ac0e3fa5", - "Expires" : "-1", - "Content-Length" : "1108", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/8ae094db-eca8-49f6-bfbb-864fb97c5454?api-version=2021-06-01", - "x-ms-request-id" : "8f09f3a7-b628-4fa1-9773-19baba7ff3a2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"name\":\"jsdkcdne11824a11e5\",\"location\":\"WestUs\",\"tags\":{},\"properties\":{\"hostName\":\"jsdkcdne11824a11e5.azureedge.net\",\"originHostHeader\":null,\"originPath\":null,\"contentTypesToCompress\":[],\"isCompressionEnabled\":false,\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"optimizationType\":null,\"probePath\":null,\"origins\":[{\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null}}],\"originGroups\":[],\"defaultOriginGroup\":null,\"customDomains\":[],\"geoFilters\":[],\"deliveryPolicy\":null,\"urlSigningKeys\":null,\"webApplicationFirewallPolicyLink\":null,\"resourceState\":\"Creating\",\"provisioningState\":\"Creating\"}}", - "x-ms-client-request-id" : "5e7a5704-7698-4eac-9dea-d8425478be12", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/8ae094db-eca8-49f6-bfbb-864fb97c5454?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "a305be8a-9452-4c87-b25a-a85cf727c1c1" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d2e98ff-4761-4c89-97a7-46f1417ac148", - "Date" : "Wed, 29 Mar 2023 07:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070605Z:9d2e98ff-4761-4c89-97a7-46f1417ac148", - "Expires" : "-1", - "Content-Length" : "62", - "x-ms-request-id" : "b998343c-04fb-4a5a-bc11-7f1e96a0c8b3", - "Body" : "{\"status\":\"InProgress\",\"error\":{\"code\":\"None\",\"message\":null}}", - "x-ms-client-request-id" : "a305be8a-9452-4c87-b25a-a85cf727c1c1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/8ae094db-eca8-49f6-bfbb-864fb97c5454?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "7bfa6ff0-852d-467a-9f72-7d69b23e5fc0" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9df9aef-3688-44f0-a267-927dfd104365", - "Date" : "Wed, 29 Mar 2023 07:06:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070636Z:b9df9aef-3688-44f0-a267-927dfd104365", - "Expires" : "-1", - "Content-Length" : "61", - "x-ms-request-id" : "ed6850f6-f2ea-4c3b-91b8-7388a76afee5", - "Body" : "{\"status\":\"Succeeded\",\"error\":{\"code\":\"None\",\"message\":null}}", - "x-ms-client-request-id" : "7bfa6ff0-852d-467a-9f72-7d69b23e5fc0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "c9bfd095-3928-4620-8b3b-6b00b4e925f2" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e74b4b0-145e-47fd-a7d6-2ce86b04df68", - "Date" : "Wed, 29 Mar 2023 07:06:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "49", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070637Z:5e74b4b0-145e-47fd-a7d6-2ce86b04df68", - "Expires" : "-1", - "Content-Length" : "1108", - "x-ms-request-id" : "9facfd15-9858-4e7a-8914-b1d03f9e84a0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"name\":\"jsdkcdne11824a11e5\",\"location\":\"WestUs\",\"tags\":{},\"properties\":{\"hostName\":\"jsdkcdne11824a11e5.azureedge.net\",\"originHostHeader\":null,\"originPath\":null,\"contentTypesToCompress\":[],\"isCompressionEnabled\":false,\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"optimizationType\":null,\"probePath\":null,\"origins\":[{\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null}}],\"originGroups\":[],\"defaultOriginGroup\":null,\"customDomains\":[],\"geoFilters\":[],\"deliveryPolicy\":null,\"urlSigningKeys\":null,\"webApplicationFirewallPolicyLink\":null,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "c9bfd095-3928-4620-8b3b-6b00b4e925f2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customDomains?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "61a04bcc-91f5-4123-8e3c-f349f453173e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:37 GMT", - "x-ms-correlation-request-id" : "4bcee9c8-baad-49dd-b4b3-dd56450bccee", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070638Z:4bcee9c8-baad-49dd-b4b3-dd56450bccee", - "Expires" : "-1", - "Content-Length" : "12", - "x-ms-request-id" : "e91857f4-5236-479a-acc5-1b76cc37d6b1", - "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "61a04bcc-91f5-4123-8e3c-f349f453173e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "b66a4a0c-a636-499f-9a22-e1c1ba118fec", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:38 GMT", - "x-ms-correlation-request-id" : "06b47cdb-4e79-45ba-9b41-14a0225c8d5d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "49", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070638Z:06b47cdb-4e79-45ba-9b41-14a0225c8d5d", - "Expires" : "-1", - "Content-Length" : "356", - "x-ms-request-id" : "5f2500fd-0d8f-4ea1-a4cf-98a3d854c30b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa\",\"type\":\"Microsoft.Cdn/profiles\",\"name\":\"jsdkcdnp48268dd4fa\",\"location\":\"WestUs\",\"kind\":\"cdn\",\"tags\":{},\"sku\":{\"name\":\"Standard_Microsoft\"},\"properties\":{\"resourceState\":\"Active\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "b66a4a0c-a636-499f-9a22-e1c1ba118fec", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "06b1fd48-396f-45aa-885d-a9871894a1a3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:39 GMT", - "x-ms-correlation-request-id" : "18824714-7bc8-4ed3-a06d-e2b559f03291", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "49", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070639Z:18824714-7bc8-4ed3-a06d-e2b559f03291", - "Expires" : "-1", - "Content-Length" : "1120", - "x-ms-request-id" : "6f63cc8c-ec73-4e19-ae8e-481bb556fd41", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"name\":\"jsdkcdne11824a11e5\",\"location\":\"WestUs\",\"tags\":{},\"properties\":{\"hostName\":\"jsdkcdne11824a11e5.azureedge.net\",\"originHostHeader\":null,\"originPath\":null,\"contentTypesToCompress\":[],\"isCompressionEnabled\":false,\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"optimizationType\":null,\"probePath\":null,\"origins\":[{\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null}}],\"originGroups\":[],\"defaultOriginGroup\":null,\"customDomains\":[],\"geoFilters\":[],\"deliveryPolicy\":null,\"urlSigningKeys\":null,\"webApplicationFirewallPolicyLink\":null,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\"}}]}", - "x-ms-client-request-id" : "06b1fd48-396f-45aa-885d-a9871894a1a3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customDomains?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "83239540-d623-4812-94b8-0dbfa4134637", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:40 GMT", - "x-ms-correlation-request-id" : "33caecaa-76bd-4259-ad43-37d1fa8974fd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070640Z:33caecaa-76bd-4259-ad43-37d1fa8974fd", - "Expires" : "-1", - "Content-Length" : "12", - "x-ms-request-id" : "fc49a8d2-fe7e-43eb-aefd-4036a9e37ce4", - "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "83239540-d623-4812-94b8-0dbfa4134637", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "47bff62e-8e1d-4c67-b0d1-fd857ed0bb69", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:41 GMT", - "x-ms-correlation-request-id" : "975e6892-d7f2-4fe3-969b-e39bda37d6f2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "48", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070641Z:975e6892-d7f2-4fe3-969b-e39bda37d6f2", - "Expires" : "-1", - "Content-Length" : "1108", - "x-ms-request-id" : "9b2a0292-5dde-4978-9933-20c1f93a3453", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"name\":\"jsdkcdne11824a11e5\",\"location\":\"WestUs\",\"tags\":{},\"properties\":{\"hostName\":\"jsdkcdne11824a11e5.azureedge.net\",\"originHostHeader\":null,\"originPath\":null,\"contentTypesToCompress\":[],\"isCompressionEnabled\":false,\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"optimizationType\":null,\"probePath\":null,\"origins\":[{\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null}}],\"originGroups\":[],\"defaultOriginGroup\":null,\"customDomains\":[],\"geoFilters\":[],\"deliveryPolicy\":null,\"urlSigningKeys\":null,\"webApplicationFirewallPolicyLink\":null,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "47bff62e-8e1d-4c67-b0d1-fd857ed0bb69", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "07ab7f81-7a19-4316-9319-78b21391ce79", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:43 GMT", - "x-ms-correlation-request-id" : "ea7bf5db-05f3-4518-b89c-69c0afb764cb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "22", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070644Z:ea7bf5db-05f3-4518-b89c-69c0afb764cb", - "Expires" : "-1", - "Content-Length" : "356", - "x-ms-request-id" : "ed12579f-4d9f-4987-b529-867a36fb58cc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa\",\"type\":\"Microsoft.Cdn/profiles\",\"name\":\"jsdkcdnp48268dd4fa\",\"location\":\"WestUs\",\"kind\":\"cdn\",\"tags\":{},\"sku\":{\"name\":\"Standard_Microsoft\"},\"properties\":{\"resourceState\":\"Active\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "07ab7f81-7a19-4316-9319-78b21391ce79", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/origins/origin1?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "d58dcd57-2ae2-4051-a7f9-1399fd327003", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:46 GMT", - "x-ms-correlation-request-id" : "75cab46e-43e2-4595-969e-074291d2782e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070647Z:75cab46e-43e2-4595-969e-074291d2782e", - "Expires" : "-1", - "Content-Length" : "603", - "x-ms-request-id" : "486ce8d7-5965-4342-bfa5-cca0156899d7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/origins/origin1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"resourceState\":\"Active\",\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null,\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "d58dcd57-2ae2-4051-a7f9-1399fd327003", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customDomains/customdomain36773425adb1448ae48f1?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "8b55c139-4b17-4f69-817c-fa7353d194cb", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "201", - "Date" : "Wed, 29 Mar 2023 07:06:48 GMT", - "x-ms-correlation-request-id" : "1d61c39b-ebb3-4372-b799-bbdf59daa849", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070649Z:1d61c39b-ebb3-4372-b799-bbdf59daa849", - "Expires" : "-1", - "Content-Length" : "566", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/57a5ecf8-19b6-4d87-841f-bdb3002f7da2?api-version=2021-06-01", - "x-ms-request-id" : "c3a9e27f-62bb-490e-a3bb-36af7186d484", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customdomains/customdomain36773425adb1448ae48f1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/customdomains\",\"name\":\"customdomain36773425adb1448ae48f1\",\"properties\":{\"hostName\":\"sample.jsdkcdn536824.com\",\"validationData\":null,\"resourceState\":\"Creating\",\"customHttpsProvisioningState\":\"Disabled\",\"customHttpsProvisioningSubstate\":\"None\",\"customHttpsParameters\":null,\"provisioningState\":\"Creating\"}}", - "x-ms-client-request-id" : "8b55c139-4b17-4f69-817c-fa7353d194cb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "d79be6a6-21f0-4d09-a0be-4b6d10ccee08", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:06:49 GMT", - "x-ms-correlation-request-id" : "974d30e5-c742-4a59-9c4d-2c32467fde7b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "99", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070649Z:974d30e5-c742-4a59-9c4d-2c32467fde7b", - "Expires" : "-1", - "Content-Length" : "1108", - "x-ms-request-id" : "93288d00-d99e-4d05-b16d-9887a57ebd13", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"name\":\"jsdkcdne11824a11e5\",\"location\":\"WestUs\",\"tags\":{},\"properties\":{\"hostName\":\"jsdkcdne11824a11e5.azureedge.net\",\"originHostHeader\":null,\"originPath\":null,\"contentTypesToCompress\":[],\"isCompressionEnabled\":false,\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"optimizationType\":null,\"probePath\":null,\"origins\":[{\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null}}],\"originGroups\":[],\"defaultOriginGroup\":null,\"customDomains\":[],\"geoFilters\":[],\"deliveryPolicy\":null,\"urlSigningKeys\":null,\"webApplicationFirewallPolicyLink\":null,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "d79be6a6-21f0-4d09-a0be-4b6d10ccee08", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/57a5ecf8-19b6-4d87-841f-bdb3002f7da2?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "780a4fa4-2b9f-4138-926c-3f13f08094f5" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd3367fa-2ed9-4351-8aa5-c0e16a91055c", - "Date" : "Wed, 29 Mar 2023 07:06:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070700Z:bd3367fa-2ed9-4351-8aa5-c0e16a91055c", - "Expires" : "-1", - "Content-Length" : "62", - "x-ms-request-id" : "ffebec5b-5a7b-4619-bd08-6c7b4fae97ec", - "Body" : "{\"status\":\"InProgress\",\"error\":{\"code\":\"None\",\"message\":null}}", - "x-ms-client-request-id" : "780a4fa4-2b9f-4138-926c-3f13f08094f5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/operationresults/57a5ecf8-19b6-4d87-841f-bdb3002f7da2?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "3887de99-5b77-479d-aef9-c01bd005d44e" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9454969-df38-45fb-a5bf-fd9ac45772ac", - "Date" : "Wed, 29 Mar 2023 07:07:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070731Z:d9454969-df38-45fb-a5bf-fd9ac45772ac", - "Expires" : "-1", - "Content-Length" : "61", - "x-ms-request-id" : "273d08c3-9a12-4280-95cf-b79b3c737366", - "Body" : "{\"status\":\"Succeeded\",\"error\":{\"code\":\"None\",\"message\":null}}", - "x-ms-client-request-id" : "3887de99-5b77-479d-aef9-c01bd005d44e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customDomains/customdomain36773425adb1448ae48f1?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "c091b6c5-26ce-480d-99a4-2629f7d70a2e" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "453ba6c0-6e42-4c21-98ad-697a78e0ccc2", - "Date" : "Wed, 29 Mar 2023 07:07:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070732Z:453ba6c0-6e42-4c21-98ad-697a78e0ccc2", - "Expires" : "-1", - "Content-Length" : "565", - "x-ms-request-id" : "bc3fc138-a474-4edf-bb54-71701326af0d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customdomains/customdomain36773425adb1448ae48f1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/customdomains\",\"name\":\"customdomain36773425adb1448ae48f1\",\"properties\":{\"hostName\":\"sample.jsdkcdn536824.com\",\"validationData\":null,\"resourceState\":\"Active\",\"customHttpsProvisioningState\":\"Disabled\",\"customHttpsProvisioningSubstate\":\"None\",\"customHttpsParameters\":null,\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "c091b6c5-26ce-480d-99a4-2629f7d70a2e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "8c7a0e3b-f3ca-4e7d-92d2-74e7ea044e93", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:07:32 GMT", - "x-ms-correlation-request-id" : "093aaaa5-078c-424e-8a94-e1dc038e572a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "48", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070733Z:093aaaa5-078c-424e-8a94-e1dc038e572a", - "Expires" : "-1", - "Content-Length" : "356", - "x-ms-request-id" : "4dc45bad-79c6-4243-9720-9aeb0e5987d7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa\",\"type\":\"Microsoft.Cdn/profiles\",\"name\":\"jsdkcdnp48268dd4fa\",\"location\":\"WestUs\",\"kind\":\"cdn\",\"tags\":{},\"sku\":{\"name\":\"Standard_Microsoft\"},\"properties\":{\"resourceState\":\"Active\",\"provisioningState\":\"Succeeded\"}}", - "x-ms-client-request-id" : "8c7a0e3b-f3ca-4e7d-92d2-74e7ea044e93", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "0750431c-f430-4a98-8e3e-320dd9caa987", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:07:34 GMT", - "x-ms-correlation-request-id" : "1bb633b8-1c75-4d9d-989e-71ae6ce864cd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "47", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070734Z:1bb633b8-1c75-4d9d-989e-71ae6ce864cd", - "Expires" : "-1", - "Content-Length" : "1239", - "x-ms-request-id" : "6a5ba45d-23a0-4522-b4c6-15ef29edc6aa", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"name\":\"jsdkcdne11824a11e5\",\"location\":\"WestUs\",\"tags\":{},\"properties\":{\"hostName\":\"jsdkcdne11824a11e5.azureedge.net\",\"originHostHeader\":null,\"originPath\":null,\"contentTypesToCompress\":[],\"isCompressionEnabled\":false,\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"optimizationType\":null,\"probePath\":null,\"origins\":[{\"name\":\"origin1\",\"properties\":{\"hostName\":\"www.someDomain.net\",\"httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\":1,\"weight\":1000,\"enabled\":true,\"privateLinkAlias\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null}}],\"originGroups\":[],\"defaultOriginGroup\":null,\"customDomains\":[{\"name\":\"customdomain36773425adb1448ae48f1\",\"properties\":{\"hostName\":\"sample.jsdkcdn536824.com\",\"validationData\":null}}],\"geoFilters\":[],\"deliveryPolicy\":null,\"urlSigningKeys\":null,\"webApplicationFirewallPolicyLink\":null,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\"}}]}", - "x-ms-client-request-id" : "0750431c-f430-4a98-8e3e-320dd9caa987", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customDomains?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "2ed27b79-f11c-48af-a115-3bd0775c3146", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:07:35 GMT", - "x-ms-correlation-request-id" : "6da71229-6714-478f-a2fa-7cd6011b76a6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070735Z:6da71229-6714-478f-a2fa-7cd6011b76a6", - "Expires" : "-1", - "Content-Length" : "577", - "x-ms-request-id" : "0a21bd0f-e91e-4191-a4fe-b52e2728c900", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customdomains/customdomain36773425adb1448ae48f1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/customdomains\",\"name\":\"customdomain36773425adb1448ae48f1\",\"properties\":{\"hostName\":\"sample.jsdkcdn536824.com\",\"validationData\":null,\"resourceState\":\"Active\",\"customHttpsProvisioningState\":\"Disabled\",\"customHttpsProvisioningSubstate\":\"None\",\"customHttpsParameters\":null,\"provisioningState\":\"Succeeded\"}}]}", - "x-ms-client-request-id" : "2ed27b79-f11c-48af-a115-3bd0775c3146", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customDomains?api-version=2021-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.cdn/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "f702edfa-07cc-45d4-876b-92b08a0e478b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Kestrel", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Wed, 29 Mar 2023 07:07:37 GMT", - "x-ms-correlation-request-id" : "798ee5d6-1a1e-4eb9-99a7-245bb4cbb16c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070737Z:798ee5d6-1a1e-4eb9-99a7-245bb4cbb16c", - "Expires" : "-1", - "Content-Length" : "577", - "x-ms-request-id" : "ced3a558-91c1-46dc-9086-60f5357b28fd", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490/providers/Microsoft.Cdn/profiles/jsdkcdnp48268dd4fa/endpoints/jsdkcdne11824a11e5/customdomains/customdomain36773425adb1448ae48f1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/customdomains\",\"name\":\"customdomain36773425adb1448ae48f1\",\"properties\":{\"hostName\":\"sample.jsdkcdn536824.com\",\"validationData\":null,\"resourceState\":\"Active\",\"customHttpsProvisioningState\":\"Disabled\",\"customHttpsProvisioningSubstate\":\"None\",\"customHttpsParameters\":null,\"provisioningState\":\"Succeeded\"}}]}", - "x-ms-client-request-id" : "f702edfa-07cc-45d4-876b-92b08a0e478b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv7615249d490?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.2.1)", - "x-ms-client-request-id" : "5ad2cd29-39b2-4a4d-ac6b-400241765d4d", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Wed, 29 Mar 2023 07:07:40 GMT", - "x-ms-correlation-request-id" : "9e3a48b3-c6b1-4e3e-839d-8eaca492c027", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "JAPANEAST:20230329T070740Z:9e3a48b3-c6b1-4e3e-839d-8eaca492c027", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "9e3a48b3-c6b1-4e3e-839d-8eaca492c027", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVY3NjE1MjQ5RDQ5MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2021-01-01" - }, - "Exception" : null - } ], - "variables" : [ "rgnemv7615249d490", "jsdkcdn536824", "jsdkcdnp48268dd4fa", "jsdkcdne11824a11e5", "customdomain36773425adb1448ae48f1" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCloneVirtualMachineToNewRegion.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCloneVirtualMachineToNewRegion.json deleted file mode 100644 index 7d6fe0eaa5be..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCloneVirtualMachineToNewRegion.json +++ /dev/null @@ -1,3560 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv8982334?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5bd80aad-4d47-4086-b35b-cb6934e60e08", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "ae7fd2cc-3a93-4976-aa42-612f4ee6507c", - "Date" : "Fri, 04 Nov 2022 03:55:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035501Z:ae7fd2cc-3a93-4976-aa42-612f4ee6507c", - "Expires" : "-1", - "x-ms-request-id" : "ae7fd2cc-3a93-4976-aa42-612f4ee6507c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334\",\"name\":\"rgcomv8982334\",\"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/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "03e3d2ae-32a3-4252-99a0-fd832895400a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1307", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "7ef7b24b-0ed7-4e9a-b8db-76e7d2f0665e", - "Date" : "Fri, 04 Nov 2022 03:55:06 GMT", - "x-ms-arm-service-request-id" : "8107d151-b620-450f-a0ed-9fe1f2f376fa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035506Z:7ef7b24b-0ed7-4e9a-b8db-76e7d2f0665e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f58bd3b2-411f-44e2-b1b9-2865ef4744ef?api-version=2023-02-01", - "x-ms-request-id" : "f58bd3b2-411f-44e2-b1b9-2865ef4744ef", - "Body" : "{\r\n \"name\": \"vnet948558054d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d\",\r\n \"etag\": \"W/\\\"e2575df6-9f19-4140-b3d4-dbd4c6e2ee83\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"80a61ace-fbec-4ef2-b599-e5d19d5698df\",\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/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e2575df6-9f19-4140-b3d4-dbd4c6e2ee83\\\"\",\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" : "03e3d2ae-32a3-4252-99a0-fd832895400a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/publicIPAddresses/pip7376921e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a1b42b50-f6ce-4d2e-8f3e-b3078d899489", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "cdbd2000-cb9f-4875-b74d-04e3a8a5854e", - "Date" : "Fri, 04 Nov 2022 03:55:06 GMT", - "x-ms-arm-service-request-id" : "86d790f1-e70b-4c36-957a-214e4c826968", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035506Z:cdbd2000-cb9f-4875-b74d-04e3a8a5854e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f0e49e30-e2ec-4961-9648-f1178ef2d35d?api-version=2023-02-01", - "x-ms-request-id" : "f0e49e30-e2ec-4961-9648-f1178ef2d35d", - "Body" : "{\r\n \"name\": \"pip7376921e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/publicIPAddresses/pip7376921e\",\r\n \"etag\": \"W/\\\"a6181f0f-b310-4bab-8c65-e9429ea06826\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9db76932-100d-4a3f-a7f5-ac935d6cb551\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip41129d46\",\r\n \"fqdn\": \"pip41129d46.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "a1b42b50-f6ce-4d2e-8f3e-b3078d899489", - "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/f0e49e30-e2ec-4961-9648-f1178ef2d35d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b9a89511-fa08-4d17-94b9-615f83d6809a" - }, - "Response" : { - "content-length" : "30", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "311d4ab4-2699-400c-825a-80c95753deeb", - "Date" : "Fri, 04 Nov 2022 03:55:07 GMT", - "x-ms-arm-service-request-id" : "abe0296b-d47d-4169-a42f-f86a4001a228", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035508Z:311d4ab4-2699-400c-825a-80c95753deeb", - "Expires" : "-1", - "x-ms-request-id" : "2f256e06-5961-4371-ba4f-4fd0a2ac1847", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "x-ms-client-request-id" : "b9a89511-fa08-4d17-94b9-615f83d6809a", - "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/f58bd3b2-411f-44e2-b1b9-2865ef4744ef?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "14a28544-8996-4173-a6d7-52473696fb3b" - }, - "Response" : { - "content-length" : "29", - "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" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "690411bc-4a56-4d1d-b59a-9224a007da5e", - "Date" : "Fri, 04 Nov 2022 03:55:09 GMT", - "x-ms-arm-service-request-id" : "e1f23353-57e7-4dbf-8197-4ffc62597bcb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035509Z:690411bc-4a56-4d1d-b59a-9224a007da5e", - "Expires" : "-1", - "x-ms-request-id" : "ca2b6749-2af8-479b-b585-31b032b3e0b5", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "14a28544-8996-4173-a6d7-52473696fb3b", - "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/f0e49e30-e2ec-4961-9648-f1178ef2d35d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6251e563-2a3f-4d01-a981-18ab1d3537ee" - }, - "Response" : { - "content-length" : "29", - "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" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea4d6c8b-97be-433c-8fcf-1c3204b026bf", - "Date" : "Fri, 04 Nov 2022 03:55:10 GMT", - "x-ms-arm-service-request-id" : "5a0faf5a-d4fb-425d-b423-76d757a81a28", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035510Z:ea4d6c8b-97be-433c-8fcf-1c3204b026bf", - "Expires" : "-1", - "x-ms-request-id" : "606e9e74-4f85-4043-a8e1-98c23410e5df", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "6251e563-2a3f-4d01-a981-18ab1d3537ee", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c6750131-768d-4e7d-a44b-fa9299a16eac" - }, - "Response" : { - "content-length" : "1309", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd8d647a-bcd0-4888-931c-41c43dc79268", - "Date" : "Fri, 04 Nov 2022 03:55:10 GMT", - "x-ms-arm-service-request-id" : "d7bbcdf2-fbfc-46f7-9b1b-6bf016c86b4b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"b793d3e7-9f03-4a2c-a6bb-e421ab51a894\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035510Z:cd8d647a-bcd0-4888-931c-41c43dc79268", - "Expires" : "-1", - "x-ms-request-id" : "06b19438-7a6d-43e8-a0f7-3b1020ebb9cc", - "Body" : "{\r\n \"name\": \"vnet948558054d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d\",\r\n \"etag\": \"W/\\\"b793d3e7-9f03-4a2c-a6bb-e421ab51a894\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"80a61ace-fbec-4ef2-b599-e5d19d5698df\",\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/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b793d3e7-9f03-4a2c-a6bb-e421ab51a894\\\"\",\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" : "c6750131-768d-4e7d-a44b-fa9299a16eac", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/publicIPAddresses/pip7376921e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "00bc552b-4019-41d0-811a-2657bfe2838a" - }, - "Response" : { - "content-length" : "775", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47d3dd66-319f-42f9-a158-3224b85f2adc", - "Date" : "Fri, 04 Nov 2022 03:55:10 GMT", - "x-ms-arm-service-request-id" : "e019bae8-508d-4d1e-bd1a-f9ae75ac3a03", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"613a7c45-5533-4c68-8333-f0bbbe97c187\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035511Z:47d3dd66-319f-42f9-a158-3224b85f2adc", - "Expires" : "-1", - "x-ms-request-id" : "e5842d4f-672b-43b7-be6b-300c6c512dba", - "Body" : "{\r\n \"name\": \"pip7376921e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/publicIPAddresses/pip7376921e\",\r\n \"etag\": \"W/\\\"613a7c45-5533-4c68-8333-f0bbbe97c187\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9db76932-100d-4a3f-a7f5-ac935d6cb551\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip41129d46\",\r\n \"fqdn\": \"pip41129d46.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "00bc552b-4019-41d0-811a-2657bfe2838a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/networkInterfaces/nic323240dc986?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5d98ac03-58b1-4d0a-bbf9-13e8e03d0397", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1952", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "bb99c5f8-a9b9-42e5-b501-95c4f833feb6", - "Date" : "Fri, 04 Nov 2022 03:55:13 GMT", - "x-ms-arm-service-request-id" : "13248a38-32b8-4964-b2a1-ce30ba3e598a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035513Z:bb99c5f8-a9b9-42e5-b501-95c4f833feb6", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e826cc9b-ec0d-40a4-b290-cd9dcf9bbcdf?api-version=2023-02-01", - "x-ms-request-id" : "e826cc9b-ec0d-40a4-b290-cd9dcf9bbcdf", - "Body" : "{\r\n \"name\": \"nic323240dc986\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/networkInterfaces/nic323240dc986\",\r\n \"etag\": \"W/\\\"dc99b1cd-0965-4e7b-8d69-1c67006cb011\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ea65a44-781f-4251-9e42-d15bb212a1cd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/networkInterfaces/nic323240dc986/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"dc99b1cd-0965-4e7b-8d69-1c67006cb011\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/publicIPAddresses/pip7376921e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Network/virtualNetworks/vnet948558054d/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\": \"zynknahm5pze3nmz2xiz0vuy1h.dx.internal.cloudapp.net\"\r\n },\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\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}", - "x-ms-client-request-id" : "5d98ac03-58b1-4d0a-bbf9-13e8e03d0397", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4d1ffb0e-9130-45e5-a5ce-42c4aa59cabb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2927", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "bae0f4de-ad7d-4cf2-b14d-494b61c1e21e", - "Date" : "Fri, 04 Nov 2022 03:55:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035518Z:bae0f4de-ad7d-4cf2-b14d-494b61c1e21e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ecc8e9d2-e995-469a-bd79-4f032ba4c46a?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "x-ms-request-id" : "ecc8e9d2-e995-469a-bd79-4f032ba4c46a", - "Body" : "{\r\n \"name\": \"vm104000f0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c\",\r\n \"type\": \"Microsoft.Compute/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 \"properties\": {\r\n \"vmId\": \"90c4c3db-dd4f-40df-ac63-69b0ea9abc18\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\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.202210180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm104000f0c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP2tstigj78rfg9ZEritg9lkFwewBLfJ9poabSzz7EDdZaUGa4pr+Lht+Qz6onXH9eN4krjVoyj5rCUKqoEC6313EGT0DxCXMhh1KQo7mBcFMjJppQZalX3Wzl2FPPuYoOTVg0uK9pNnKHQaxILpsVdWYE3r3a82OPewpJ678kqw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\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/rgcomv8982334/providers/Microsoft.Network/networkInterfaces/nic323240dc986\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-11-04T03:55:16.6365993+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "4d1ffb0e-9130-45e5-a5ce-42c4aa59cabb", - "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/ecc8e9d2-e995-469a-bd79-4f032ba4c46a?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d23d9263-91a9-41cf-babf-82bcd4487880" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99dddb5e-bf09-43d8-a611-04c07416461c", - "Date" : "Fri, 04 Nov 2022 03:55:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035528Z:99dddb5e-bf09-43d8-a611-04c07416461c", - "Expires" : "-1", - "x-ms-request-id" : "271ae765-9311-4266-b46a-4b50c35a3e0d", - "Body" : "{\r\n \"startTime\": \"2022-11-04T03:55:16.0428458+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ecc8e9d2-e995-469a-bd79-4f032ba4c46a\"\r\n}", - "x-ms-client-request-id" : "d23d9263-91a9-41cf-babf-82bcd4487880", - "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/ecc8e9d2-e995-469a-bd79-4f032ba4c46a?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1cf5f91c-146b-4d91-b9d8-51ee5e67b513" - }, - "Response" : { - "content-length" : "184", - "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" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e28288a4-a9f3-4022-a1f2-526924bd4447", - "Date" : "Fri, 04 Nov 2022 03:56:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035603Z:e28288a4-a9f3-4022-a1f2-526924bd4447", - "Expires" : "-1", - "x-ms-request-id" : "6a7e1b55-3a71-47ae-8a26-c084bca59504", - "Body" : "{\r\n \"startTime\": \"2022-11-04T03:55:16.0428458+00:00\",\r\n \"endTime\": \"2022-11-04T03:55:43.2775228+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ecc8e9d2-e995-469a-bd79-4f032ba4c46a\"\r\n}", - "x-ms-client-request-id" : "1cf5f91c-146b-4d91-b9d8-51ee5e67b513", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "09a5fb4e-c582-45c4-9458-42e47f4592c2" - }, - "Response" : { - "content-length" : "3713", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b8a96d5-b22c-499f-8cef-386049d13efb", - "Date" : "Fri, 04 Nov 2022 03:56:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035604Z:5b8a96d5-b22c-499f-8cef-386049d13efb", - "Expires" : "-1", - "x-ms-request-id" : "cae09414-f94c-4ac5-87f7-da8b3da58494", - "Body" : "{\r\n \"name\": \"vm104000f0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c\",\r\n \"type\": \"Microsoft.Compute/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 \"properties\": {\r\n \"vmId\": \"90c4c3db-dd4f-40df-ac63-69b0ea9abc18\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\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.202210180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm104000f0c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCP2tstigj78rfg9ZEritg9lkFwewBLfJ9poabSzz7EDdZaUGa4pr+Lht+Qz6onXH9eN4krjVoyj5rCUKqoEC6313EGT0DxCXMhh1KQo7mBcFMjJppQZalX3Wzl2FPPuYoOTVg0uK9pNnKHQaxILpsVdWYE3r3a82OPewpJ678kqw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\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/rgcomv8982334/providers/Microsoft.Network/networkInterfaces/nic323240dc986\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-11-04T03:55:16.6365993+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "09a5fb4e-c582-45c4-9458-42e47f4592c2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9abba1fe-0e56-4760-9b55-67b894961fe0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1674", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5adfa055-944b-4970-8785-00df26dee27b", - "Date" : "Fri, 04 Nov 2022 03:56:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035604Z:5adfa055-944b-4970-8785-00df26dee27b", - "Expires" : "-1", - "x-ms-request-id" : "7253a12f-658e-4c0b-8e91-75f115cec475", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\",\r\n \"type\": \"Microsoft.Compute/disks\",\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 \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202210180\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:55:16.8691373+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1c0c6471-9e8d-4f2c-8525-d4bc02d9a2d8\"\r\n }\r\n}", - "x-ms-client-request-id" : "9abba1fe-0e56-4760-9b55-67b894961fe0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d200bde8-ebf8-47ca-9b49-72e00d00a4cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1219", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1efa21e4-04b4-4af8-842c-e93dd5967ba9", - "Date" : "Fri, 04 Nov 2022 03:56:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035605Z:1efa21e4-04b4-4af8-842c-e93dd5967ba9", - "Expires" : "-1", - "x-ms-request-id" : "037b56ee-7f77-4e81-b3f9-8238d77c53d1", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\",\r\n \"type\": \"Microsoft.Compute/disks\",\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 \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:55:16.8691373+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"1512cc5a-049d-458c-a8b5-067df2d21036\"\r\n }\r\n}", - "x-ms-client-request-id" : "d200bde8-ebf8-47ca-9b49-72e00d00a4cf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a966b6d9-2229-464a-a5f1-a86c5738d553", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1219", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26546770-c778-4e98-8ed2-28b72fa61854", - "Date" : "Fri, 04 Nov 2022 03:56:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035605Z:26546770-c778-4e98-8ed2-28b72fa61854", - "Expires" : "-1", - "x-ms-request-id" : "5fb052d6-4d0d-43ce-96b5-71f4dec0db30", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\",\r\n \"type\": \"Microsoft.Compute/disks\",\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 \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:55:16.8691373+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e905d4b8-1f88-43ad-971a-0da1c8806b80\"\r\n }\r\n}", - "x-ms-client-request-id" : "a966b6d9-2229-464a-a5f1-a86c5738d553", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/virtualMachines/vm104000f0c/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4441cb5f-92a8-4fd6-9dcf-ce9cdf251970", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "954218c6-5ec7-4deb-bdba-6c297ce26b7d", - "Date" : "Fri, 04 Nov 2022 03:56:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035606Z:954218c6-5ec7-4deb-bdba-6c297ce26b7d", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ed4b3c81-3569-4e10-b600-46d74f1869f3?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "x-ms-request-id" : "ed4b3c81-3569-4e10-b600-46d74f1869f3", - "x-ms-client-request-id" : "4441cb5f-92a8-4fd6-9dcf-ce9cdf251970", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ed4b3c81-3569-4e10-b600-46d74f1869f3?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2022-08-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ed4b3c81-3569-4e10-b600-46d74f1869f3?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0919c663-7ad9-46f3-8817-c0e15abb5acb" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "285043c1-9cec-488a-a4e6-904043908a27", - "Date" : "Fri, 04 Nov 2022 03:56:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035616Z:285043c1-9cec-488a-a4e6-904043908a27", - "Expires" : "-1", - "x-ms-request-id" : "2d58736b-fbcd-46fe-81e1-32122d00d503", - "Body" : "{\r\n \"startTime\": \"2022-11-04T03:56:06.3247467+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed4b3c81-3569-4e10-b600-46d74f1869f3\"\r\n}", - "x-ms-client-request-id" : "0919c663-7ad9-46f3-8817-c0e15abb5acb", - "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/ed4b3c81-3569-4e10-b600-46d74f1869f3?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6fa95113-6609-4064-b51f-b1bedb0a3d6b" - }, - "Response" : { - "content-length" : "184", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b291e9b3-39b3-49ec-aca9-4879bc2cc527", - "Date" : "Fri, 04 Nov 2022 03:56:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035653Z:b291e9b3-39b3-49ec-aca9-4879bc2cc527", - "Expires" : "-1", - "x-ms-request-id" : "b9b21ecd-6de1-4bb2-aa9b-8473b9cf999f", - "Body" : "{\r\n \"startTime\": \"2022-11-04T03:56:06.3247467+00:00\",\r\n \"endTime\": \"2022-11-04T03:56:29.1843511+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed4b3c81-3569-4e10-b600-46d74f1869f3\"\r\n}", - "x-ms-client-request-id" : "6fa95113-6609-4064-b51f-b1bedb0a3d6b", - "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/ed4b3c81-3569-4e10-b600-46d74f1869f3?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2d6b835d-26e2-4f01-a035-d582a4075a94" - }, - "Response" : { - "content-length" : "0", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e85f768-d8f3-4252-8b15-ee66dc2858a2", - "Date" : "Fri, 04 Nov 2022 03:56:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035653Z:7e85f768-d8f3-4252-8b15-ee66dc2858a2", - "Expires" : "-1", - "x-ms-request-id" : "92b40493-9e79-4327-85e1-3d168820e93a", - "x-ms-client-request-id" : "2d6b835d-26e2-4f01-a035-d582a4075a94" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "db289039-a63f-4b70-9ea7-9950a46792ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "646", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "1b0b2cb4-e953-4d22-81a5-cf96022dc07b", - "Date" : "Fri, 04 Nov 2022 03:56:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035655Z:1b0b2cb4-e953-4d22-81a5-cf96022dc07b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d73368af-719f-474f-95f6-8716dad363ab?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "x-ms-request-id" : "d73368af-719f-474f-95f6-8716dad363ab", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\"\r\n },\r\n \"incremental\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "db289039-a63f-4b70-9ea7-9950a46792ea", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d73368af-719f-474f-95f6-8716dad363ab?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d73368af-719f-474f-95f6-8716dad363ab?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "adeda477-7bb1-4996-b5be-eb7b49149dfc" - }, - "Response" : { - "content-length" : "1686", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7d5011a-0c43-4532-bdeb-c15486b55717", - "Date" : "Fri, 04 Nov 2022 03:56:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035657Z:c7d5011a-0c43-4532-bdeb-c15486b55717", - "Expires" : "-1", - "x-ms-request-id" : "3f968a1b-1041-4d11-a60e-6336187ecc75", - "Body" : "{\r\n \"startTime\": \"2022-11-04T03:56:55.0652977+00:00\",\r\n \"endTime\": \"2022-11-04T03:56:55.9246851+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\",\r\n \"sourceUniqueId\": \"1c0c6471-9e8d-4f2c-8525-d4bc02d9a2d8\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:56:55.0652977+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\",\r\n \"incrementalSnapshotFamilyId\": \"97c42825-08f8-40aa-a27a-3fadb26980c0\"\r\n }\r\n}\r\n },\r\n \"name\": \"d73368af-719f-474f-95f6-8716dad363ab\"\r\n}", - "x-ms-client-request-id" : "adeda477-7bb1-4996-b5be-eb7b49149dfc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "83e7f3e4-3bbf-4f6d-ab8b-9e50f3ed5eac" - }, - "Response" : { - "content-length" : "1461", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae14098a-c5b2-4486-a3df-dd38d2fa59f0", - "Date" : "Fri, 04 Nov 2022 03:56:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035657Z:ae14098a-c5b2-4486-a3df-dd38d2fa59f0", - "Expires" : "-1", - "x-ms-request-id" : "f7c3a0c3-31f6-422e-a73c-07d8247d169e", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8\",\r\n \"sourceUniqueId\": \"1c0c6471-9e8d-4f2c-8525-d4bc02d9a2d8\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:56:55.0652977+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\",\r\n \"incrementalSnapshotFamilyId\": \"97c42825-08f8-40aa-a27a-3fadb26980c0\"\r\n }\r\n}", - "x-ms-client-request-id" : "83e7f3e4-3bbf-4f6d-ab8b-9e50f3ed5eac", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv78571b9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d7e44227-8620-4cc4-896d-07c754698a41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "f4b3cf37-a042-492f-bd9e-4075d53592b4", - "Date" : "Fri, 04 Nov 2022 03:57:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035701Z:f4b3cf37-a042-492f-bd9e-4075d53592b4", - "Expires" : "-1", - "x-ms-request-id" : "f4b3cf37-a042-492f-bd9e-4075d53592b4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9\",\"name\":\"rgcomv78571b9\",\"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/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "51f52111-830a-4a12-81f2-7dd258ba6627", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "642", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "8f35269c-86c2-4bb3-a348-9c6e9d5f1fe7", - "Date" : "Fri, 04 Nov 2022 03:57:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035706Z:8f35269c-86c2-4bb3-a348-9c6e9d5f1fe7", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/bb621bfb-7e1e-41a0-a065-be3fdfd7f002?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "bb621bfb-7e1e-41a0-a065-be3fdfd7f002", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\"\r\n },\r\n \"incremental\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "51f52111-830a-4a12-81f2-7dd258ba6627", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/bb621bfb-7e1e-41a0-a065-be3fdfd7f002?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/bb621bfb-7e1e-41a0-a065-be3fdfd7f002?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "beb5e388-06f8-40d6-b8c9-8983577f48de" - }, - "Response" : { - "content-length" : "1712", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f952e38-82d2-4c11-a20d-b4fcb4f33a40", - "Date" : "Fri, 04 Nov 2022 03:57:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035708Z:9f952e38-82d2-4c11-a20d-b4fcb4f33a40", - "Expires" : "-1", - "x-ms-request-id" : "c9d66d68-2aa6-45ea-b4cc-c0d141cb531e", - "Body" : "{\r\n \"startTime\": \"2022-11-04T03:57:05.5230316+00:00\",\r\n \"endTime\": \"2022-11-04T03:57:06.8824024+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}\r\n },\r\n \"name\": \"bb621bfb-7e1e-41a0-a065-be3fdfd7f002\"\r\n}", - "x-ms-client-request-id" : "beb5e388-06f8-40d6-b8c9-8983577f48de", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a8af083d-948c-43d8-be28-135a5a68cd0d" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13ab5244-d0ef-4d57-820f-92a3ca02bc66", - "Date" : "Fri, 04 Nov 2022 03:57:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035709Z:13ab5244-d0ef-4d57-820f-92a3ca02bc66", - "Expires" : "-1", - "x-ms-request-id" : "09bd6ced-2eab-487a-b5b7-df4192265c2d", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "a8af083d-948c-43d8-be28-135a5a68cd0d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "73de76b9-9ad5-458c-90df-c62c7307f357", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "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" : "c798db9a-ad25-43f4-ae55-2b2d5bd55162", - "Date" : "Fri, 04 Nov 2022 03:57:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035710Z:c798db9a-ad25-43f4-ae55-2b2d5bd55162", - "Expires" : "-1", - "x-ms-request-id" : "13b58ae8-0c2a-4122-8c5b-cb20210f4e57", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "73de76b9-9ad5-458c-90df-c62c7307f357", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "74b6577a-d0f2-48ca-a86a-d4625458a2e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "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" : "5bfc2f1b-f056-4751-bc98-090b905de49d", - "Date" : "Fri, 04 Nov 2022 03:57:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035740Z:5bfc2f1b-f056-4751-bc98-090b905de49d", - "Expires" : "-1", - "x-ms-request-id" : "97b232a7-d85d-4abc-b402-f89b9a6802da", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "74b6577a-d0f2-48ca-a86a-d4625458a2e1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "74ca1902-3645-49bd-8eda-d7452138f739", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba1c7ae9-df1a-4975-8814-dde0e43d7af8", - "Date" : "Fri, 04 Nov 2022 03:58:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035810Z:ba1c7ae9-df1a-4975-8814-dde0e43d7af8", - "Expires" : "-1", - "x-ms-request-id" : "c784f231-a959-44bd-8f92-fc4820939218", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "74ca1902-3645-49bd-8eda-d7452138f739", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0f8d48f8-5c17-47ae-87f0-67dc034e882c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45766b00-94fa-4efb-b0b6-d87ff4f5ee7d", - "Date" : "Fri, 04 Nov 2022 03:58:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035840Z:45766b00-94fa-4efb-b0b6-d87ff4f5ee7d", - "Expires" : "-1", - "x-ms-request-id" : "6636a4c9-ebbf-45ca-bb2d-ec7940e789c0", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "0f8d48f8-5c17-47ae-87f0-67dc034e882c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "37b08a38-04f1-4614-98e2-920e0616f233", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41548835-827d-4374-b8bf-a924e607d894", - "Date" : "Fri, 04 Nov 2022 03:59:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035910Z:41548835-827d-4374-b8bf-a924e607d894", - "Expires" : "-1", - "x-ms-request-id" : "0e1ad4be-b7c7-4ced-9399-b741c2b87f0b", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "37b08a38-04f1-4614-98e2-920e0616f233", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0d21badb-4115-4f55-aa61-7577cdca9721", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4eb20d73-91c7-47d4-af0d-da4cd00a03bc", - "Date" : "Fri, 04 Nov 2022 03:59:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T035940Z:4eb20d73-91c7-47d4-af0d-da4cd00a03bc", - "Expires" : "-1", - "x-ms-request-id" : "5286ab2e-3382-4e00-ad80-1b6de72556da", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "0d21badb-4115-4f55-aa61-7577cdca9721", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9e2368d2-385e-4cff-b9e5-d288a85425e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "859a2756-f955-4795-af26-59953702665e", - "Date" : "Fri, 04 Nov 2022 04:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040010Z:859a2756-f955-4795-af26-59953702665e", - "Expires" : "-1", - "x-ms-request-id" : "2404c111-4a7f-4e47-87f1-502df65ea3cf", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "9e2368d2-385e-4cff-b9e5-d288a85425e7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "88ddf516-9d6e-423d-ba47-a13497bda6b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf7757d2-b3a2-403e-91a6-16cd211595bf", - "Date" : "Fri, 04 Nov 2022 04:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040040Z:bf7757d2-b3a2-403e-91a6-16cd211595bf", - "Expires" : "-1", - "x-ms-request-id" : "a67528f0-1016-475e-bb74-e88b8586a4d8", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "88ddf516-9d6e-423d-ba47-a13497bda6b6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0a24c63e-0919-4d73-8c62-1ef1ec0ccb6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74b3dc09-3665-488c-9995-fcceb4392106", - "Date" : "Fri, 04 Nov 2022 04:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040110Z:74b3dc09-3665-488c-9995-fcceb4392106", - "Expires" : "-1", - "x-ms-request-id" : "312a4896-14d0-4b8b-a5e5-2f6ba39f458e", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "0a24c63e-0919-4d73-8c62-1ef1ec0ccb6b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3431fa95-e0da-4671-8938-8ea3a614ade4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3dbc1bce-79d5-4575-951b-43506fa8cb6b", - "Date" : "Fri, 04 Nov 2022 04:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040140Z:3dbc1bce-79d5-4575-951b-43506fa8cb6b", - "Expires" : "-1", - "x-ms-request-id" : "9b51764f-9af8-4a35-8e9c-26c23c709666", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "3431fa95-e0da-4671-8938-8ea3a614ade4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "080c53e6-503b-4f27-9fb1-5769f5f7e413", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1518", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78e5894f-135c-4d5f-b301-d96f81e6b9d2", - "Date" : "Fri, 04 Nov 2022 04:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040210Z:78e5894f-135c-4d5f-b301-d96f81e6b9d2", - "Expires" : "-1", - "x-ms-request-id" : "0ee78361-2ec2-423d-a0b1-6c7bd9d13c2b", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "080c53e6-503b-4f27-9fb1-5769f5f7e413", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e730a3e3-01e3-4055-8274-43f39202f08a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "553dc7fd-5521-465e-9c49-bb56d67d2fdc", - "Date" : "Fri, 04 Nov 2022 04:02:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040240Z:553dc7fd-5521-465e-9c49-bb56d67d2fdc", - "Expires" : "-1", - "x-ms-request-id" : "90e63245-7dbb-4936-b8eb-b208e7b27fd3", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "e730a3e3-01e3-4055-8274-43f39202f08a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c791bca8-f9c5-4d40-84d2-0ea4850867fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a97195e7-4f58-4280-bb62-ad5862200f0b", - "Date" : "Fri, 04 Nov 2022 04:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040310Z:a97195e7-4f58-4280-bb62-ad5862200f0b", - "Expires" : "-1", - "x-ms-request-id" : "6ae60759-5623-4229-b73e-f8450e7692d9", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "c791bca8-f9c5-4d40-84d2-0ea4850867fb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "66bd2503-bf20-4767-bccc-9b5bc720d870", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "670222ef-0782-4ff6-aa57-75a87a1ea5e8", - "Date" : "Fri, 04 Nov 2022 04:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040340Z:670222ef-0782-4ff6-aa57-75a87a1ea5e8", - "Expires" : "-1", - "x-ms-request-id" : "8d32f444-c3fb-4e0e-9bea-fcc5120a0c58", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "66bd2503-bf20-4767-bccc-9b5bc720d870", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "89a7cd2f-dca4-4077-b871-e39aa5897baa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef85f90b-de73-438f-a009-7fc40c8a69d5", - "Date" : "Fri, 04 Nov 2022 04:04:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040410Z:ef85f90b-de73-438f-a009-7fc40c8a69d5", - "Expires" : "-1", - "x-ms-request-id" : "2760ca18-c3ef-43a1-87ec-67b33f72dfee", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "89a7cd2f-dca4-4077-b871-e39aa5897baa", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0f48ebe3-0f5d-4c56-a413-859e4d343551", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f480af65-ee5a-4667-af1f-f9253cdfbc6a", - "Date" : "Fri, 04 Nov 2022 04:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040440Z:f480af65-ee5a-4667-af1f-f9253cdfbc6a", - "Expires" : "-1", - "x-ms-request-id" : "54e0cc9e-0349-4dfb-9e06-1dd5ca875e91", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "0f48ebe3-0f5d-4c56-a413-859e4d343551", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "dddab534-6f1b-411b-9ddd-2f7ab50b533f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc648ebe-06ee-41d4-bdb3-198f888bdd73", - "Date" : "Fri, 04 Nov 2022 04:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040510Z:bc648ebe-06ee-41d4-bdb3-198f888bdd73", - "Expires" : "-1", - "x-ms-request-id" : "3299d7b0-80c2-4485-af30-c04b82ae66d2", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "dddab534-6f1b-411b-9ddd-2f7ab50b533f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5df24340-c4b0-4384-b3ed-516c34462861", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3429aae9-cebc-4c97-bba0-45ba9c5659a3", - "Date" : "Fri, 04 Nov 2022 04:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040540Z:3429aae9-cebc-4c97-bba0-45ba9c5659a3", - "Expires" : "-1", - "x-ms-request-id" : "cc808c99-5dd3-4c91-9efc-ab2b1515a111", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "5df24340-c4b0-4384-b3ed-516c34462861", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6e29382a-d560-4ba5-974c-dad44d92e34a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3ee70ed-096b-4b9b-9859-5e6dbfbb9941", - "Date" : "Fri, 04 Nov 2022 04:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040610Z:d3ee70ed-096b-4b9b-9859-5e6dbfbb9941", - "Expires" : "-1", - "x-ms-request-id" : "0a9e374b-0ef3-4c41-9ae0-f1793fe69f7e", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "6e29382a-d560-4ba5-974c-dad44d92e34a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a35d81e2-016d-4b19-add4-0a3ad2fb9043", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1fa9fbd7-91d4-4687-884e-01c2332c8c1a", - "Date" : "Fri, 04 Nov 2022 04:06:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040640Z:1fa9fbd7-91d4-4687-884e-01c2332c8c1a", - "Expires" : "-1", - "x-ms-request-id" : "0261dee6-1047-4051-8159-f2a5e942e697", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "a35d81e2-016d-4b19-add4-0a3ad2fb9043", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "732fbf9f-a044-45f0-b845-260037804c25", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "816fbc9b-c279-4ecd-a5dd-38f7f9b0c02c", - "Date" : "Fri, 04 Nov 2022 04:07:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040710Z:816fbc9b-c279-4ecd-a5dd-38f7f9b0c02c", - "Expires" : "-1", - "x-ms-request-id" : "132455f3-93df-4db0-8eab-2052da223450", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 20.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "732fbf9f-a044-45f0-b845-260037804c25", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "64dc087e-19c5-43fa-a7c5-ad1da52644f1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1520", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcae0f9e-fa0f-448b-bfba-83e4bf656a14", - "Date" : "Fri, 04 Nov 2022 04:07:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040740Z:fcae0f9e-fa0f-448b-bfba-83e4bf656a14", - "Expires" : "-1", - "x-ms-request-id" : "6eb356e6-224d-46a2-965d-c0c27f488d07", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp\",\r\n \"sourceUniqueId\": \"c4ab720f-b530-4585-994b-b7a68cbb8042\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T03:57:06.241787+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\",\r\n \"completionPercent\": 100.0,\r\n \"incrementalSnapshotFamilyId\": \"136966a9-264b-4f41-9b12-f753ff0d928e\"\r\n }\r\n}", - "x-ms-client-request-id" : "64dc087e-19c5-43fa-a7c5-ad1da52644f1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "adf28337-3ed0-4be8-9d33-38ca72ef4cae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "05a2eabc-0ba1-42dc-8e95-ed0d79d87ac7", - "Date" : "Fri, 04 Nov 2022 04:07:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040742Z:05a2eabc-0ba1-42dc-8e95-ed0d79d87ac7", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/56923c1f-0691-44cc-a683-85363e031aba?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "x-ms-request-id" : "56923c1f-0691-44cc-a683-85363e031aba", - "x-ms-client-request-id" : "adf28337-3ed0-4be8-9d33-38ca72ef4cae", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/56923c1f-0691-44cc-a683-85363e031aba?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/56923c1f-0691-44cc-a683-85363e031aba?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8c11f0ac-8a13-4d32-89dd-df250791ac97" - }, - "Response" : { - "content-length" : "183", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c86175f-4ca4-43dd-a011-4a16072c56ba", - "Date" : "Fri, 04 Nov 2022 04:08:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040812Z:7c86175f-4ca4-43dd-a011-4a16072c56ba", - "Expires" : "-1", - "x-ms-request-id" : "a426aa4d-1fb2-47cc-a72c-d9f97bd0e851", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:07:42.2184374+00:00\",\r\n \"endTime\": \"2022-11-04T04:07:42.530855+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56923c1f-0691-44cc-a683-85363e031aba\"\r\n}", - "x-ms-client-request-id" : "8c11f0ac-8a13-4d32-89dd-df250791ac97", - "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/DiskOperations/56923c1f-0691-44cc-a683-85363e031aba?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "87f907bb-2e70-4780-b853-76995bbfde06" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d5d8a5a1-c65a-463b-bbc5-81daadbb0b39", - "Date" : "Fri, 04 Nov 2022 04:08:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040812Z:d5d8a5a1-c65a-463b-bbc5-81daadbb0b39", - "Expires" : "-1", - "x-ms-request-id" : "7c68eb76-886d-467e-acfc-9b4f44e367af", - "x-ms-client-request-id" : "87f907bb-2e70-4780-b853-76995bbfde06" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8b517302-6643-4ca6-88a8-08afbf0ffc98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "616", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "3748d5e7-96aa-4ac7-9b49-c7e78059c2ed", - "Date" : "Fri, 04 Nov 2022 04:08:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040815Z:3748d5e7-96aa-4ac7-9b49-c7e78059c2ed", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/715b69b6-78db-4a7a-b9de-d7ad08d25a67?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "x-ms-request-id" : "715b69b6-78db-4a7a-b9de-d7ad08d25a67", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\"\r\n },\r\n \"incremental\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "8b517302-6643-4ca6-88a8-08afbf0ffc98", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/715b69b6-78db-4a7a-b9de-d7ad08d25a67?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/715b69b6-78db-4a7a-b9de-d7ad08d25a67?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a0460e92-508e-460d-8ae1-3e7c42d8a2e7" - }, - "Response" : { - "content-length" : "1486", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b035de7-6945-42c9-a060-80469d569824", - "Date" : "Fri, 04 Nov 2022 04:08:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040818Z:7b035de7-6945-42c9-a060-80469d569824", - "Expires" : "-1", - "x-ms-request-id" : "26b5b6f7-7f79-459e-bad7-f1d1c97e26bc", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:08:15.5468805+00:00\",\r\n \"endTime\": \"2022-11-04T04:08:16.2499872+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\",\r\n \"sourceUniqueId\": \"1512cc5a-049d-458c-a8b5-067df2d21036\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:15.5468805+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\",\r\n \"incrementalSnapshotFamilyId\": \"7e5c36e4-b1da-4625-ba18-7b3a26c69440\"\r\n }\r\n}\r\n },\r\n \"name\": \"715b69b6-78db-4a7a-b9de-d7ad08d25a67\"\r\n}", - "x-ms-client-request-id" : "a0460e92-508e-460d-8ae1-3e7c42d8a2e7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "edbfee4f-dc43-4a51-bdc7-5aaebeaa02a0" - }, - "Response" : { - "content-length" : "1261", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7cf0e70-80d2-4d2d-b1fc-1db941d62e0d", - "Date" : "Fri, 04 Nov 2022 04:08:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040818Z:e7cf0e70-80d2-4d2d-b1fc-1db941d62e0d", - "Expires" : "-1", - "x-ms-request-id" : "cbdf29c4-1e42-4c4c-bca3-2a16e095a343", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036\",\r\n \"sourceUniqueId\": \"1512cc5a-049d-458c-a8b5-067df2d21036\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:15.5468805+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\",\r\n \"incrementalSnapshotFamilyId\": \"7e5c36e4-b1da-4625-ba18-7b3a26c69440\"\r\n }\r\n}", - "x-ms-client-request-id" : "edbfee4f-dc43-4a51-bdc7-5aaebeaa02a0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8a66de36-1d55-43a6-82bf-47d7277b6ab0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "636", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "678be022-397e-4a9e-b4cd-5ec9aceb54ab", - "Date" : "Fri, 04 Nov 2022 04:08:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040823Z:678be022-397e-4a9e-b4cd-5ec9aceb54ab", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b200c348-de90-41c6-9709-962ff62d4cba?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "b200c348-de90-41c6-9709-962ff62d4cba", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\"\r\n },\r\n \"incremental\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "8a66de36-1d55-43a6-82bf-47d7277b6ab0", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b200c348-de90-41c6-9709-962ff62d4cba?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b200c348-de90-41c6-9709-962ff62d4cba?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "506dafda-65d1-4f88-8322-2403467dbec5" - }, - "Response" : { - "content-length" : "1513", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aee29874-f468-45a2-9d10-1e5184f87678", - "Date" : "Fri, 04 Nov 2022 04:08:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040825Z:aee29874-f468-45a2-9d10-1e5184f87678", - "Expires" : "-1", - "x-ms-request-id" : "7d079d1b-386f-4d8d-93e7-cb6cc2963b0b", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:08:22.3023795+00:00\",\r\n \"endTime\": \"2022-11-04T04:08:23.5679588+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}\r\n },\r\n \"name\": \"b200c348-de90-41c6-9709-962ff62d4cba\"\r\n}", - "x-ms-client-request-id" : "506dafda-65d1-4f88-8322-2403467dbec5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3a96eecb-26c8-42ff-a210-bf51187f03a6" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0384e72-c2ca-446c-ab37-24b43e1ebf11", - "Date" : "Fri, 04 Nov 2022 04:08:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040826Z:b0384e72-c2ca-446c-ab37-24b43e1ebf11", - "Expires" : "-1", - "x-ms-request-id" : "8c907895-7c45-464f-928f-6a147f671dd5", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "3a96eecb-26c8-42ff-a210-bf51187f03a6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "b5378ebc-e65b-4bc9-90c4-0a3a577dd268", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86dbfa58-6659-4d73-9341-88a45ab55a5b", - "Date" : "Fri, 04 Nov 2022 04:08:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040827Z:86dbfa58-6659-4d73-9341-88a45ab55a5b", - "Expires" : "-1", - "x-ms-request-id" : "36c9b704-c00f-495f-b7d2-b80109ed62de", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "b5378ebc-e65b-4bc9-90c4-0a3a577dd268", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e30a5f52-e956-40dc-8a19-7716e79025df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9828e44-02b0-448e-a0b6-740056d7d422", - "Date" : "Fri, 04 Nov 2022 04:08:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040857Z:e9828e44-02b0-448e-a0b6-740056d7d422", - "Expires" : "-1", - "x-ms-request-id" : "a2c9af5b-eb5c-42b7-b170-18d2660335e4", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "e30a5f52-e956-40dc-8a19-7716e79025df", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5780e749-c42a-41fe-a6ff-14392de61f05", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b710d49a-71e5-468d-81e0-476b9f95f491", - "Date" : "Fri, 04 Nov 2022 04:09:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040927Z:b710d49a-71e5-468d-81e0-476b9f95f491", - "Expires" : "-1", - "x-ms-request-id" : "8208f272-f24b-4273-9bb4-dff9f675153c", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "5780e749-c42a-41fe-a6ff-14392de61f05", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "da7fbf9a-9ee4-4dfd-8b34-b3cf400ed30f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61cd8836-5dd6-43c1-9392-33ff997cabde", - "Date" : "Fri, 04 Nov 2022 04:09:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T040957Z:61cd8836-5dd6-43c1-9392-33ff997cabde", - "Expires" : "-1", - "x-ms-request-id" : "d4f724f2-fe4d-46cb-93dd-66583df61b06", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "da7fbf9a-9ee4-4dfd-8b34-b3cf400ed30f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "95d6ed7c-7ab3-411a-9fe4-24791dabf36a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05bf7e1c-c016-4977-8891-72d969790bd7", - "Date" : "Fri, 04 Nov 2022 04:10:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041027Z:05bf7e1c-c016-4977-8891-72d969790bd7", - "Expires" : "-1", - "x-ms-request-id" : "985dabf9-9d15-47e7-9d7e-b412f922d2cc", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "95d6ed7c-7ab3-411a-9fe4-24791dabf36a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "397add8c-dfa7-4a1a-a0f0-834b1ce40ff2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12ca26b8-c4ce-4617-9c52-fbd1066440f3", - "Date" : "Fri, 04 Nov 2022 04:10:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041056Z:12ca26b8-c4ce-4617-9c52-fbd1066440f3", - "Expires" : "-1", - "x-ms-request-id" : "858071b7-358b-4c2b-9cc7-6426252f8bfc", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "397add8c-dfa7-4a1a-a0f0-834b1ce40ff2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "de070dc0-0e7e-43a6-b018-21d240095605", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99d48db9-4ea0-4550-a946-5e49930009e8", - "Date" : "Fri, 04 Nov 2022 04:11:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041126Z:99d48db9-4ea0-4550-a946-5e49930009e8", - "Expires" : "-1", - "x-ms-request-id" : "0a466c2a-7c7f-433e-b475-9c2362739822", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "de070dc0-0e7e-43a6-b018-21d240095605", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "394b329a-9a4f-4eea-8c6b-f1f8c03f04a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a92dd74e-764b-4c76-aa10-404b6cc7f770", - "Date" : "Fri, 04 Nov 2022 04:11:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041156Z:a92dd74e-764b-4c76-aa10-404b6cc7f770", - "Expires" : "-1", - "x-ms-request-id" : "f4acc603-f60b-4f9a-b101-1fbbbd2a5292", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "394b329a-9a4f-4eea-8c6b-f1f8c03f04a9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a66a31ab-7410-40bd-b18c-5aa93ad764ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1321", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "992069b2-9a86-4320-b3b1-8cdcc92c0232", - "Date" : "Fri, 04 Nov 2022 04:12:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041226Z:992069b2-9a86-4320-b3b1-8cdcc92c0232", - "Expires" : "-1", - "x-ms-request-id" : "40e461c1-5383-43d9-81ba-f9a152135f98", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp\",\r\n \"sourceUniqueId\": \"e9bdcde4-b5f0-4990-ab08-5e392f0e7351\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:08:22.9429963+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\",\r\n \"completionPercent\": 100.0,\r\n \"incrementalSnapshotFamilyId\": \"0952af8d-d1ce-4553-b3f5-e819dbca9414\"\r\n }\r\n}", - "x-ms-client-request-id" : "a66a31ab-7410-40bd-b18c-5aa93ad764ef", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "068768c1-5b67-452d-95de-e0753085b318", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "9073f949-c651-4787-8459-b9d67780d00f", - "Date" : "Fri, 04 Nov 2022 04:12:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041227Z:9073f949-c651-4787-8459-b9d67780d00f", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ade3c8f7-6e2d-4e96-bb2e-a4aa9212deae?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "x-ms-request-id" : "ade3c8f7-6e2d-4e96-bb2e-a4aa9212deae", - "x-ms-client-request-id" : "068768c1-5b67-452d-95de-e0753085b318", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ade3c8f7-6e2d-4e96-bb2e-a4aa9212deae?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ade3c8f7-6e2d-4e96-bb2e-a4aa9212deae?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d506f8bd-e3bb-4068-8787-e928601981dc" - }, - "Response" : { - "content-length" : "184", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "336fa480-e514-4641-958a-02742e5d7dd7", - "Date" : "Fri, 04 Nov 2022 04:12:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041257Z:336fa480-e514-4641-958a-02742e5d7dd7", - "Expires" : "-1", - "x-ms-request-id" : "01b146c4-b623-4141-ab81-978be3bdcbb2", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:12:27.5514149+00:00\",\r\n \"endTime\": \"2022-11-04T04:12:27.9264211+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ade3c8f7-6e2d-4e96-bb2e-a4aa9212deae\"\r\n}", - "x-ms-client-request-id" : "d506f8bd-e3bb-4068-8787-e928601981dc", - "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/DiskOperations/ade3c8f7-6e2d-4e96-bb2e-a4aa9212deae?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9a880ea2-4225-4246-a26c-f4e44f2e7f23" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7368191b-5838-40ae-9237-592d05a256cf", - "Date" : "Fri, 04 Nov 2022 04:12:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041258Z:7368191b-5838-40ae-9237-592d05a256cf", - "Expires" : "-1", - "x-ms-request-id" : "d31aff0e-b68d-434f-8d3c-b6de2c4efb16", - "x-ms-client-request-id" : "9a880ea2-4225-4246-a26c-f4e44f2e7f23" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6720c15b-e6d9-4289-8b57-775acb74be64", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "616", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "876b4903-01c0-48ae-9335-7aa3682098f3", - "Date" : "Fri, 04 Nov 2022 04:13:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041300Z:876b4903-01c0-48ae-9335-7aa3682098f3", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/61e0d4f6-b65d-42a2-b33f-f093adb7b730?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "x-ms-request-id" : "61e0d4f6-b65d-42a2-b33f-f093adb7b730", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\"\r\n },\r\n \"incremental\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "6720c15b-e6d9-4289-8b57-775acb74be64", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/61e0d4f6-b65d-42a2-b33f-f093adb7b730?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/61e0d4f6-b65d-42a2-b33f-f093adb7b730?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c1fd0bd6-86c9-4757-9711-2e87df77e74e" - }, - "Response" : { - "content-length" : "1486", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07485a46-3f5a-4f27-bb93-c41f6a4568e1", - "Date" : "Fri, 04 Nov 2022 04:13:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041302Z:07485a46-3f5a-4f27-bb93-c41f6a4568e1", - "Expires" : "-1", - "x-ms-request-id" : "ccf1eee6-9d71-4939-b6ee-4343836a03de", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:12:59.9580704+00:00\",\r\n \"endTime\": \"2022-11-04T04:13:00.6299476+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\",\r\n \"sourceUniqueId\": \"e905d4b8-1f88-43ad-971a-0da1c8806b80\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:12:59.9580704+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\",\r\n \"incrementalSnapshotFamilyId\": \"e439a071-4c0e-421d-9f5c-f16f5da48906\"\r\n }\r\n}\r\n },\r\n \"name\": \"61e0d4f6-b65d-42a2-b33f-f093adb7b730\"\r\n}", - "x-ms-client-request-id" : "c1fd0bd6-86c9-4757-9711-2e87df77e74e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a976df92-2455-4b15-bea9-2eb74aba50df" - }, - "Response" : { - "content-length" : "1261", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "72e5af83-3f82-4adf-96d4-98dc248df7fc", - "Date" : "Fri, 04 Nov 2022 04:13:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041303Z:72e5af83-3f82-4adf-96d4-98dc248df7fc", - "Expires" : "-1", - "x-ms-request-id" : "834702b6-df0e-4b1b-b6ba-576f7a1d9bbb", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80\",\r\n \"sourceUniqueId\": \"e905d4b8-1f88-43ad-971a-0da1c8806b80\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:12:59.9580704+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\",\r\n \"incrementalSnapshotFamilyId\": \"e439a071-4c0e-421d-9f5c-f16f5da48906\"\r\n }\r\n}", - "x-ms-client-request-id" : "a976df92-2455-4b15-bea9-2eb74aba50df", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "31abdd1e-f526-4987-adac-662031789b8f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "636", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "9961cfb0-83af-40bd-b0b3-4d944b56606b", - "Date" : "Fri, 04 Nov 2022 04:13:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041307Z:9961cfb0-83af-40bd-b0b3-4d944b56606b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/a9ce745c-856e-43e3-967a-832c93c5ee0c?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "a9ce745c-856e-43e3-967a-832c93c5ee0c", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\"\r\n },\r\n \"incremental\": true,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "31abdd1e-f526-4987-adac-662031789b8f", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/a9ce745c-856e-43e3-967a-832c93c5ee0c?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/a9ce745c-856e-43e3-967a-832c93c5ee0c?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0a4bd75b-9f24-48ea-aa02-75710de0dbae" - }, - "Response" : { - "content-length" : "1513", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa9a34c5-98f8-4b6a-9034-1b4e926653e5", - "Date" : "Fri, 04 Nov 2022 04:13:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041309Z:fa9a34c5-98f8-4b6a-9034-1b4e926653e5", - "Expires" : "-1", - "x-ms-request-id" : "767a40d5-8f3f-446b-bc11-bd836eceb50a", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:13:06.2077943+00:00\",\r\n \"endTime\": \"2022-11-04T04:13:07.5671627+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}\r\n },\r\n \"name\": \"a9ce745c-856e-43e3-967a-832c93c5ee0c\"\r\n}", - "x-ms-client-request-id" : "0a4bd75b-9f24-48ea-aa02-75710de0dbae", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5e2fdaf2-d2d5-4730-80c0-c4c293ba4ef8" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc7e16fd-ff01-441d-8dd2-c09e3ca4b4eb", - "Date" : "Fri, 04 Nov 2022 04:13:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041310Z:bc7e16fd-ff01-441d-8dd2-c09e3ca4b4eb", - "Expires" : "-1", - "x-ms-request-id" : "b4f42bb5-abb0-4ae2-8df6-50744223fc9c", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "5e2fdaf2-d2d5-4730-80c0-c4c293ba4ef8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "13e37200-b993-4cf0-9a52-086ea316676d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61631ceb-a203-43a6-a7dd-2a19f6147011", - "Date" : "Fri, 04 Nov 2022 04:13:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041311Z:61631ceb-a203-43a6-a7dd-2a19f6147011", - "Expires" : "-1", - "x-ms-request-id" : "f6951a45-11e7-474e-81f2-cfac1cadd5fd", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "13e37200-b993-4cf0-9a52-086ea316676d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9d17a065-7859-4a5a-a1ee-0907fca6d819", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37b1009a-f8d4-4ab2-a641-484bf63f91d7", - "Date" : "Fri, 04 Nov 2022 04:13:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041341Z:37b1009a-f8d4-4ab2-a641-484bf63f91d7", - "Expires" : "-1", - "x-ms-request-id" : "9c00d9c4-0d55-4145-9f35-c3e25c1d58bb", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "9d17a065-7859-4a5a-a1ee-0907fca6d819", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8f4c7a74-1039-4389-8cad-c8cd023abc4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eeed1870-ed08-4a64-98a1-b1aeaf635529", - "Date" : "Fri, 04 Nov 2022 04:14:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041411Z:eeed1870-ed08-4a64-98a1-b1aeaf635529", - "Expires" : "-1", - "x-ms-request-id" : "a1a23dd7-d4a9-4578-834c-31fb99994a08", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "8f4c7a74-1039-4389-8cad-c8cd023abc4e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2c0e188a-810f-477a-9271-c83440c2f3f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba850eca-aa50-4165-9369-3f6c98396594", - "Date" : "Fri, 04 Nov 2022 04:14:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041441Z:ba850eca-aa50-4165-9369-3f6c98396594", - "Expires" : "-1", - "x-ms-request-id" : "c7889bbc-bc3e-4361-b766-ff1669a6c75c", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "2c0e188a-810f-477a-9271-c83440c2f3f2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0bad0b70-f9b7-40f3-9aba-3768ea8f938d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d6742a2-5f0f-4741-b966-88986bf2c125", - "Date" : "Fri, 04 Nov 2022 04:15:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041511Z:9d6742a2-5f0f-4741-b966-88986bf2c125", - "Expires" : "-1", - "x-ms-request-id" : "196ec63e-e4f6-4eae-824e-07df6a700622", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "0bad0b70-f9b7-40f3-9aba-3768ea8f938d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a8cc5db0-d1bd-41c3-a063-882fbddfe7fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e77f8164-8913-4416-9ce9-689d7b961a17", - "Date" : "Fri, 04 Nov 2022 04:15:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041541Z:e77f8164-8913-4416-9ce9-689d7b961a17", - "Expires" : "-1", - "x-ms-request-id" : "25496caa-693c-41a3-af75-ece8d3eec6b3", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "a8cc5db0-d1bd-41c3-a063-882fbddfe7fe", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0c0d46ab-65ea-4fe0-bd39-713b579aedea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4dc7d41f-e0b7-49fd-8318-70d4e03d7dc9", - "Date" : "Fri, 04 Nov 2022 04:16:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041611Z:4dc7d41f-e0b7-49fd-8318-70d4e03d7dc9", - "Expires" : "-1", - "x-ms-request-id" : "1e9039a1-a20a-461f-9d83-5a2f7572adf9", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "0c0d46ab-65ea-4fe0-bd39-713b579aedea", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6bb7930e-e0aa-4cf9-be05-cfd5ab94d439", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daf2bd69-1157-4990-b35f-bba2ac45fe6e", - "Date" : "Fri, 04 Nov 2022 04:16:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041641Z:daf2bd69-1157-4990-b35f-bba2ac45fe6e", - "Expires" : "-1", - "x-ms-request-id" : "449d8dd5-2df3-4769-aacb-694f19628484", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "6bb7930e-e0aa-4cf9-be05-cfd5ab94d439", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f509646f-3864-4827-b04d-c786bda32fa0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c444ca00-694a-4144-b098-6301b54c5e94", - "Date" : "Fri, 04 Nov 2022 04:17:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041711Z:c444ca00-694a-4144-b098-6301b54c5e94", - "Expires" : "-1", - "x-ms-request-id" : "1e4113ef-2750-42af-828d-c92ee127f535", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 0.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "f509646f-3864-4827-b04d-c786bda32fa0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "12ed013c-3d49-4e57-b10c-d61ed51464c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1321", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e6a3c86-2d77-49e1-a68d-a50d1a3fb594", - "Date" : "Fri, 04 Nov 2022 04:17:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041741Z:7e6a3c86-2d77-49e1-a68d-a50d1a3fb594", - "Expires" : "-1", - "x-ms-request-id" : "7b2ba8f8-12c4-4392-bcbf-de9bedf2c22e", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"CopyStart\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp\",\r\n \"sourceUniqueId\": \"f5df2ea8-618e-4d15-9ff6-15433632c3c4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": true,\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:13:06.9109155+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\",\r\n \"completionPercent\": 100.0,\r\n \"incrementalSnapshotFamilyId\": \"251bc0bf-5894-4cbd-9a2d-12331e6289bf\"\r\n }\r\n}", - "x-ms-client-request-id" : "12ed013c-3d49-4e57-b10c-d61ed51464c8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv8982334/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "76801c54-73d6-405a-ad9e-9c120b2fe9c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "8915b20c-6a23-4185-9a88-fb11a0c04acd", - "Date" : "Fri, 04 Nov 2022 04:17:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041742Z:8915b20c-6a23-4185-9a88-fb11a0c04acd", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/22d1ab57-3294-459a-9d2f-6bef8b8fd7ad?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "x-ms-request-id" : "22d1ab57-3294-459a-9d2f-6bef8b8fd7ad", - "x-ms-client-request-id" : "76801c54-73d6-405a-ad9e-9c120b2fe9c1", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/22d1ab57-3294-459a-9d2f-6bef8b8fd7ad?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/22d1ab57-3294-459a-9d2f-6bef8b8fd7ad?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "905400d1-6576-4651-9fd5-a2880292c1b9" - }, - "Response" : { - "content-length" : "183", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "663126f6-d5c7-4e40-8620-ec96b2400669", - "Date" : "Fri, 04 Nov 2022 04:18:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041812Z:663126f6-d5c7-4e40-8620-ec96b2400669", - "Expires" : "-1", - "x-ms-request-id" : "cdbc2e95-0673-4122-8093-e467fa886f8f", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:17:42.0462053+00:00\",\r\n \"endTime\": \"2022-11-04T04:17:42.311825+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"22d1ab57-3294-459a-9d2f-6bef8b8fd7ad\"\r\n}", - "x-ms-client-request-id" : "905400d1-6576-4651-9fd5-a2880292c1b9", - "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/DiskOperations/22d1ab57-3294-459a-9d2f-6bef8b8fd7ad?p=572f59ac-b6f7-4619-a399-5cb69fad25a1&monitor=true&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9d9895c8-0be9-432a-aba8-eaa8446c182e" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "572f59ac-b6f7-4619-a399-5cb69fad25a1_133062085377464397", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2411a467-b8f7-4faa-aac6-31bd9d0a7890", - "Date" : "Fri, 04 Nov 2022 04:18:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041812Z:2411a467-b8f7-4faa-aac6-31bd9d0a7890", - "Expires" : "-1", - "x-ms-request-id" : "b7506a89-4b72-4713-bd73-e080ec9ba98f", - "x-ms-client-request-id" : "9d9895c8-0be9-432a-aba8-eaa8446c182e" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d3eab5f7-9547-4415-a907-b86147094c41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "723", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "a4326a82-c081-47dc-ad8e-cf5c7d7faeb9", - "Date" : "Fri, 04 Nov 2022 04:18:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041816Z:a4326a82-c081-47dc-ad8e-cf5c7d7faeb9", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/812be7a9-003c-46dd-bbb3-d56687a46f4a?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "812be7a9-003c-46dd-bbb3-d56687a46f4a", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "d3eab5f7-9547-4415-a907-b86147094c41", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/812be7a9-003c-46dd-bbb3-d56687a46f4a?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/812be7a9-003c-46dd-bbb3-d56687a46f4a?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d3a5a1e2-8088-4931-98c9-8a7c641dabff" - }, - "Response" : { - "content-length" : "1654", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "20449767-be55-4bba-a85d-c084165f9883", - "Date" : "Fri, 04 Nov 2022 04:18:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041818Z:20449767-be55-4bba-a85d-c084165f9883", - "Expires" : "-1", - "x-ms-request-id" : "918a623e-5f0f-44db-841a-9e313795920d", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:18:16.0975394+00:00\",\r\n \"endTime\": \"2022-11-04T04:18:16.7381564+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"sourceUniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:18:16.0975394+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"4b44e329-f356-4e66-bdbd-54ce5a101011\"\r\n }\r\n}\r\n },\r\n \"name\": \"812be7a9-003c-46dd-bbb3-d56687a46f4a\"\r\n}", - "x-ms-client-request-id" : "d3a5a1e2-8088-4931-98c9-8a7c641dabff", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "53a34979-d375-47b0-a2b3-aa110d7918f0" - }, - "Response" : { - "content-length" : "1429", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "81cf8cd3-f6a0-45ff-a4d5-25174f5bde35", - "Date" : "Fri, 04 Nov 2022 04:18:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041819Z:81cf8cd3-f6a0-45ff-a4d5-25174f5bde35", - "Expires" : "-1", - "x-ms-request-id" : "64550e0b-a160-4e22-87fc-e296b803beb1", - "Body" : "{\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"supportsHibernation\": true,\r\n \"supportedCapabilities\": {\r\n \"acceleratedNetwork\": true,\r\n \"architecture\": \"x64\"\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied\",\r\n \"sourceUniqueId\": \"cd08d86b-53f1-47c0-aa75-b38fc09d19a2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:18:16.0975394+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"4b44e329-f356-4e66-bdbd-54ce5a101011\"\r\n }\r\n}", - "x-ms-client-request-id" : "53a34979-d375-47b0-a2b3-aa110d7918f0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "108b30ab-98b1-4f53-bdaa-15cf7c8b2c03", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "22312a28-889a-4070-a0a7-109cbccb7bd8", - "Date" : "Fri, 04 Nov 2022 04:18:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041821Z:22312a28-889a-4070-a0a7-109cbccb7bd8", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/214140e1-52d2-4c06-bb99-3c6820d94e8d?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "214140e1-52d2-4c06-bb99-3c6820d94e8d", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "108b30ab-98b1-4f53-bdaa-15cf7c8b2c03", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/214140e1-52d2-4c06-bb99-3c6820d94e8d?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/214140e1-52d2-4c06-bb99-3c6820d94e8d?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "79214909-60a2-446f-9073-66fa49c92b34" - }, - "Response" : { - "content-length" : "1452", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f536bdf9-7a53-4f2c-875c-55805ebabb7d", - "Date" : "Fri, 04 Nov 2022 04:18:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041823Z:f536bdf9-7a53-4f2c-875c-55805ebabb7d", - "Expires" : "-1", - "x-ms-request-id" : "8e91defb-ba8a-4c0e-a150-482f530b6f82", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:18:20.8943968+00:00\",\r\n \"endTime\": \"2022-11-04T04:18:21.3475176+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"sourceUniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:18:20.8943968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"aa03f691-f77d-4960-86fb-d3afd9beb773\"\r\n }\r\n}\r\n },\r\n \"name\": \"214140e1-52d2-4c06-bb99-3c6820d94e8d\"\r\n}", - "x-ms-client-request-id" : "79214909-60a2-446f-9073-66fa49c92b34", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "34eb02be-177e-428f-8015-84890af67b06" - }, - "Response" : { - "content-length" : "1227", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c49a8c6-fafe-4751-a61a-b417354b6616", - "Date" : "Fri, 04 Nov 2022 04:18:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041824Z:5c49a8c6-fafe-4751-a61a-b417354b6616", - "Expires" : "-1", - "x-ms-request-id" : "2032813c-ef1a-4fac-99c8-3846a3ec764e", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied\",\r\n \"sourceUniqueId\": \"e11653c4-2271-4453-b770-010d6c8bfde6\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:18:20.8943968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"aa03f691-f77d-4960-86fb-d3afd9beb773\"\r\n }\r\n}", - "x-ms-client-request-id" : "34eb02be-177e-428f-8015-84890af67b06", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9467cd4a-781d-4590-bd2a-add94845d210", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "9235b45d-56fd-4fe6-881c-477a1b69f017", - "Date" : "Fri, 04 Nov 2022 04:18:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041826Z:9235b45d-56fd-4fe6-881c-477a1b69f017", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/67dbd851-ea6b-4331-b729-a307cdc3f9f3?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "67dbd851-ea6b-4331-b729-a307cdc3f9f3", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "9467cd4a-781d-4590-bd2a-add94845d210", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/67dbd851-ea6b-4331-b729-a307cdc3f9f3?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/67dbd851-ea6b-4331-b729-a307cdc3f9f3?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0e91cf46-15c2-4920-bc94-6d8d8c4efda1" - }, - "Response" : { - "content-length" : "1452", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3bd4348-2d26-485a-b4f3-3f05695bd4f9", - "Date" : "Fri, 04 Nov 2022 04:18:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041829Z:d3bd4348-2d26-485a-b4f3-3f05695bd4f9", - "Expires" : "-1", - "x-ms-request-id" : "2fc02958-0d97-4ff6-800d-9907ec9d6bfe", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:18:26.4412637+00:00\",\r\n \"endTime\": \"2022-11-04T04:18:27.0193768+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"sourceUniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:18:26.4412637+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"392e0e3b-6606-4080-a50d-dd8a71804dcd\"\r\n }\r\n}\r\n },\r\n \"name\": \"67dbd851-ea6b-4331-b729-a307cdc3f9f3\"\r\n}", - "x-ms-client-request-id" : "0e91cf46-15c2-4920-bc94-6d8d8c4efda1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "26f8f131-b842-4493-b6dd-996b20434184" - }, - "Response" : { - "content-length" : "1227", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d8f6315-9702-4270-8eee-785abc9419aa", - "Date" : "Fri, 04 Nov 2022 04:18:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041829Z:6d8f6315-9702-4270-8eee-785abc9419aa", - "Expires" : "-1", - "x-ms-request-id" : "619856e0-ce13-4c1d-b9f3-0afcc7fffd80", - "Body" : "{\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied\",\r\n \"sourceUniqueId\": \"2ff24032-0517-47e1-a7ad-3e589a3a178b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"timeCreated\": \"2022-11-04T04:18:26.4412637+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"392e0e3b-6606-4080-a50d-dd8a71804dcd\"\r\n }\r\n}", - "x-ms-client-request-id" : "26f8f131-b842-4493-b6dd-996b20434184", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "792c3de3-b637-4bba-b199-eaf91fa21830", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1307", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "0cac47ed-05fc-488d-924a-3aeed9ab27c1", - "Date" : "Fri, 04 Nov 2022 04:18:32 GMT", - "x-ms-arm-service-request-id" : "b485d2eb-ae62-4c58-a1a9-6101fc1ddbdb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041833Z:0cac47ed-05fc-488d-924a-3aeed9ab27c1", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/88a14b9e-9606-4f14-9657-c66660a99e0a?api-version=2023-02-01", - "x-ms-request-id" : "88a14b9e-9606-4f14-9657-c66660a99e0a", - "Body" : "{\r\n \"name\": \"vnet05614b297d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d\",\r\n \"etag\": \"W/\\\"405448bf-b2ab-4e8c-9932-0fe13c129e55\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"416f1197-ced1-4c50-8cb9-54bbac1097eb\",\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/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"405448bf-b2ab-4e8c-9932-0fe13c129e55\\\"\",\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" : "792c3de3-b637-4bba-b199-eaf91fa21830", - "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/eastus/operations/88a14b9e-9606-4f14-9657-c66660a99e0a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "98cc86e7-12ed-4509-83ac-0e5cbc315fdf" - }, - "Response" : { - "content-length" : "29", - "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" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8adf994-db3a-4a46-8e12-d4751f4c02e2", - "Date" : "Fri, 04 Nov 2022 04:18:35 GMT", - "x-ms-arm-service-request-id" : "ed658f20-d951-4408-941c-156aa45bcbe2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041836Z:e8adf994-db3a-4a46-8e12-d4751f4c02e2", - "Expires" : "-1", - "x-ms-request-id" : "7bc02563-b8d8-4c7d-af8a-03417e44ca24", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "98cc86e7-12ed-4509-83ac-0e5cbc315fdf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "555aaf39-e0a9-41cf-aaef-3c9d47b35505" - }, - "Response" : { - "content-length" : "1309", - "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" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "665bf15c-54c2-48e3-ac3d-e528e60c1d33", - "Date" : "Fri, 04 Nov 2022 04:18:36 GMT", - "x-ms-arm-service-request-id" : "a8e5d7fa-1b29-482f-8c93-3493190809b9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"31da1d33-c3a7-40b9-92d0-650bc6ba54f6\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041837Z:665bf15c-54c2-48e3-ac3d-e528e60c1d33", - "Expires" : "-1", - "x-ms-request-id" : "a4fd502e-73d2-4cdd-88f6-58c6912d52c0", - "Body" : "{\r\n \"name\": \"vnet05614b297d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d\",\r\n \"etag\": \"W/\\\"31da1d33-c3a7-40b9-92d0-650bc6ba54f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"416f1197-ced1-4c50-8cb9-54bbac1097eb\",\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/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"31da1d33-c3a7-40b9-92d0-650bc6ba54f6\\\"\",\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" : "555aaf39-e0a9-41cf-aaef-3c9d47b35505", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/networkInterfaces/nic0070875f59a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1dec4671-673e-40c2-ae98-241e44af2e08", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1789", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "8bcbbcd7-eb44-4084-8a3f-b531d4f19836", - "Date" : "Fri, 04 Nov 2022 04:18:39 GMT", - "x-ms-arm-service-request-id" : "59fb5684-da80-4822-bc60-ed929ff7edad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041840Z:8bcbbcd7-eb44-4084-8a3f-b531d4f19836", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c8744cdc-2d19-4b17-9419-f5eaadd19ffa?api-version=2023-02-01", - "x-ms-request-id" : "c8744cdc-2d19-4b17-9419-f5eaadd19ffa", - "Body" : "{\r\n \"name\": \"nic0070875f59a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/networkInterfaces/nic0070875f59a\",\r\n \"etag\": \"W/\\\"4a42e50c-4f23-4597-b2d3-597f11dcde58\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"effe54fe-6dde-499a-b1e5-8c2d89a2794b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/networkInterfaces/nic0070875f59a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4a42e50c-4f23-4597-b2d3-597f11dcde58\\\"\",\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/rgcomv78571b9/providers/Microsoft.Network/virtualNetworks/vnet05614b297d/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\": \"s2iw4qorzziezdfzks30yeex3d.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" : "1dec4671-673e-40c2-ae98-241e44af2e08", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/virtualMachines/vm292421224?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "61ac45bd-c23b-4c9b-a839-7ad457a892e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2589", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "db1af7f0-28ba-4897-83aa-044c93e9d882", - "Date" : "Fri, 04 Nov 2022 04:18:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041846Z:db1af7f0-28ba-4897-83aa-044c93e9d882", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc36f068-601f-4a96-b27d-2b8ed9b40193?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2022-08-01", - "x-ms-request-id" : "dc36f068-601f-4a96-b27d-2b8ed9b40193", - "Body" : "{\r\n \"name\": \"vm292421224\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/virtualMachines/vm292421224\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2664a83a-156d-4147-a69b-5ca9fe43e7a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/networkInterfaces/nic0070875f59a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-11-04T04:18:44.3275741+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "61ac45bd-c23b-4c9b-a839-7ad457a892e6", - "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/dc36f068-601f-4a96-b27d-2b8ed9b40193?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0134f3eb-2c2a-444a-8934-9f9a48ff5e85" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "697b4e2f-ff8a-4ed9-b7f6-1d121fa70997", - "Date" : "Fri, 04 Nov 2022 04:18:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041856Z:697b4e2f-ff8a-4ed9-b7f6-1d121fa70997", - "Expires" : "-1", - "x-ms-request-id" : "daaf0289-9ad8-473a-b8c3-bfe24be77ea1", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:18:44.2650769+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dc36f068-601f-4a96-b27d-2b8ed9b40193\"\r\n}", - "x-ms-client-request-id" : "0134f3eb-2c2a-444a-8934-9f9a48ff5e85", - "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/dc36f068-601f-4a96-b27d-2b8ed9b40193?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f53f438f-68c0-487c-8059-3e6c299c063b" - }, - "Response" : { - "content-length" : "184", - "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" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c4f0440-babf-4e78-ac48-333ca66907da", - "Date" : "Fri, 04 Nov 2022 04:19:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041902Z:3c4f0440-babf-4e78-ac48-333ca66907da", - "Expires" : "-1", - "x-ms-request-id" : "47b3a613-93d9-4732-bb30-e13b4bbbdbc1", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:18:44.2650769+00:00\",\r\n \"endTime\": \"2022-11-04T04:18:57.2649653+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dc36f068-601f-4a96-b27d-2b8ed9b40193\"\r\n}", - "x-ms-client-request-id" : "f53f438f-68c0-487c-8059-3e6c299c063b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/virtualMachines/vm292421224?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "35d16f42-32fe-48f5-bcf3-06cd4d954d21" - }, - "Response" : { - "content-length" : "2590", - "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" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec1410c7-7dd5-4b6e-b688-bed51549226e", - "Date" : "Fri, 04 Nov 2022 04:19:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041902Z:ec1410c7-7dd5-4b6e-b688-bed51549226e", - "Expires" : "-1", - "x-ms-request-id" : "d12f3616-a6e8-4ae2-b417-a17d59403e99", - "Body" : "{\r\n \"name\": \"vm292421224\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/virtualMachines/vm292421224\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2664a83a-156d-4147-a69b-5ca9fe43e7a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-new\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-new\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/disks/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-new\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Network/networkInterfaces/nic0070875f59a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-11-04T04:18:44.3275741+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "35d16f42-32fe-48f5-bcf3-06cd4d954d21", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_OsDisk_1_1c0c64719e8d4f2c8525d4bc02d9a2d8-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "534a897a-c7d2-4b7f-837a-91056a1cae40", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "5846534c-2d1b-4b29-b1d0-cd93e26af8ea", - "Date" : "Fri, 04 Nov 2022 04:19:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041903Z:5846534c-2d1b-4b29-b1d0-cd93e26af8ea", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/56bd2ee1-12d2-433e-aeb5-54ddb62afb65?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "56bd2ee1-12d2-433e-aeb5-54ddb62afb65", - "x-ms-client-request-id" : "534a897a-c7d2-4b7f-837a-91056a1cae40", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/56bd2ee1-12d2-433e-aeb5-54ddb62afb65?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/56bd2ee1-12d2-433e-aeb5-54ddb62afb65?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "005641c3-127e-4e5f-8908-4e47f6c7f930" - }, - "Response" : { - "content-length" : "184", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaa6446a-88d9-4657-927c-c0bc752d2418", - "Date" : "Fri, 04 Nov 2022 04:19:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041934Z:aaa6446a-88d9-4657-927c-c0bc752d2418", - "Expires" : "-1", - "x-ms-request-id" : "4d821112-c56c-43ab-93d9-69f496413bc4", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:19:03.8161495+00:00\",\r\n \"endTime\": \"2022-11-04T04:19:04.0817739+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56bd2ee1-12d2-433e-aeb5-54ddb62afb65\"\r\n}", - "x-ms-client-request-id" : "005641c3-127e-4e5f-8908-4e47f6c7f930", - "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/DiskOperations/56bd2ee1-12d2-433e-aeb5-54ddb62afb65?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "a3a4778f-3cac-4409-bdb5-9e27934e0e15" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eafbaea3-1f13-49d9-ad82-e60dd36ec41e", - "Date" : "Fri, 04 Nov 2022 04:19:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041934Z:eafbaea3-1f13-49d9-ad82-e60dd36ec41e", - "Expires" : "-1", - "x-ms-request-id" : "690eda53-0455-4a60-8a68-b1af759dc43a", - "x-ms-client-request-id" : "a3a4778f-3cac-4409-bdb5-9e27934e0e15" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk2_1512cc5a049d458ca8b5067df2d21036-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5bb7ac01-7590-47d2-80d5-de9276feee91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "bcd0dcb1-3012-45d9-8a9c-c0ce57ce7833", - "Date" : "Fri, 04 Nov 2022 04:19:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T041935Z:bcd0dcb1-3012-45d9-8a9c-c0ce57ce7833", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/372a36eb-499f-4d63-941e-583a3b21ca48?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "372a36eb-499f-4d63-941e-583a3b21ca48", - "x-ms-client-request-id" : "5bb7ac01-7590-47d2-80d5-de9276feee91", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/372a36eb-499f-4d63-941e-583a3b21ca48?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/372a36eb-499f-4d63-941e-583a3b21ca48?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5972e9d6-50ad-45b2-9ea9-a2ae44a458a2" - }, - "Response" : { - "content-length" : "184", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0faea64f-1a63-4f76-be55-0e226900f7f6", - "Date" : "Fri, 04 Nov 2022 04:20:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042006Z:0faea64f-1a63-4f76-be55-0e226900f7f6", - "Expires" : "-1", - "x-ms-request-id" : "43f6f1ea-7bcb-41b6-afa7-2e2ce3c52897", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:19:35.7223103+00:00\",\r\n \"endTime\": \"2022-11-04T04:19:36.0035593+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"372a36eb-499f-4d63-941e-583a3b21ca48\"\r\n}", - "x-ms-client-request-id" : "5972e9d6-50ad-45b2-9ea9-a2ae44a458a2", - "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/DiskOperations/372a36eb-499f-4d63-941e-583a3b21ca48?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f3f73bb4-85ba-4f32-8681-686e6d9bee59" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be402021-750b-4e8b-988a-bd02f7f0848e", - "Date" : "Fri, 04 Nov 2022 04:20:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042006Z:be402021-750b-4e8b-988a-bd02f7f0848e", - "Expires" : "-1", - "x-ms-request-id" : "619d03f1-828a-40c9-885d-643c49359eaa", - "x-ms-client-request-id" : "f3f73bb4-85ba-4f32-8681-686e6d9bee59" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/snapshots/vm104000f0c_disk3_e905d4b81f8843ad971a0da1c8806b80-snp-copied?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "be9477bb-5c29-4d7e-9a46-5bb156e1cd0e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "3ab8562d-9422-445e-ba8a-b72f6a3221e8", - "Date" : "Fri, 04 Nov 2022 04:20:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;2997,Microsoft.Compute/DeleteDisks30Min;23997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042008Z:3ab8562d-9422-445e-ba8a-b72f6a3221e8", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7718c0aa-cece-489d-8e15-236246bf82b8?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "x-ms-request-id" : "7718c0aa-cece-489d-8e15-236246bf82b8", - "x-ms-client-request-id" : "be9477bb-5c29-4d7e-9a46-5bb156e1cd0e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7718c0aa-cece-489d-8e15-236246bf82b8?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7718c0aa-cece-489d-8e15-236246bf82b8?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "3bd0ebca-75c7-436d-ba55-ad875809b634" - }, - "Response" : { - "content-length" : "184", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "570e06f0-c76f-473d-b50e-91163716c3ea", - "Date" : "Fri, 04 Nov 2022 04:20:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042038Z:570e06f0-c76f-473d-b50e-91163716c3ea", - "Expires" : "-1", - "x-ms-request-id" : "52fc7baf-a274-41ba-a94d-00cf56633fe4", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:20:07.7690936+00:00\",\r\n \"endTime\": \"2022-11-04T04:20:08.0972183+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7718c0aa-cece-489d-8e15-236246bf82b8\"\r\n}", - "x-ms-client-request-id" : "3bd0ebca-75c7-436d-ba55-ad875809b634", - "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/DiskOperations/7718c0aa-cece-489d-8e15-236246bf82b8?p=cf00aa19-e046-40ac-861d-45a82e8cd03f&monitor=true&api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "258afd36-dca9-469a-a0bd-66861d0bb3dd" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cf00aa19-e046-40ac-861d-45a82e8cd03f_133116740053338362", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a0213c1-3d85-42c2-b365-572f0eddcdfe", - "Date" : "Fri, 04 Nov 2022 04:20:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042038Z:2a0213c1-3d85-42c2-b365-572f0eddcdfe", - "Expires" : "-1", - "x-ms-request-id" : "4b245017-0a99-425f-8ed4-5ed18fe19d8e", - "x-ms-client-request-id" : "258afd36-dca9-469a-a0bd-66861d0bb3dd" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv78571b9/providers/Microsoft.Compute/virtualMachines/vm292421224/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d702f941-2716-4700-8528-042f104b1e73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "98915c7d-1d7f-4523-81d8-7e7feefbab62", - "Date" : "Fri, 04 Nov 2022 04:20:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042039Z:98915c7d-1d7f-4523-81d8-7e7feefbab62", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c4d4a44b-d7c4-4544-87fe-3d760aa0d784?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2022-08-01", - "x-ms-request-id" : "c4d4a44b-d7c4-4544-87fe-3d760aa0d784", - "x-ms-client-request-id" : "d702f941-2716-4700-8528-042f104b1e73", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c4d4a44b-d7c4-4544-87fe-3d760aa0d784?p=c4eddfd8-50c0-4095-b028-281986cc641e&monitor=true&api-version=2022-08-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c4d4a44b-d7c4-4544-87fe-3d760aa0d784?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f7a2d6ae-fff3-4117-9bf7-3fe6b32f3339" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f751bc11-1237-42cd-a2bd-538abb3baab3", - "Date" : "Fri, 04 Nov 2022 04:20:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042049Z:f751bc11-1237-42cd-a2bd-538abb3baab3", - "Expires" : "-1", - "x-ms-request-id" : "04135aaf-ddfc-45e0-97f0-a86b807b92df", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:20:39.4672215+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c4d4a44b-d7c4-4544-87fe-3d760aa0d784\"\r\n}", - "x-ms-client-request-id" : "f7a2d6ae-fff3-4117-9bf7-3fe6b32f3339", - "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/c4d4a44b-d7c4-4544-87fe-3d760aa0d784?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "55ac860d-f318-4a97-b70c-5c0032b598ab" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8db2bdea-94d1-47e9-821a-3f77a7067f4a", - "Date" : "Fri, 04 Nov 2022 04:21:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042126Z:8db2bdea-94d1-47e9-821a-3f77a7067f4a", - "Expires" : "-1", - "x-ms-request-id" : "a6d60cf0-24b7-472f-82f0-a0795fd29517", - "Body" : "{\r\n \"startTime\": \"2022-11-04T04:20:39.4672215+00:00\",\r\n \"endTime\": \"2022-11-04T04:21:16.4200354+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c4d4a44b-d7c4-4544-87fe-3d760aa0d784\"\r\n}", - "x-ms-client-request-id" : "55ac860d-f318-4a97-b70c-5c0032b598ab", - "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/c4d4a44b-d7c4-4544-87fe-3d760aa0d784?p=c4eddfd8-50c0-4095-b028-281986cc641e&monitor=true&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d9c82ac3-13c8-4c34-9521-df0afb4a2937" - }, - "Response" : { - "content-length" : "0", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "106fe1cb-e9ea-43df-b6fa-bba263e3e95f", - "Date" : "Fri, 04 Nov 2022 04:21:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042126Z:106fe1cb-e9ea-43df-b6fa-bba263e3e95f", - "Expires" : "-1", - "x-ms-request-id" : "4fb78327-c9cf-4190-8645-2b5583bc4ce3", - "x-ms-client-request-id" : "d9c82ac3-13c8-4c34-9521-df0afb4a2937" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv8982334?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "55659dec-6a92-4ec4-bff2-fa62eb9fe61a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "2da49291-8e15-43bf-b9d7-9a87eb78064e", - "Date" : "Fri, 04 Nov 2022 04:21:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042130Z:2da49291-8e15-43bf-b9d7-9a87eb78064e", - "Expires" : "-1", - "x-ms-request-id" : "2da49291-8e15-43bf-b9d7-9a87eb78064e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OTgyMzM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2021-01-01" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv78571b9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c4a53f2d-9021-4c78-93ef-f50d47697ab6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "1a5a76cf-b24c-444b-8198-045467451ab2", - "Date" : "Fri, 04 Nov 2022 04:21:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221104T042135Z:1a5a76cf-b24c-444b-8198-045467451ab2", - "Expires" : "-1", - "x-ms-request-id" : "1a5a76cf-b24c-444b-8198-045467451ab2", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3ODU3MUI5LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2021-01-01" - }, - "Exception" : null - } ], - "variables" : [ "vm104000f0c", "vm292421224", "rgcomv8982334", "rgcomv78571b9", "pip41129d46", "nic323240dc986", "vnet948558054d", "pip7376921e", "nic0070875f59a", "vnet05614b297d" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testConvertVirtualMachineToManagedDisks.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testConvertVirtualMachineToManagedDisks.json deleted file mode 100644 index 9cf2b82768e6..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testConvertVirtualMachineToManagedDisks.json +++ /dev/null @@ -1,709 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv08105c5?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a208d23-2f7c-41cf-83f6-d96dc9f6b1f0", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "0d8a75f5-9561-4a56-b196-e832c87eeb59", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:0d8a75f5-9561-4a56-b196-e832c87eeb59", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "0d8a75f5-9561-4a56-b196-e832c87eeb59", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5\",\"name\":\"rgcomv08105c5\",\"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/rgcomv08105c5/providers/Microsoft.Storage/storageAccounts/stg06608e23fb662?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "77b08931-0146-49ee-96ef-2ce6703468a3", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1192", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "3a5e1b6c-9286-4f80-ade5-6d5114839ee6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172211Z:3a5e1b6c-9286-4f80-ade5-6d5114839ee6", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "12cd7353-f801-4994-b60e-b20d002f8a24", - "Body" : "", - "x-ms-client-request-id" : "77b08931-0146-49ee-96ef-2ce6703468a3", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/12cd7353-f801-4994-b60e-b20d002f8a24?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "96001b4f-4700-401b-bcb4-2b50563ee0b6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:12 GMT", - "x-ms-correlation-request-id" : "c334c195-4f87-45f2-ba4d-dc4f2086c259", - "x-ms-arm-service-request-id" : "4f6228b1-411d-4727-8fb7-d0eb6e1098a0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172212Z:c334c195-4f87-45f2-ba4d-dc4f2086c259", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf467c42-bd33-4f3e-a010-3f4124595369?api-version=2023-02-01", - "x-ms-request-id" : "cf467c42-bd33-4f3e-a010-3f4124595369", - "Body" : "{\r\n \"name\": \"vnet621652e1d0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0\",\r\n \"etag\": \"W/\\\"ced992e0-47a7-4558-8f21-a9d4d7578058\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f8ff98d0-58bf-4946-b0aa-a7c4fb596089\",\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/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ced992e0-47a7-4558-8f21-a9d4d7578058\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "96001b4f-4700-401b-bcb4-2b50563ee0b6", - "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/cf467c42-bd33-4f3e-a010-3f4124595369?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8403541a-1dbb-421f-87d3-e9908ecf08ef" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "9128d89f-bdb2-44d3-b381-11f082d48833", - "x-ms-arm-service-request-id" : "4532445e-d17f-44b1-beb7-cc7e6f90acd8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:9128d89f-bdb2-44d3-b381-11f082d48833", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "ff3addbc-a8b4-49fe-902f-7a7eb1e16e3b", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "8403541a-1dbb-421f-87d3-e9908ecf08ef", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e640b08f-4c50-4775-9e2d-4c35836e5978" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "51e2ee74-2da0-43be-8e34-612e2c1f6718", - "x-ms-arm-service-request-id" : "f6ff8861-62ef-41ae-bd0e-6b0c473971c9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"52efeb45-a5b4-42df-8f47-a11d3bf17db0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:51e2ee74-2da0-43be-8e34-612e2c1f6718", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "961d1eb2-2acd-45a4-8e37-0a817cd67ca3", - "Body" : "{\r\n \"name\": \"vnet621652e1d0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0\",\r\n \"etag\": \"W/\\\"52efeb45-a5b4-42df-8f47-a11d3bf17db0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f8ff98d0-58bf-4946-b0aa-a7c4fb596089\",\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/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"52efeb45-a5b4-42df-8f47-a11d3bf17db0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e640b08f-4c50-4775-9e2d-4c35836e5978", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9027e14-0527-4515-bc46-2bf7bdacab91", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:20 GMT", - "x-ms-correlation-request-id" : "076df027-a797-4970-947a-da9d38c66774", - "x-ms-arm-service-request-id" : "eccc95ad-af9f-4537-ad1d-24e214d72669", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172221Z:076df027-a797-4970-947a-da9d38c66774", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d75745b3-7f1d-4021-88d1-65d0a382b746?api-version=2023-02-01", - "x-ms-request-id" : "d75745b3-7f1d-4021-88d1-65d0a382b746", - "Body" : "{\r\n \"name\": \"nic2123219e8bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd\",\r\n \"etag\": \"W/\\\"c939877b-994b-4afc-b894-66d47469b2e5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"82816790-ac94-4375-8278-02ed083d7976\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c939877b-994b-4afc-b894-66d47469b2e5\\\"\",\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/rgcomv08105c5/providers/Microsoft.Network/virtualNetworks/vnet621652e1d0/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\": \"0cmp54f5lbdetmfku5cpwwlarb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "b9027e14-0527-4515-bc46-2bf7bdacab91", - "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/westus/asyncoperations/12cd7353-f801-4994-b60e-b20d002f8a24?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d80a4afb-88a5-4e65-b818-88b6cd46ac8d" - }, - "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" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:29 GMT", - "x-ms-correlation-request-id" : "2191f218-6dc6-4b51-947f-2f178185fcf9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172229Z:2191f218-6dc6-4b51-947f-2f178185fcf9", - "Expires" : "-1", - "Content-Length" : "1191", - "x-ms-request-id" : "12835462-0e60-4225-9fe5-11fa9a5f1736", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Storage/storageAccounts/stg06608e23fb662\",\"name\":\"stg06608e23fb662\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:11.3821874Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:11.3821874Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:11.2884561Z\",\"primaryEndpoints\":{\"blob\":\"https://stg06608e23fb662.blob.core.windows.net/\",\"queue\":\"https://stg06608e23fb662.queue.core.windows.net/\",\"table\":\"https://stg06608e23fb662.table.core.windows.net/\",\"file\":\"https://stg06608e23fb662.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "d80a4afb-88a5-4e65-b818-88b6cd46ac8d", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Storage/storageAccounts/stg06608e23fb662?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cdf6ede-aec8-48c4-9213-87d2400c4df4", - "Content-Type" : "application/json" - }, - "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" : "11980", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:29 GMT", - "x-ms-correlation-request-id" : "e7d13f46-a3bc-4bb7-b32e-d442ddac2cf0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172230Z:e7d13f46-a3bc-4bb7-b32e-d442ddac2cf0", - "Expires" : "-1", - "Content-Length" : "1191", - "x-ms-request-id" : "32a5f17f-f617-401f-9122-7c064a7ab4b0", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Storage/storageAccounts/stg06608e23fb662\",\"name\":\"stg06608e23fb662\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:11.3821874Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:11.3821874Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:11.2884561Z\",\"primaryEndpoints\":{\"blob\":\"https://stg06608e23fb662.blob.core.windows.net/\",\"queue\":\"https://stg06608e23fb662.queue.core.windows.net/\",\"table\":\"https://stg06608e23fb662.table.core.windows.net/\",\"file\":\"https://stg06608e23fb662.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "0cdf6ede-aec8-48c4-9213-87d2400c4df4", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c128266-10e9-4efa-b4f1-2e21a84c3f79", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "901cf453-2f8b-4840-bf3d-50c84d4bdac1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:901cf453-2f8b-4840-bf3d-50c84d4bdac1", - "Expires" : "-1", - "Content-Length" : "2454", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/21983002-c931-4fd6-9b07-84c41981d243?api-version=2021-11-01", - "x-ms-request-id" : "21983002-c931-4fd6-9b07-84c41981d243", - "Body" : "{\r\n \"name\": \"vm10059785e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95d0ce2d-60fd-4348-a084-5846d2cfe3c9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10059785e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-os-disk-1b2b27e5-2133-4d87-b979-4e3f5252ba60.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-data-disk-1-1222dcdb-629c-4414-a134-4a70cd96555f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-data-disk-2-9bd38a8f-af67-4ee2-b799-f428fb59060e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10059785e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "9c128266-10e9-4efa-b4f1-2e21a84c3f79", - "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/21983002-c931-4fd6-9b07-84c41981d243?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "41e5e161-df14-431b-a9ac-1ea9cbc6e0f1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:42 GMT", - "x-ms-correlation-request-id" : "3d1abd60-5668-4816-a387-a2dc612fad5e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172243Z:3d1abd60-5668-4816-a387-a2dc612fad5e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "6b4e21c7-69f7-4a09-9651-39a7ec4e10a3", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:31.9905423+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"21983002-c931-4fd6-9b07-84c41981d243\"\r\n}", - "x-ms-client-request-id" : "41e5e161-df14-431b-a9ac-1ea9cbc6e0f1", - "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/21983002-c931-4fd6-9b07-84c41981d243?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cbfa76d-79ff-4942-877e-031e9e136fbc" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:17 GMT", - "x-ms-correlation-request-id" : "0160b427-82f9-469a-b2c5-711c52e878e2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172318Z:0160b427-82f9-469a-b2c5-711c52e878e2", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ce4fe2a2-4859-4e97-8894-96100c09c9bf", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:31.9905423+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:56.6946378+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"21983002-c931-4fd6-9b07-84c41981d243\"\r\n}", - "x-ms-client-request-id" : "4cbfa76d-79ff-4942-877e-031e9e136fbc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1df45347-c313-478a-9b90-e057aca73c17" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:18 GMT", - "x-ms-correlation-request-id" : "82d48415-f859-4743-9ad0-8c52949e16ac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172319Z:82d48415-f859-4743-9ad0-8c52949e16ac", - "Expires" : "-1", - "Content-Length" : "2482", - "x-ms-request-id" : "e0befc5b-538b-4906-95e8-1ee581701544", - "Body" : "{\r\n \"name\": \"vm10059785e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95d0ce2d-60fd-4348-a084-5846d2cfe3c9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10059785e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-os-disk-1b2b27e5-2133-4d87-b979-4e3f5252ba60.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-data-disk-1-1222dcdb-629c-4414-a134-4a70cd96555f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-data-disk-2-9bd38a8f-af67-4ee2-b799-f428fb59060e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10059785e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "1df45347-c313-478a-9b90-e057aca73c17", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "67781f4d-b716-471e-a495-8b15dc8942b8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:23:19 GMT", - "x-ms-correlation-request-id" : "47bf2d77-0579-44b0-952e-0a5e296308fa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172319Z:47bf2d77-0579-44b0-952e-0a5e296308fa", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?api-version=2021-11-01", - "x-ms-request-id" : "8ef1d293-2395-42ac-b39d-5d1a9fd9394a", - "x-ms-client-request-id" : "67781f4d-b716-471e-a495-8b15dc8942b8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5025171f-b218-4481-99f6-489bfcf69621" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:29 GMT", - "x-ms-correlation-request-id" : "d7cf0413-d46d-4423-9330-d408b157a652", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172329Z:d7cf0413-d46d-4423-9330-d408b157a652", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "c63ad6da-27cb-44ad-911f-f83800929b31", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:19.3204854+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ef1d293-2395-42ac-b39d-5d1a9fd9394a\"\r\n}", - "x-ms-client-request-id" : "5025171f-b218-4481-99f6-489bfcf69621", - "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/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6c2dba3-8b19-4c87-922b-1d00193691e8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:05 GMT", - "x-ms-correlation-request-id" : "1e020125-de26-414d-b079-a75a677ecb55", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14934,Microsoft.Compute/GetOperation30Min;29934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172406Z:1e020125-de26-414d-b079-a75a677ecb55", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "bd6a7794-9dcd-499f-b646-197d1f2ac188", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:19.3204854+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ef1d293-2395-42ac-b39d-5d1a9fd9394a\"\r\n}", - "x-ms-client-request-id" : "e6c2dba3-8b19-4c87-922b-1d00193691e8", - "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/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b65b952-cd01-4008-975a-079129f8db11" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:35 GMT", - "x-ms-correlation-request-id" : "4f853124-a368-40c9-84eb-c0b91ca53971", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14915,Microsoft.Compute/GetOperation30Min;29915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172436Z:4f853124-a368-40c9-84eb-c0b91ca53971", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "8fdd5507-70dd-4f1a-9c3b-689367ec037c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:19.3204854+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ef1d293-2395-42ac-b39d-5d1a9fd9394a\"\r\n}", - "x-ms-client-request-id" : "5b65b952-cd01-4008-975a-079129f8db11", - "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/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e29f9247-32a9-4280-85c2-5de2cfc634ac" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:06 GMT", - "x-ms-correlation-request-id" : "981e24c9-9ed3-4f13-8cd8-3bd4d1d349f7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14891,Microsoft.Compute/GetOperation30Min;29891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172506Z:981e24c9-9ed3-4f13-8cd8-3bd4d1d349f7", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "2088b718-8d92-4c4c-b47c-f2a801dfdeed", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:19.3204854+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:03.3871203+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8ef1d293-2395-42ac-b39d-5d1a9fd9394a\"\r\n}", - "x-ms-client-request-id" : "e29f9247-32a9-4280-85c2-5de2cfc634ac", - "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/8ef1d293-2395-42ac-b39d-5d1a9fd9394a?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "12865308-3f20-4f81-a40d-ee25bc1b1b7f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:06 GMT", - "x-ms-correlation-request-id" : "2cea75fe-e3cd-4cdb-b94b-6166d5d92f63", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14890,Microsoft.Compute/GetOperation30Min;29890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172506Z:2cea75fe-e3cd-4cdb-b94b-6166d5d92f63", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "ffa0fbeb-d55a-4104-a183-ca3bc9d09bc5", - "x-ms-client-request-id" : "12865308-3f20-4f81-a40d-ee25bc1b1b7f" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2106d48b-9ac3-4a40-a70b-90c366669a80", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:07 GMT", - "x-ms-correlation-request-id" : "5c5090da-f923-4918-b26e-f5bda80e20a7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3938,Microsoft.Compute/LowCostGet30Min;31938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172507Z:5c5090da-f923-4918-b26e-f5bda80e20a7", - "Expires" : "-1", - "Content-Length" : "3935", - "x-ms-request-id" : "f11ff7c1-e774-429a-8d9d-2c026d4fb9eb", - "Body" : "{\r\n \"name\": \"vm10059785e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95d0ce2d-60fd-4348-a084-5846d2cfe3c9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10059785e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-os-disk-1b2b27e5-2133-4d87-b979-4e3f5252ba60.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-data-disk-1-1222dcdb-629c-4414-a134-4a70cd96555f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg06608e23fb662.blob.core.windows.net/vhds/vm10059785e-data-disk-2-9bd38a8f-af67-4ee2-b799-f428fb59060e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10059785e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm10059785e-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:25:01.2151569+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:25:01.2151569+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:25:01.2151569+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\": \"2021-01-29T17:25:01.2308184+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}", - "x-ms-client-request-id" : "2106d48b-9ac3-4a40-a70b-90c366669a80", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e/convertToManagedDisks?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c02d0da-1e7f-4722-bf94-33ba9d6af5c0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:07 GMT", - "x-ms-correlation-request-id" : "b24a0700-b380-4e27-81a0-3d4c417251b5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172507Z:b24a0700-b380-4e27-81a0-3d4c417251b5", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d31f5eb3-6971-411c-ab68-ad2399aec8bc?api-version=2021-11-01", - "x-ms-request-id" : "d31f5eb3-6971-411c-ab68-ad2399aec8bc", - "x-ms-client-request-id" : "4c02d0da-1e7f-4722-bf94-33ba9d6af5c0", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d31f5eb3-6971-411c-ab68-ad2399aec8bc?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d31f5eb3-6971-411c-ab68-ad2399aec8bc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cdcfcc61-1804-4413-a2ba-71444240db52" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11753", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:37 GMT", - "x-ms-correlation-request-id" : "68fe3bfa-655f-46c9-9b55-c5ebcf8e2c00", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14883,Microsoft.Compute/GetOperation30Min;29865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172538Z:68fe3bfa-655f-46c9-9b55-c5ebcf8e2c00", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "5d58468a-ee20-4902-a0e6-2e26656401ef", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:07.4966929+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d31f5eb3-6971-411c-ab68-ad2399aec8bc\"\r\n}", - "x-ms-client-request-id" : "cdcfcc61-1804-4413-a2ba-71444240db52", - "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/d31f5eb3-6971-411c-ab68-ad2399aec8bc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c18a309-36ba-48b8-a12b-4c2b2d7f2804" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11732", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:07 GMT", - "x-ms-correlation-request-id" : "cfb28f84-8a60-413f-ae8c-42861e102a47", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14874,Microsoft.Compute/GetOperation30Min;29834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172608Z:cfb28f84-8a60-413f-ae8c-42861e102a47", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ddc966c3-aaac-4aed-8e44-5bb55cc94c67", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:07.4966929+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:43.5764651+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d31f5eb3-6971-411c-ab68-ad2399aec8bc\"\r\n}", - "x-ms-client-request-id" : "2c18a309-36ba-48b8-a12b-4c2b2d7f2804", - "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/d31f5eb3-6971-411c-ab68-ad2399aec8bc?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c972159-6a60-4a4d-b787-0103b7b7b4a7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:08 GMT", - "x-ms-correlation-request-id" : "a228c799-d4f8-49f7-9f50-17f7773ddbbd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14873,Microsoft.Compute/GetOperation30Min;29833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172608Z:a228c799-d4f8-49f7-9f50-17f7773ddbbd", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "65499c89-a56b-4613-978e-7bcebbec87a1", - "x-ms-client-request-id" : "8c972159-6a60-4a4d-b787-0103b7b7b4a7" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "20154f55-224c-4981-ae58-aa4fc873dbc8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:08 GMT", - "x-ms-correlation-request-id" : "8305c3af-ffcc-4d86-9044-2af44a4d8a8b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3930,Microsoft.Compute/LowCostGet30Min;31911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172608Z:8305c3af-ffcc-4d86-9044-2af44a4d8a8b", - "Expires" : "-1", - "Content-Length" : "2932", - "x-ms-request-id" : "e949e1dd-8d31-4b7a-905b-a18ee937b6b6", - "Body" : "{\r\n \"name\": \"vm10059785e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/virtualMachines/vm10059785e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95d0ce2d-60fd-4348-a084-5846d2cfe3c9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm10059785e-os-disk_d837d97d09d840f2ad339a5219db1c83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/disks/vm10059785e-os-disk_d837d97d09d840f2ad339a5219db1c83\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm10059785e_disk-1_b72fdee5db3e4f9886f83778b10262d9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/disks/vm10059785e_disk-1_b72fdee5db3e4f9886f83778b10262d9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm10059785e_disk-2_915364e99e714469980be6c97f57cce2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv08105c5/providers/Microsoft.Compute/disks/vm10059785e_disk-2_915364e99e714469980be6c97f57cce2\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10059785e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv08105c5/providers/Microsoft.Network/networkInterfaces/nic2123219e8bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "20154f55-224c-4981-ae58-aa4fc873dbc8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv08105c5?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9b57966-18cf-4510-b0a4-56256fab7cb1", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:11 GMT", - "x-ms-correlation-request-id" : "edb16513-09ce-44ae-9dd9-22283363530a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172612Z:edb16513-09ce-44ae-9dd9-22283363530a", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "edb16513-09ce-44ae-9dd9-22283363530a", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwODEwNUM1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm10059785e", "rgcomv08105c5", "nic2123219e8bd", "vnet621652e1d0", "stg06608e23fb662" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVHD.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVHD.json deleted file mode 100644 index d122dcdf23d1..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVHD.json +++ /dev/null @@ -1,2141 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv61802ac?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3b927df-99c0-4dfb-ac66-cd4e217ddf8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "c1f4dc58-4e0f-418f-a26c-5578cd3df5fc", - "Date" : "Mon, 19 Apr 2021 07:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070554Z:c1f4dc58-4e0f-418f-a26c-5578cd3df5fc", - "Expires" : "-1", - "x-ms-request-id" : "c1f4dc58-4e0f-418f-a26c-5578cd3df5fc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac\",\"name\":\"rgcomv61802ac\",\"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/rgcomv61802ac/providers/Microsoft.Network/publicIPAddresses/pip2379199d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6613ce83-e6b2-493c-8250-0cbf1a372f41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "5715ddfc-251f-44c4-858f-64da2162e2c0", - "Date" : "Mon, 19 Apr 2021 07:05:59 GMT", - "x-ms-arm-service-request-id" : "bccb224d-6cd1-40c6-8b68-06f1c4db4fb6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070600Z:5715ddfc-251f-44c4-858f-64da2162e2c0", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5940d2c5-4d8d-47d3-a650-487971e9414c?api-version=2023-02-01", - "x-ms-request-id" : "5940d2c5-4d8d-47d3-a650-487971e9414c", - "Body" : "{\r\n \"name\": \"pip2379199d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/publicIPAddresses/pip2379199d\",\r\n \"etag\": \"W/\\\"97d4584f-d2ee-4bf9-95e0-58326ca26ba5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b92afe6e-d415-43b7-9267-29a702c64226\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip48168e\",\r\n \"fqdn\": \"pip48168e.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "6613ce83-e6b2-493c-8250-0cbf1a372f41", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "73decfcb-0047-4983-9220-d9f847677e68", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "7bbc77c8-3a56-4dfb-92b4-e9d01ed7a398", - "Date" : "Mon, 19 Apr 2021 07:06:00 GMT", - "x-ms-arm-service-request-id" : "a147a417-8f46-46bc-8105-910c33c115a2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070600Z:7bbc77c8-3a56-4dfb-92b4-e9d01ed7a398", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/62d63c71-6dfa-44b4-ad66-75dc324a883d?api-version=2023-02-01", - "x-ms-request-id" : "62d63c71-6dfa-44b4-ad66-75dc324a883d", - "Body" : "{\r\n \"name\": \"vnet28050196f5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5\",\r\n \"etag\": \"W/\\\"acf5e460-9c8b-4684-a7fe-dfaac580b65b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7817252d-12ce-4c98-a582-9ff2b6a5c30e\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"acf5e460-9c8b-4684-a7fe-dfaac580b65b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "73decfcb-0047-4983-9220-d9f847677e68", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Storage/storageAccounts/stg70845f4a30cf0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b66a433-ff74-4573-b260-04c10fad1390", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "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" : "1197", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "6cc8f221-fbb2-4610-9463-6ee060fc0d78", - "Date" : "Mon, 19 Apr 2021 07:06:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070601Z:6cc8f221-fbb2-4610-9463-6ee060fc0d78", - "Expires" : "-1", - "x-ms-request-id" : "2b45377c-1d9b-4365-9e1c-f28387e967cf", - "Body" : "", - "x-ms-client-request-id" : "7b66a433-ff74-4573-b260-04c10fad1390", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b45377c-1d9b-4365-9e1c-f28387e967cf?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5940d2c5-4d8d-47d3-a650-487971e9414c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a1d4a3f-5932-4eaf-824a-d09f1a9e4ae3" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba6aa5e3-36ae-44ca-9e1d-95d9281e30ce", - "Date" : "Mon, 19 Apr 2021 07:06:01 GMT", - "x-ms-arm-service-request-id" : "0a513c51-c661-44a0-8dd0-db179bf44dd2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070601Z:ba6aa5e3-36ae-44ca-9e1d-95d9281e30ce", - "Expires" : "-1", - "x-ms-request-id" : "24afb772-50fb-4e62-8240-fa2152077966", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "9a1d4a3f-5932-4eaf-824a-d09f1a9e4ae3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/publicIPAddresses/pip2379199d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb855948-4c2d-405e-aa3a-462d46a750e0" - }, - "Response" : { - "content-length" : "771", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0bcbbc58-0b13-4d38-9591-f4cebb1cbf02", - "Date" : "Mon, 19 Apr 2021 07:06:01 GMT", - "x-ms-arm-service-request-id" : "bded9272-cbde-49ec-9450-463bb79f6345", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"bc02b3df-880d-4ac4-b0d9-e919cd07e238\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070602Z:0bcbbc58-0b13-4d38-9591-f4cebb1cbf02", - "Expires" : "-1", - "x-ms-request-id" : "bd5642b6-ba62-4cfd-8966-c34073230699", - "Body" : "{\r\n \"name\": \"pip2379199d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/publicIPAddresses/pip2379199d\",\r\n \"etag\": \"W/\\\"bc02b3df-880d-4ac4-b0d9-e919cd07e238\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b92afe6e-d415-43b7-9267-29a702c64226\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip48168e\",\r\n \"fqdn\": \"pip48168e.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "fb855948-4c2d-405e-aa3a-462d46a750e0", - "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/62d63c71-6dfa-44b4-ad66-75dc324a883d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b46afde-d616-478e-a927-08c81ea816d0" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "121c23c6-8639-4700-8749-ecaf578ed73c", - "Date" : "Mon, 19 Apr 2021 07:06:03 GMT", - "x-ms-arm-service-request-id" : "8a0705c8-0675-4a53-a50e-bb1e6e7b8692", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070604Z:121c23c6-8639-4700-8749-ecaf578ed73c", - "Expires" : "-1", - "x-ms-request-id" : "787af990-cc7b-4f23-acb2-69f947384cd2", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "7b46afde-d616-478e-a927-08c81ea816d0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "13ac7b34-4150-40a8-813f-63bb394bba39" - }, - "Response" : { - "content-length" : "1308", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0f0de86-fd0b-4865-a97a-b5eb5920bf2e", - "Date" : "Mon, 19 Apr 2021 07:06:04 GMT", - "x-ms-arm-service-request-id" : "04ff8b8c-6e54-4c7d-9c1c-dc6a3e399c5c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"d534378d-ea0f-4061-b06b-11cd96b4da77\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070604Z:c0f0de86-fd0b-4865-a97a-b5eb5920bf2e", - "Expires" : "-1", - "x-ms-request-id" : "38b23018-9486-4a94-aa1a-bc669724b227", - "Body" : "{\r\n \"name\": \"vnet28050196f5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5\",\r\n \"etag\": \"W/\\\"d534378d-ea0f-4061-b06b-11cd96b4da77\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7817252d-12ce-4c98-a582-9ff2b6a5c30e\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d534378d-ea0f-4061-b06b-11cd96b4da77\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "13ac7b34-4150-40a8-813f-63bb394bba39", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2bf7504-c0ca-4dd4-b65c-694a69625e0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "50c16b35-acb9-4dad-83be-0864df2c394d", - "Date" : "Mon, 19 Apr 2021 07:06:06 GMT", - "x-ms-arm-service-request-id" : "361ec6db-f0f6-4395-8add-35ebd6a9b958", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070607Z:50c16b35-acb9-4dad-83be-0864df2c394d", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5de896c-b6b5-44f2-bb32-343a4ed8d632?api-version=2023-02-01", - "x-ms-request-id" : "f5de896c-b6b5-44f2-bb32-343a4ed8d632", - "Body" : "{\r\n \"name\": \"nic89858df8d89\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89\",\r\n \"etag\": \"W/\\\"d5a524da-04c7-4ff2-b520-359b6894affc\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"90caa3ba-e817-41b2-a027-fc34d5ef7f31\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d5a524da-04c7-4ff2-b520-359b6894affc\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/publicIPAddresses/pip2379199d\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet28050196f5/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\": \"fusro4gockmezjmct5zlnjodbg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "e2bf7504-c0ca-4dd4-b65c-694a69625e0b", - "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/westus/asyncoperations/2b45377c-1d9b-4365-9e1c-f28387e967cf?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e55aa8ad-290a-413b-bbdf-3b6eb6cacfe2" - }, - "Response" : { - "content-length" : "1815", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6244e432-c251-4ade-a048-3131986e1520", - "Date" : "Mon, 19 Apr 2021 07:06:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070618Z:6244e432-c251-4ade-a048-3131986e1520", - "Expires" : "-1", - "x-ms-request-id" : "4490658e-316d-4115-8b3a-f1df09e180f8", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Storage/storageAccounts/stg70845f4a30cf0\",\"name\":\"stg70845f4a30cf0\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:05:59.5371832Z\",\"key2\":\"2021-04-19T07:05:59.5371832Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:05:59.5371832Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:05:59.5371832Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:05:59.4590274Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg70845f4a30cf0.dfs.core.windows.net/\",\"web\":\"https://stg70845f4a30cf0.z22.web.core.windows.net/\",\"blob\":\"https://stg70845f4a30cf0.blob.core.windows.net/\",\"queue\":\"https://stg70845f4a30cf0.queue.core.windows.net/\",\"table\":\"https://stg70845f4a30cf0.table.core.windows.net/\",\"file\":\"https://stg70845f4a30cf0.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg70845f4a30cf0-secondary.dfs.core.windows.net/\",\"web\":\"https://stg70845f4a30cf0-secondary.z22.web.core.windows.net/\",\"blob\":\"https://stg70845f4a30cf0-secondary.blob.core.windows.net/\",\"queue\":\"https://stg70845f4a30cf0-secondary.queue.core.windows.net/\",\"table\":\"https://stg70845f4a30cf0-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "e55aa8ad-290a-413b-bbdf-3b6eb6cacfe2", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Storage/storageAccounts/stg70845f4a30cf0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb17eef4-a552-4888-865e-13d297595111", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1815", - "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" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f54e2dda-c98e-475c-9874-3bad3ab73aa3", - "Date" : "Mon, 19 Apr 2021 07:06:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070619Z:f54e2dda-c98e-475c-9874-3bad3ab73aa3", - "Expires" : "-1", - "x-ms-request-id" : "bf3c08e3-e568-4096-92d7-f277be2f26e4", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Storage/storageAccounts/stg70845f4a30cf0\",\"name\":\"stg70845f4a30cf0\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:05:59.5371832Z\",\"key2\":\"2021-04-19T07:05:59.5371832Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:05:59.5371832Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:05:59.5371832Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:05:59.4590274Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg70845f4a30cf0.dfs.core.windows.net/\",\"web\":\"https://stg70845f4a30cf0.z22.web.core.windows.net/\",\"blob\":\"https://stg70845f4a30cf0.blob.core.windows.net/\",\"queue\":\"https://stg70845f4a30cf0.queue.core.windows.net/\",\"table\":\"https://stg70845f4a30cf0.table.core.windows.net/\",\"file\":\"https://stg70845f4a30cf0.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg70845f4a30cf0-secondary.dfs.core.windows.net/\",\"web\":\"https://stg70845f4a30cf0-secondary.z22.web.core.windows.net/\",\"blob\":\"https://stg70845f4a30cf0-secondary.blob.core.windows.net/\",\"queue\":\"https://stg70845f4a30cf0-secondary.queue.core.windows.net/\",\"table\":\"https://stg70845f4a30cf0-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "eb17eef4-a552-4888-865e-13d297595111", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "904a7099-d947-4409-9bd5-e91132e99d43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2817", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "b37f5dfc-d2ee-4c6e-aa6e-29f03261455c", - "Date" : "Mon, 19 Apr 2021 07:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070622Z:b37f5dfc-d2ee-4c6e-aa6e-29f03261455c", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ba9dc79b-2a27-4d44-8483-0c51f7de5b17?api-version=2021-11-01", - "x-ms-request-id" : "ba9dc79b-2a27-4d44-8483-0c51f7de5b17", - "Body" : "{\r\n \"name\": \"vm162734a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a00c4320-ffaa-457f-a6ce-57689f41dbb5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm162734a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-os-disk-b779f0c4-2659-44ab-9bb9-87c73ea21fee.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-1-49c724e5-8e41-4b41-b93b-58f83da9132e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-2-e6d063ac-6c8e-4ed8-9b2b-f7a91cf9dcdb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-3-069c1af6-dd01-4ad2-9ef6-318a12beb5d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm162734a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "904a7099-d947-4409-9bd5-e91132e99d43", - "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/ba9dc79b-2a27-4d44-8483-0c51f7de5b17?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce8e5245-a7cd-447c-92ff-69e8b281750a" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf95e5ce-59e9-47d3-9b84-f13581116021", - "Date" : "Mon, 19 Apr 2021 07:06:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070633Z:bf95e5ce-59e9-47d3-9b84-f13581116021", - "Expires" : "-1", - "x-ms-request-id" : "9bb21f1b-047a-46c5-b422-eec677c3ee10", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:06:21.6048662+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba9dc79b-2a27-4d44-8483-0c51f7de5b17\"\r\n}", - "x-ms-client-request-id" : "ce8e5245-a7cd-447c-92ff-69e8b281750a", - "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/ba9dc79b-2a27-4d44-8483-0c51f7de5b17?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b2b6805-ae12-48be-bb78-992b2697a095" - }, - "Response" : { - "content-length" : "184", - "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" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b03b39f-942e-4377-9140-4727f611228d", - "Date" : "Mon, 19 Apr 2021 07:07:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070708Z:0b03b39f-942e-4377-9140-4727f611228d", - "Expires" : "-1", - "x-ms-request-id" : "9fd276b2-be40-4ce7-b3c8-642dd2424518", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:06:21.6048662+00:00\",\r\n \"endTime\": \"2021-04-19T07:06:48.1831465+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ba9dc79b-2a27-4d44-8483-0c51f7de5b17\"\r\n}", - "x-ms-client-request-id" : "1b2b6805-ae12-48be-bb78-992b2697a095", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7483ace-9a76-4e45-96f9-cde11dd87185" - }, - "Response" : { - "content-length" : "2845", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4dedb1ca-0c8f-4677-adc4-078af3aca5e0", - "Date" : "Mon, 19 Apr 2021 07:07:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070708Z:4dedb1ca-0c8f-4677-adc4-078af3aca5e0", - "Expires" : "-1", - "x-ms-request-id" : "ec35cdc0-efa1-4875-a307-96116fecee2d", - "Body" : "{\r\n \"name\": \"vm162734a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a00c4320-ffaa-457f-a6ce-57689f41dbb5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm162734a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-os-disk-b779f0c4-2659-44ab-9bb9-87c73ea21fee.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-1-49c724e5-8e41-4b41-b93b-58f83da9132e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-2-e6d063ac-6c8e-4ed8-9b2b-f7a91cf9dcdb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-3-069c1af6-dd01-4ad2-9ef6-318a12beb5d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm162734a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "a7483ace-9a76-4e45-96f9-cde11dd87185", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a1ce5ba-627b-462b-8f63-626e3f4f9a38", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "750", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "eb1416f9-08dc-4c98-a134-e79e7439f527", - "Date" : "Mon, 19 Apr 2021 07:07:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070714Z:eb1416f9-08dc-4c98-a134-e79e7439f527", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4090b423-4a0e-48f2-bea2-9a5986752021?api-version=2021-11-01", - "x-ms-request-id" : "4090b423-4a0e-48f2-bea2-9a5986752021", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "9a1ce5ba-627b-462b-8f63-626e3f4f9a38", - "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/4090b423-4a0e-48f2-bea2-9a5986752021?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "85ef9045-7bfe-468b-b1a7-4783e735707c" - }, - "Response" : { - "content-length" : "134", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f183f3f-6fed-4382-82ef-5d72ecfd6a02", - "Date" : "Mon, 19 Apr 2021 07:07:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070744Z:0f183f3f-6fed-4382-82ef-5d72ecfd6a02", - "Expires" : "-1", - "x-ms-request-id" : "2ff61a8a-d999-4259-b39e-60af42f435e2", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:07:13.1207454+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4090b423-4a0e-48f2-bea2-9a5986752021\"\r\n}", - "x-ms-client-request-id" : "85ef9045-7bfe-468b-b1a7-4783e735707c", - "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/4090b423-4a0e-48f2-bea2-9a5986752021?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2feea313-5b1f-491a-a624-aee9507de1c0" - }, - "Response" : { - "content-length" : "184", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4316da50-f6b3-44d0-a3b9-7b380fc5a065", - "Date" : "Mon, 19 Apr 2021 07:08:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070814Z:4316da50-f6b3-44d0-a3b9-7b380fc5a065", - "Expires" : "-1", - "x-ms-request-id" : "510dd0a9-3764-49c4-bacd-0b383bf6d522", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:07:13.1207454+00:00\",\r\n \"endTime\": \"2021-04-19T07:07:59.7771683+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4090b423-4a0e-48f2-bea2-9a5986752021\"\r\n}", - "x-ms-client-request-id" : "2feea313-5b1f-491a-a624-aee9507de1c0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "28b742e7-d9cc-40e4-aa46-351fc027061a" - }, - "Response" : { - "content-length" : "751", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e8fe0bb-9aef-44cd-8437-b766513740de", - "Date" : "Mon, 19 Apr 2021 07:08:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070815Z:2e8fe0bb-9aef-44cd-8437-b766513740de", - "Expires" : "-1", - "x-ms-request-id" : "74c244ed-2554-4a9e-bc6e-2b056065e298", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "28b742e7-d9cc-40e4-aa46-351fc027061a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "41a78559-1d5c-4267-b71f-f306e76ce475", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3678", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "088f5519-90d1-4963-8ebb-e4fe82cec199", - "Date" : "Mon, 19 Apr 2021 07:08:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070815Z:088f5519-90d1-4963-8ebb-e4fe82cec199", - "Expires" : "-1", - "x-ms-request-id" : "01e73987-629e-4cb2-9d74-243461fee820", - "Body" : "{\r\n \"name\": \"vm162734a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a00c4320-ffaa-457f-a6ce-57689f41dbb5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm162734a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-os-disk-b779f0c4-2659-44ab-9bb9-87c73ea21fee.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-1-49c724e5-8e41-4b41-b93b-58f83da9132e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-2-e6d063ac-6c8e-4ed8-9b2b-f7a91cf9dcdb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-3-069c1af6-dd01-4ad2-9ef6-318a12beb5d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm162734a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "41a78559-1d5c-4267-b71f-f306e76ce475", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "521215e7-beca-4c73-b2c2-6c42a6cb06bd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "1afe969a-7e10-4ccf-82cf-19a935484450", - "Date" : "Mon, 19 Apr 2021 07:08:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070815Z:1afe969a-7e10-4ccf-82cf-19a935484450", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5fbd00f1-d3e8-452f-baf6-efcf2027743e?api-version=2021-11-01", - "x-ms-request-id" : "5fbd00f1-d3e8-452f-baf6-efcf2027743e", - "x-ms-client-request-id" : "521215e7-beca-4c73-b2c2-6c42a6cb06bd", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5fbd00f1-d3e8-452f-baf6-efcf2027743e?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "17903899-07b9-410b-913f-71f91fb74669", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "065d90ad-8af9-4f22-a096-b2df263ea4ad", - "Date" : "Mon, 19 Apr 2021 07:09:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070916Z:065d90ad-8af9-4f22-a096-b2df263ea4ad", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/64025994-bad1-49ae-b03b-cadb2d74379f?api-version=2021-11-01", - "x-ms-request-id" : "64025994-bad1-49ae-b03b-cadb2d74379f", - "x-ms-client-request-id" : "17903899-07b9-410b-913f-71f91fb74669", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/64025994-bad1-49ae-b03b-cadb2d74379f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/64025994-bad1-49ae-b03b-cadb2d74379f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e49f8e3-452a-4351-9e04-dea3ddcebd6e" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88db579c-d0c7-4625-8cb0-89dbea346641", - "Date" : "Mon, 19 Apr 2021 07:09:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T070926Z:88db579c-d0c7-4625-8cb0-89dbea346641", - "Expires" : "-1", - "x-ms-request-id" : "bd85b651-92e1-4539-9fd6-0cc1668fd742", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:09:16.0744808+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"64025994-bad1-49ae-b03b-cadb2d74379f\"\r\n}", - "x-ms-client-request-id" : "4e49f8e3-452a-4351-9e04-dea3ddcebd6e", - "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/64025994-bad1-49ae-b03b-cadb2d74379f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "60be79db-e6e2-4761-b659-d37b11958a52" - }, - "Response" : { - "content-length" : "184", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95074a85-5461-4306-8464-df89ecb5a20f", - "Date" : "Mon, 19 Apr 2021 07:10:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071002Z:95074a85-5461-4306-8464-df89ecb5a20f", - "Expires" : "-1", - "x-ms-request-id" : "50c37d10-4115-44c7-ac54-568961a83eef", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:09:16.0744808+00:00\",\r\n \"endTime\": \"2021-04-19T07:09:56.4965076+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"64025994-bad1-49ae-b03b-cadb2d74379f\"\r\n}", - "x-ms-client-request-id" : "60be79db-e6e2-4761-b659-d37b11958a52", - "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/64025994-bad1-49ae-b03b-cadb2d74379f?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9761165-1a16-4f77-b147-7577b6241543" - }, - "Response" : { - "content-length" : "0", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e21c8cc1-5ef3-4d48-97ea-0baab72edeea", - "Date" : "Mon, 19 Apr 2021 07:10:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071002Z:e21c8cc1-5ef3-4d48-97ea-0baab72edeea", - "Expires" : "-1", - "x-ms-request-id" : "ba00f838-d530-417c-8ca8-f860155e1757", - "x-ms-client-request-id" : "f9761165-1a16-4f77-b147-7577b6241543" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "56bf9658-8f21-4e36-8ce4-8827fc66db7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5451", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27294bf3-994a-4342-a2d7-70726ef105ed", - "Date" : "Mon, 19 Apr 2021 07:10:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071003Z:27294bf3-994a-4342-a2d7-70726ef105ed", - "Expires" : "-1", - "x-ms-request-id" : "e54c9d8f-065c-44ee-9e09-e6155801cb48", - "Body" : "{\r\n \"name\": \"vm162734a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"a00c4320-ffaa-457f-a6ce-57689f41dbb5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm162734a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-os-disk-b779f0c4-2659-44ab-9bb9-87c73ea21fee.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-1-49c724e5-8e41-4b41-b93b-58f83da9132e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-2-e6d063ac-6c8e-4ed8-9b2b-f7a91cf9dcdb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-3-069c1af6-dd01-4ad2-9ef6-318a12beb5d1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm162734a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic89858df8d89\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm162734a-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:09:54.4183454+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:09:54.4183454+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:09:54.4183454+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:09:54.4183454+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\": \"2021-04-19T07:09:54.4339768+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "56bf9658-8f21-4e36-8ce4-8827fc66db7c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm162734a/generalize?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0213764f-1953-4550-8bac-a446c85f87e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bcb8ae9b-38ff-42b8-946c-898154c31107", - "Date" : "Mon, 19 Apr 2021 07:10:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071003Z:bcb8ae9b-38ff-42b8-946c-898154c31107", - "Expires" : "-1", - "x-ms-request-id" : "70b90e7a-843a-44ef-aeec-a757154f37bc", - "x-ms-client-request-id" : "0213764f-1953-4550-8bac-a446c85f87e5" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee3becc8-80ed-445b-8503-dac573da9489", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1490", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "aecc780f-793f-48c5-87c2-8246c594703b", - "Date" : "Mon, 19 Apr 2021 07:10:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071013Z:aecc780f-793f-48c5-87c2-8246c594703b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/67410050-6c42-4932-888c-c5a6688a4c28?api-version=2021-11-01", - "x-ms-request-id" : "67410050-6c42-4932-888c-c5a6688a4c28", - "Body" : "{\r\n \"name\": \"img975351\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-os-disk-b779f0c4-2659-44ab-9bb9-87c73ea21fee.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-1-49c724e5-8e41-4b41-b93b-58f83da9132e.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-2-e6d063ac-6c8e-4ed8-9b2b-f7a91cf9dcdb.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-3-069c1af6-dd01-4ad2-9ef6-318a12beb5d1.vhd\",\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "x-ms-client-request-id" : "ee3becc8-80ed-445b-8503-dac573da9489", - "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/67410050-6c42-4932-888c-c5a6688a4c28?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b848463c-692a-4fc6-8c0d-db887dbf2196" - }, - "Response" : { - "content-length" : "184", - "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" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63c38e8c-1ad4-41aa-b738-f7b6af001722", - "Date" : "Mon, 19 Apr 2021 07:10:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071043Z:63c38e8c-1ad4-41aa-b738-f7b6af001722", - "Expires" : "-1", - "x-ms-request-id" : "13265ab6-bb80-45aa-b1dd-9eaeaaa7c5be", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:10:07.3871652+00:00\",\r\n \"endTime\": \"2021-04-19T07:10:37.6373723+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"67410050-6c42-4932-888c-c5a6688a4c28\"\r\n}", - "x-ms-client-request-id" : "b848463c-692a-4fc6-8c0d-db887dbf2196", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "77a11ac3-a7da-42dd-a3f9-01c2f73108a8" - }, - "Response" : { - "content-length" : "1606", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f79df84-4e14-4c29-b77a-3275ed4f321f", - "Date" : "Mon, 19 Apr 2021 07:10:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071044Z:8f79df84-4e14-4c29-b77a-3275ed4f321f", - "Expires" : "-1", - "x-ms-request-id" : "0cadacd0-b4d8-4cd5-92b8-0ac4442cdf17", - "Body" : "{\r\n \"name\": \"img975351\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-os-disk-b779f0c4-2659-44ab-9bb9-87c73ea21fee.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-1-49c724e5-8e41-4b41-b93b-58f83da9132e.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-2-e6d063ac-6c8e-4ed8-9b2b-f7a91cf9dcdb.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"diskSizeGB\": 60,\r\n \"blobUri\": \"https://stg70845f4a30cf0.blob.core.windows.net/vhds/vm162734a-data-disk-3-069c1af6-dd01-4ad2-9ef6-318a12beb5d1.vhd\",\r\n \"caching\": \"ReadOnly\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "x-ms-client-request-id" : "77a11ac3-a7da-42dd-a3f9-01c2f73108a8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "83925114-1cad-4e8b-9375-a290db384778", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "230c32ab-46e0-46bf-ab37-645babbd9eb7", - "Date" : "Mon, 19 Apr 2021 07:10:46 GMT", - "x-ms-arm-service-request-id" : "89a8fe16-9c8d-4617-91d0-004d851bd2b3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071046Z:230c32ab-46e0-46bf-ab37-645babbd9eb7", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4c20fa18-80c6-4e69-91cb-3082525f85b4?api-version=2023-02-01", - "x-ms-request-id" : "4c20fa18-80c6-4e69-91cb-3082525f85b4", - "Body" : "{\r\n \"name\": \"vnet741767fe61\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61\",\r\n \"etag\": \"W/\\\"eb71e8e0-2b17-4869-8f73-55540454b92e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8b5a9a75-8ad4-4966-9d35-305921e82b0d\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61/subnets/subnet1\",\r\n \"etag\": \"W/\\\"eb71e8e0-2b17-4869-8f73-55540454b92e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "83925114-1cad-4e8b-9375-a290db384778", - "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/4c20fa18-80c6-4e69-91cb-3082525f85b4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "27b6f073-edc1-47a9-be35-eba297bf1dcd" - }, - "Response" : { - "content-length" : "29", - "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" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "438f25db-dd2a-402b-aca1-c2ebf288447d", - "Date" : "Mon, 19 Apr 2021 07:10:49 GMT", - "x-ms-arm-service-request-id" : "3dc8a36e-3899-4a9a-9dc6-3dbb8b636754", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071050Z:438f25db-dd2a-402b-aca1-c2ebf288447d", - "Expires" : "-1", - "x-ms-request-id" : "d368c681-9435-4aba-b61b-44f7d1095f9f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "27b6f073-edc1-47a9-be35-eba297bf1dcd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f38afff-918d-4708-8f14-26f34b5f61a0" - }, - "Response" : { - "content-length" : "1308", - "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" : "58defdda-fa26-4d75-aef0-238f58068db2", - "Date" : "Mon, 19 Apr 2021 07:10:50 GMT", - "x-ms-arm-service-request-id" : "291a6617-c658-408b-aa9b-72d3978cd7a6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"f80aaaea-deb7-4e3e-a0c6-0b32eedb7ad0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071050Z:58defdda-fa26-4d75-aef0-238f58068db2", - "Expires" : "-1", - "x-ms-request-id" : "ede1f0cd-3d88-485f-9a8c-9ac47a17ac41", - "Body" : "{\r\n \"name\": \"vnet741767fe61\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61\",\r\n \"etag\": \"W/\\\"f80aaaea-deb7-4e3e-a0c6-0b32eedb7ad0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b5a9a75-8ad4-4966-9d35-305921e82b0d\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f80aaaea-deb7-4e3e-a0c6-0b32eedb7ad0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "3f38afff-918d-4708-8f14-26f34b5f61a0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic1419168f06a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1c2503e-ec67-4873-9df2-a6adad60c591", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1660", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "9da6445f-f4a7-4803-9556-3aa3e46d82ba", - "Date" : "Mon, 19 Apr 2021 07:10:53 GMT", - "x-ms-arm-service-request-id" : "57e1a4e7-e668-4244-9f42-6a5c097ede00", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071054Z:9da6445f-f4a7-4803-9556-3aa3e46d82ba", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd69b1fb-fc4b-48ce-b337-4f148681fe9a?api-version=2023-02-01", - "x-ms-request-id" : "fd69b1fb-fc4b-48ce-b337-4f148681fe9a", - "Body" : "{\r\n \"name\": \"nic1419168f06a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic1419168f06a\",\r\n \"etag\": \"W/\\\"cfa66f12-c881-497f-868b-13fe3f05b304\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d66d946e-5852-49da-ae40-b63ed669bf30\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic1419168f06a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cfa66f12-c881-497f-868b-13fe3f05b304\\\"\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet741767fe61/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\": \"ownfvc4urjtethjvgbmsd0blbf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "d1c2503e-ec67-4873-9df2-a6adad60c591", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm243923d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b38ad18-80ba-4fd8-bdd6-c2ecab06f67f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2378", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "855bb64b-dbec-4cc0-bd48-c6d7a81c8977", - "Date" : "Mon, 19 Apr 2021 07:10:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071058Z:855bb64b-dbec-4cc0-bd48-c6d7a81c8977", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3dde4432-188c-4913-9a74-93ab6e0c4b49?api-version=2021-11-01", - "x-ms-request-id" : "3dde4432-188c-4913-9a74-93ab6e0c4b49", - "Body" : "{\r\n \"name\": \"vm243923d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm243923d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8f5dd2c5-a9ae-4338-8484-e7590cfe564a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm243923d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic1419168f06a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3b38ad18-80ba-4fd8-bdd6-c2ecab06f67f", - "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/3dde4432-188c-4913-9a74-93ab6e0c4b49?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "10ba9947-5a07-4456-9cdf-2322fa7a8c10" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44c54989-0953-41f3-9839-301ea5c38b6d", - "Date" : "Mon, 19 Apr 2021 07:11:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071109Z:44c54989-0953-41f3-9839-301ea5c38b6d", - "Expires" : "-1", - "x-ms-request-id" : "b88f21e1-3188-4afa-88af-698d6faebf26", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:10:57.6686381+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3dde4432-188c-4913-9a74-93ab6e0c4b49\"\r\n}", - "x-ms-client-request-id" : "10ba9947-5a07-4456-9cdf-2322fa7a8c10", - "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/3dde4432-188c-4913-9a74-93ab6e0c4b49?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f1b01bd-a1fa-45bd-bd5d-77e33962ce54" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ce947f5-fe02-40e9-a066-9a203cec4448", - "Date" : "Mon, 19 Apr 2021 07:11:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071144Z:6ce947f5-fe02-40e9-a066-9a203cec4448", - "Expires" : "-1", - "x-ms-request-id" : "82b4bce1-dd2c-4545-81cf-ace5d0f3324e", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:10:57.6686381+00:00\",\r\n \"endTime\": \"2021-04-19T07:11:30.2468328+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3dde4432-188c-4913-9a74-93ab6e0c4b49\"\r\n}", - "x-ms-client-request-id" : "2f1b01bd-a1fa-45bd-bd5d-77e33962ce54", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm243923d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c1fc513-00a9-41ec-9584-3373ac373837" - }, - "Response" : { - "content-length" : "3403", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7476d0a9-efd0-4925-bbc6-41c052eb3699", - "Date" : "Mon, 19 Apr 2021 07:11:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071144Z:7476d0a9-efd0-4925-bbc6-41c052eb3699", - "Expires" : "-1", - "x-ms-request-id" : "53f92ab0-2847-44f3-b2a0-744337b70243", - "Body" : "{\r\n \"name\": \"vm243923d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm243923d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8f5dd2c5-a9ae-4338-8484-e7590cfe564a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm243923d_disk1_a57193ddf23a4cd39525ebc823ef9ef4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm243923d_disk1_a57193ddf23a4cd39525ebc823ef9ef4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm243923d_disk2_dbd96769f62d482c9ad5ad082116e62e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm243923d_disk2_dbd96769f62d482c9ad5ad082116e62e\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm243923d_disk3_56afb43cd2a2400684eb73bb3193c035\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm243923d_disk3_56afb43cd2a2400684eb73bb3193c035\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm243923d_disk4_ca881f08b6f347a0bb7d830acbb46281\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm243923d_disk4_ca881f08b6f347a0bb7d830acbb46281\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm243923d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic1419168f06a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "9c1fc513-00a9-41ec-9584-3373ac373837", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c9b6538-71b8-4ea1-9e39-540113b81739", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "7d8350af-0f25-453e-9099-d31b31a20a02", - "Date" : "Mon, 19 Apr 2021 07:11:50 GMT", - "x-ms-arm-service-request-id" : "b0f7b9cc-5507-40d0-8727-1e042d28090a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071150Z:7d8350af-0f25-453e-9099-d31b31a20a02", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6207769a-c836-4ed3-a74c-6b12aa1bdfcb?api-version=2023-02-01", - "x-ms-request-id" : "6207769a-c836-4ed3-a74c-6b12aa1bdfcb", - "Body" : "{\r\n \"name\": \"vnet41255d54e8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8\",\r\n \"etag\": \"W/\\\"628000ba-3e7c-47cc-809f-227294dd6934\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9e8479dc-2371-4d5b-b250-ab45073d9e25\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8/subnets/subnet1\",\r\n \"etag\": \"W/\\\"628000ba-3e7c-47cc-809f-227294dd6934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "9c9b6538-71b8-4ea1-9e39-540113b81739", - "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/6207769a-c836-4ed3-a74c-6b12aa1bdfcb?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "409a1a69-12d1-49de-9d8f-b5a948d6c81e" - }, - "Response" : { - "content-length" : "29", - "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" : "38f0ddff-7b9f-4d4b-89fe-41e51addfede", - "Date" : "Mon, 19 Apr 2021 07:11:53 GMT", - "x-ms-arm-service-request-id" : "617706b0-ce94-41d7-a6f3-5e03fe3e75ae", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071153Z:38f0ddff-7b9f-4d4b-89fe-41e51addfede", - "Expires" : "-1", - "x-ms-request-id" : "65c55e6f-b1e0-4fe9-8871-145dea39fc7f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "409a1a69-12d1-49de-9d8f-b5a948d6c81e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cad05569-ab74-495c-befa-1f024725e95f" - }, - "Response" : { - "content-length" : "1308", - "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" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b85e2700-f94f-499d-af22-33e0958f7b85", - "Date" : "Mon, 19 Apr 2021 07:11:53 GMT", - "x-ms-arm-service-request-id" : "f6fb80a4-ef02-4d35-965e-48c952dde884", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"05255286-4852-46c7-a189-e6d785ecc49e\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071153Z:b85e2700-f94f-499d-af22-33e0958f7b85", - "Expires" : "-1", - "x-ms-request-id" : "fb753405-10e4-4772-960e-aef86f1352f0", - "Body" : "{\r\n \"name\": \"vnet41255d54e8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8\",\r\n \"etag\": \"W/\\\"05255286-4852-46c7-a189-e6d785ecc49e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9e8479dc-2371-4d5b-b250-ab45073d9e25\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8/subnets/subnet1\",\r\n \"etag\": \"W/\\\"05255286-4852-46c7-a189-e6d785ecc49e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "cad05569-ab74-495c-befa-1f024725e95f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic83866d5e89e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "65bbbdc7-6667-4776-9833-233cea958ee3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1660", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "7b45ac7b-fdfb-47d5-b3fe-ab48cb668d7d", - "Date" : "Mon, 19 Apr 2021 07:11:56 GMT", - "x-ms-arm-service-request-id" : "df3b521a-dbfa-471f-bbfb-019b526ae403", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071156Z:7b45ac7b-fdfb-47d5-b3fe-ab48cb668d7d", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47e8b99a-cf1f-45ac-a768-7454523f5ccf?api-version=2023-02-01", - "x-ms-request-id" : "47e8b99a-cf1f-45ac-a768-7454523f5ccf", - "Body" : "{\r\n \"name\": \"nic83866d5e89e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic83866d5e89e\",\r\n \"etag\": \"W/\\\"f759bc3c-3adb-4159-9f43-b23a98aa4873\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d0bb9d7-9332-45f5-b2f4-301ad8e16660\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic83866d5e89e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f759bc3c-3adb-4159-9f43-b23a98aa4873\\\"\",\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/rgcomv61802ac/providers/Microsoft.Network/virtualNetworks/vnet41255d54e8/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\": \"1r2yjhtrennu1msqvncqopm4ef.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "65bbbdc7-6667-4776-9833-233cea958ee3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "681bae1a-b9a3-4304-b2b7-e18e1d352eaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2659", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "6c30dbdb-2c4a-4248-8c46-7492497694a0", - "Date" : "Mon, 19 Apr 2021 07:12:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071201Z:6c30dbdb-2c4a-4248-8c46-7492497694a0", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d696883c-0cec-498c-84ee-568e6c601cc7?api-version=2021-11-01", - "x-ms-request-id" : "d696883c-0cec-498c-84ee-568e6c601cc7", - "Body" : "{\r\n \"name\": \"vm3980781\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8f8fbc74-b4df-454a-9d71-f5265c1fc43e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3980781\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic83866d5e89e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "681bae1a-b9a3-4304-b2b7-e18e1d352eaa", - "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/d696883c-0cec-498c-84ee-568e6c601cc7?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fdd370e-2137-4eeb-ac66-08389ddabb16" - }, - "Response" : { - "content-length" : "132", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2250503f-185d-4ec4-ab92-38c21549804f", - "Date" : "Mon, 19 Apr 2021 07:12:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071212Z:2250503f-185d-4ec4-ab92-38c21549804f", - "Expires" : "-1", - "x-ms-request-id" : "72386ce8-4722-4820-802a-6f215ff1500d", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:12:00.26243+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d696883c-0cec-498c-84ee-568e6c601cc7\"\r\n}", - "x-ms-client-request-id" : "8fdd370e-2137-4eeb-ac66-08389ddabb16", - "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/d696883c-0cec-498c-84ee-568e6c601cc7?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a396f7a-31c5-40bb-88b0-479d41a4672d" - }, - "Response" : { - "content-length" : "182", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a36f5b3a-dd94-4ddb-bac4-0eee836b1bbc", - "Date" : "Mon, 19 Apr 2021 07:12:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071248Z:a36f5b3a-dd94-4ddb-bac4-0eee836b1bbc", - "Expires" : "-1", - "x-ms-request-id" : "90037ea0-fa2b-400a-9b89-12db665aac3b", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:12:00.26243+00:00\",\r\n \"endTime\": \"2021-04-19T07:12:26.5593038+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d696883c-0cec-498c-84ee-568e6c601cc7\"\r\n}", - "x-ms-client-request-id" : "3a396f7a-31c5-40bb-88b0-479d41a4672d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "27a3381f-4fce-4e6a-aef3-988bf5949ed4" - }, - "Response" : { - "content-length" : "3941", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2cc26624-029e-4449-8d6c-89c4a11c86ce", - "Date" : "Mon, 19 Apr 2021 07:12:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071249Z:2cc26624-029e-4449-8d6c-89c4a11c86ce", - "Expires" : "-1", - "x-ms-request-id" : "f4606552-f3c2-4a82-acfb-c671f6d5976f", - "Body" : "{\r\n \"name\": \"vm3980781\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8f8fbc74-b4df-454a-9d71-f5265c1fc43e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3980781_disk1_7036e05d00e040d8baaedede949e986a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk1_7036e05d00e040d8baaedede949e986a\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3980781_disk2_d6f3d74977804e67a2039e92d8cc8716\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk2_d6f3d74977804e67a2039e92d8cc8716\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm3980781_disk3_4d4d89ffa3bf40da8614413943f2b552\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk3_4d4d89ffa3bf40da8614413943f2b552\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm3980781_disk4_1be82eb1c0e643b5a1bbb055f0241357\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk4_1be82eb1c0e643b5a1bbb055f0241357\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm3980781_disk5_e7cc9b706cdd4126a6cd8dfc3f64fbb2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk5_e7cc9b706cdd4126a6cd8dfc3f64fbb2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3980781\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv61802ac/providers/Microsoft.Network/networkInterfaces/nic83866d5e89e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "27a3381f-4fce-4e6a-aef3-988bf5949ed4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0149c40-9fd4-4321-be02-24e1e6ddb229", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "ae5c60d9-1b35-426d-bdb6-22ea96f1c622", - "Date" : "Mon, 19 Apr 2021 07:12:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071249Z:ae5c60d9-1b35-426d-bdb6-22ea96f1c622", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4ae73d6f-f5f4-4f09-b0c4-782252ef62ec?api-version=2021-11-01", - "x-ms-request-id" : "4ae73d6f-f5f4-4f09-b0c4-782252ef62ec", - "x-ms-client-request-id" : "a0149c40-9fd4-4321-be02-24e1e6ddb229", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4ae73d6f-f5f4-4f09-b0c4-782252ef62ec?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4ae73d6f-f5f4-4f09-b0c4-782252ef62ec?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3709a4fc-30f9-4dd6-b2ab-d3ba9bf37a1c" - }, - "Response" : { - "content-length" : "134", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a94786d-88b3-4905-a96b-a819347b4ad4", - "Date" : "Mon, 19 Apr 2021 07:12:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071300Z:8a94786d-88b3-4905-a96b-a819347b4ad4", - "Expires" : "-1", - "x-ms-request-id" : "f66bcc13-2a1b-4dda-8fec-3a5ffccb6c7e", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:12:49.1999354+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ae73d6f-f5f4-4f09-b0c4-782252ef62ec\"\r\n}", - "x-ms-client-request-id" : "3709a4fc-30f9-4dd6-b2ab-d3ba9bf37a1c", - "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/4ae73d6f-f5f4-4f09-b0c4-782252ef62ec?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "48cbcc03-ac27-4447-95bf-e6c1fcfe0506" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99631d5d-7bb1-4e16-acd7-aef84e11b4af", - "Date" : "Mon, 19 Apr 2021 07:13:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071330Z:99631d5d-7bb1-4e16-acd7-aef84e11b4af", - "Expires" : "-1", - "x-ms-request-id" : "eaa23ab5-2580-4a10-83e5-d00501baf117", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:12:49.1999354+00:00\",\r\n \"endTime\": \"2021-04-19T07:13:22.2623794+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ae73d6f-f5f4-4f09-b0c4-782252ef62ec\"\r\n}", - "x-ms-client-request-id" : "48cbcc03-ac27-4447-95bf-e6c1fcfe0506", - "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/4ae73d6f-f5f4-4f09-b0c4-782252ef62ec?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c69c63a9-cbf0-41d8-8478-61c6daffd89e" - }, - "Response" : { - "content-length" : "0", - "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" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7d062d7-477e-4377-bd57-e9d46de6d2fc", - "Date" : "Mon, 19 Apr 2021 07:13:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071330Z:f7d062d7-477e-4377-bd57-e9d46de6d2fc", - "Expires" : "-1", - "x-ms-request-id" : "1a67084b-dafd-4aa7-97b0-255a3d22c3a5", - "x-ms-client-request-id" : "c69c63a9-cbf0-41d8-8478-61c6daffd89e" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk1_7036e05d00e040d8baaedede949e986a?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d426d0e2-4c54-4884-a22b-7f0ae2d398fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1343", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18dcb3a5-8b29-4c83-bb4e-e79046ccb105", - "Date" : "Mon, 19 Apr 2021 07:13:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071331Z:18dcb3a5-8b29-4c83-bb4e-e79046ccb105", - "Expires" : "-1", - "x-ms-request-id" : "49fd06b1-8b2d-45b5-947f-4cf892436f58", - "Body" : "{\r\n \"name\": \"vm3980781_disk1_7036e05d00e040d8baaedede949e986a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk1_7036e05d00e040d8baaedede949e986a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/snapshots/img975351_0_2m0u0b5uxty\",\r\n \"sourceUniqueId\": \"77c7af75-fca3-4e41-8eca-d5b8f075ef8b\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:12:00.6379196+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"7036e05d-00e0-40d8-baae-dede949e986a\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "d426d0e2-4c54-4884-a22b-7f0ae2d398fe", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk1_7036e05d00e040d8baaedede949e986a/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "446037cb-2d9d-48e8-a66d-d2d27557adfd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "8561b894-7753-403f-bb87-11f853a98240", - "Date" : "Mon, 19 Apr 2021 07:13:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071331Z:8561b894-7753-403f-bb87-11f853a98240", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/7c08bbca-df67-4a27-a892-48d72b1e0709?api-version=2021-11-01", - "x-ms-request-id" : "7c08bbca-df67-4a27-a892-48d72b1e0709", - "x-ms-client-request-id" : "446037cb-2d9d-48e8-a66d-d2d27557adfd", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/7c08bbca-df67-4a27-a892-48d72b1e0709?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/7c08bbca-df67-4a27-a892-48d72b1e0709?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db355d37-aee0-47d5-a520-599a2df0e430" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a03c8c70-0f80-4360-b29e-e86ca5d5870d", - "Date" : "Mon, 19 Apr 2021 07:14:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071402Z:a03c8c70-0f80-4360-b29e-e86ca5d5870d", - "Expires" : "-1", - "x-ms-request-id" : "5da9ce5c-0640-489d-be3b-de16c9205548", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:13:31.6707272+00:00\",\r\n \"endTime\": \"2021-04-19T07:13:31.8269753+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"7c08bbca-df67-4a27-a892-48d72b1e0709\"\r\n}", - "x-ms-client-request-id" : "db355d37-aee0-47d5-a520-599a2df0e430", - "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/DiskOperations/7c08bbca-df67-4a27-a892-48d72b1e0709?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c0ca4c1-6593-40a4-8e1f-8d57d3f4e3ad" - }, - "Response" : { - "content-length" : "198", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58f4a7ca-59f1-44a7-b540-42a0891e282f", - "Date" : "Mon, 19 Apr 2021 07:14:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071402Z:58f4a7ca-59f1-44a7-b540-42a0891e282f", - "Expires" : "-1", - "x-ms-request-id" : "4730914b-7436-45e9-8178-09170c619796", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "6c0ca4c1-6593-40a4-8e1f-8d57d3f4e3ad", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk2_d6f3d74977804e67a2039e92d8cc8716?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "68522bff-8dc4-4213-a80a-2c8c4a9524ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64e34e0f-d066-4e10-b940-22e1a38987c2", - "Date" : "Mon, 19 Apr 2021 07:14:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071402Z:64e34e0f-d066-4e10-b940-22e1a38987c2", - "Expires" : "-1", - "x-ms-request-id" : "8899207a-f84b-491a-a0db-c06e31fd962d", - "Body" : "{\r\n \"name\": \"vm3980781_disk2_d6f3d74977804e67a2039e92d8cc8716\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk2_d6f3d74977804e67a2039e92d8cc8716\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:12:00.6379196+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"d6f3d749-7780-4e67-a203-9e92d8cc8716\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "68522bff-8dc4-4213-a80a-2c8c4a9524ef", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk2_d6f3d74977804e67a2039e92d8cc8716/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "718fe2db-1605-4541-b711-d6a3d3fd37fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "83620348-6b26-4e73-90e8-b84786513abc", - "Date" : "Mon, 19 Apr 2021 07:14:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071403Z:83620348-6b26-4e73-90e8-b84786513abc", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8f5b103d-0c9c-4b57-b586-8913dfddc86e?api-version=2021-11-01", - "x-ms-request-id" : "8f5b103d-0c9c-4b57-b586-8913dfddc86e", - "x-ms-client-request-id" : "718fe2db-1605-4541-b711-d6a3d3fd37fe", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8f5b103d-0c9c-4b57-b586-8913dfddc86e?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8f5b103d-0c9c-4b57-b586-8913dfddc86e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7404140-8701-4e8e-9c98-de7eb1d43fc1" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f25da78-0e5c-4b83-89aa-9a14441041e8", - "Date" : "Mon, 19 Apr 2021 07:14:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071434Z:8f25da78-0e5c-4b83-89aa-9a14441041e8", - "Expires" : "-1", - "x-ms-request-id" : "2c89a9d9-528d-4fc6-ae9c-baa1ec2f9776", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:14:03.2346404+00:00\",\r\n \"endTime\": \"2021-04-19T07:14:03.3596113+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"8f5b103d-0c9c-4b57-b586-8913dfddc86e\"\r\n}", - "x-ms-client-request-id" : "a7404140-8701-4e8e-9c98-de7eb1d43fc1", - "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/DiskOperations/8f5b103d-0c9c-4b57-b586-8913dfddc86e?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "28f8297a-d4db-4f33-8d57-5e5975eb412b" - }, - "Response" : { - "content-length" : "198", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e9a9eb1-7710-4a60-aaff-23cc1a3e6f59", - "Date" : "Mon, 19 Apr 2021 07:14:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071434Z:9e9a9eb1-7710-4a60-aaff-23cc1a3e6f59", - "Expires" : "-1", - "x-ms-request-id" : "43793303-c9f1-4c05-b675-a38b8f815db8", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "28f8297a-d4db-4f33-8d57-5e5975eb412b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk3_4d4d89ffa3bf40da8614413943f2b552?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed4246d8-d25e-450d-9ad3-4e7842a2e886", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1290", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dec28c37-8632-42de-b390-2ab31ab231d5", - "Date" : "Mon, 19 Apr 2021 07:14:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071434Z:dec28c37-8632-42de-b390-2ab31ab231d5", - "Expires" : "-1", - "x-ms-request-id" : "a53000ca-37d8-44bf-86bd-3022afff21bb", - "Body" : "{\r\n \"name\": \"vm3980781_disk3_4d4d89ffa3bf40da8614413943f2b552\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk3_4d4d89ffa3bf40da8614413943f2b552\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/snapshots/img975351_1_ikrov15nbqk\",\r\n \"sourceUniqueId\": \"5403ab31-ff06-4e99-ba97-1c5ae761d975\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:12:00.6379196+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"4d4d89ff-a3bf-40da-8614-413943f2b552\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "ed4246d8-d25e-450d-9ad3-4e7842a2e886", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk3_4d4d89ffa3bf40da8614413943f2b552/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e853c14-956e-4486-b268-b964bd774990", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "53357fc5-5852-4eee-bbe7-edf65894a481", - "Date" : "Mon, 19 Apr 2021 07:14:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071435Z:53357fc5-5852-4eee-bbe7-edf65894a481", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d8315203-0318-41ac-a148-67073e8427a4?api-version=2021-11-01", - "x-ms-request-id" : "d8315203-0318-41ac-a148-67073e8427a4", - "x-ms-client-request-id" : "5e853c14-956e-4486-b268-b964bd774990", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d8315203-0318-41ac-a148-67073e8427a4?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d8315203-0318-41ac-a148-67073e8427a4?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "26d6a7a8-1b4a-44af-989a-298aadce3aad" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b4f6cf3b-1016-4d18-91a0-9c334192fb4f", - "Date" : "Mon, 19 Apr 2021 07:15:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071505Z:b4f6cf3b-1016-4d18-91a0-9c334192fb4f", - "Expires" : "-1", - "x-ms-request-id" : "5c3dfb88-29bf-4370-ad7b-77062964199e", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:14:35.3751624+00:00\",\r\n \"endTime\": \"2021-04-19T07:14:35.5314306+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"d8315203-0318-41ac-a148-67073e8427a4\"\r\n}", - "x-ms-client-request-id" : "26d6a7a8-1b4a-44af-989a-298aadce3aad", - "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/DiskOperations/d8315203-0318-41ac-a148-67073e8427a4?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "baf4361f-6138-4754-a968-283fceb8a2ee" - }, - "Response" : { - "content-length" : "198", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "279f971c-99c3-4f27-b88b-e6d6a5c21b4c", - "Date" : "Mon, 19 Apr 2021 07:15:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071506Z:279f971c-99c3-4f27-b88b-e6d6a5c21b4c", - "Expires" : "-1", - "x-ms-request-id" : "a8334a13-ac68-435b-8069-81ae774c9304", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "baf4361f-6138-4754-a968-283fceb8a2ee", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk4_1be82eb1c0e643b5a1bbb055f0241357?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "54a0a46d-c5b6-436c-900e-ae82da31fd84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1290", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a026b99-96a0-45f0-9fd1-577c40ea7509", - "Date" : "Mon, 19 Apr 2021 07:15:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071506Z:2a026b99-96a0-45f0-9fd1-577c40ea7509", - "Expires" : "-1", - "x-ms-request-id" : "9062b8d2-c093-4493-a445-9d56500aba4b", - "Body" : "{\r\n \"name\": \"vm3980781_disk4_1be82eb1c0e643b5a1bbb055f0241357\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk4_1be82eb1c0e643b5a1bbb055f0241357\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/snapshots/img975351_2_auugahrqp41\",\r\n \"sourceUniqueId\": \"9d19db01-527a-4695-b8ed-25ab690c2cb2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:12:00.6379196+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"1be82eb1-c0e6-43b5-a1bb-b055f0241357\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "54a0a46d-c5b6-436c-900e-ae82da31fd84", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk4_1be82eb1c0e643b5a1bbb055f0241357/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b095e82f-8b72-45e9-ba86-36b29926687f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "3b562744-26b3-4e03-8a0b-6f73f3c88629", - "Date" : "Mon, 19 Apr 2021 07:15:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071507Z:3b562744-26b3-4e03-8a0b-6f73f3c88629", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d90a65-201b-497e-8f7a-e4ecd5289c48?api-version=2021-11-01", - "x-ms-request-id" : "58d90a65-201b-497e-8f7a-e4ecd5289c48", - "x-ms-client-request-id" : "b095e82f-8b72-45e9-ba86-36b29926687f", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d90a65-201b-497e-8f7a-e4ecd5289c48?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d90a65-201b-497e-8f7a-e4ecd5289c48?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9791d398-ee88-4b7f-9373-267bd2e1c175" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "72169135-542e-4de5-93d9-c00027e325f8", - "Date" : "Mon, 19 Apr 2021 07:15:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071537Z:72169135-542e-4de5-93d9-c00027e325f8", - "Expires" : "-1", - "x-ms-request-id" : "a68b5a11-032e-450c-a2e4-746571e9f4b1", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:15:06.9064735+00:00\",\r\n \"endTime\": \"2021-04-19T07:15:07.0471026+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"58d90a65-201b-497e-8f7a-e4ecd5289c48\"\r\n}", - "x-ms-client-request-id" : "9791d398-ee88-4b7f-9373-267bd2e1c175", - "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/DiskOperations/58d90a65-201b-497e-8f7a-e4ecd5289c48?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb4ae7a7-64ed-49b7-99ce-a475ec0a7b79" - }, - "Response" : { - "content-length" : "198", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95441e2d-dc6a-4b9a-ac65-1e374b2d66a5", - "Date" : "Mon, 19 Apr 2021 07:15:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071537Z:95441e2d-dc6a-4b9a-ac65-1e374b2d66a5", - "Expires" : "-1", - "x-ms-request-id" : "fa1109b1-dda6-4b09-8245-a6fa1bbdbae7", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "eb4ae7a7-64ed-49b7-99ce-a475ec0a7b79", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk5_e7cc9b706cdd4126a6cd8dfc3f64fbb2?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "79ce2cd7-0a82-46ef-96df-acf0299b0ddd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1290", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b32dacb-97e9-4954-b0e5-3d4af36db9c3", - "Date" : "Mon, 19 Apr 2021 07:15:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071540Z:0b32dacb-97e9-4954-b0e5-3d4af36db9c3", - "Expires" : "-1", - "x-ms-request-id" : "20363890-db1a-4d4b-bed7-6ac519f04ee3", - "Body" : "{\r\n \"name\": \"vm3980781_disk5_e7cc9b706cdd4126a6cd8dfc3f64fbb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk5_e7cc9b706cdd4126a6cd8dfc3f64fbb2\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/virtualMachines/vm3980781\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/snapshots/img975351_3_ot0dm1poxrb\",\r\n \"sourceUniqueId\": \"a09b1d8e-67e7-4f3d-823d-2ef524b1ebf2\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:12:00.6379196+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"e7cc9b70-6cdd-4126-a6cd-8dfc3f64fbb2\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "79ce2cd7-0a82-46ef-96df-acf0299b0ddd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/disks/vm3980781_disk5_e7cc9b706cdd4126a6cd8dfc3f64fbb2/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a267c4cc-b530-4143-ba68-a99638b0ddd2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "900bd018-c764-44a8-bd76-48763c64f42f", - "Date" : "Mon, 19 Apr 2021 07:15:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;995,Microsoft.Compute/HighCostDiskHydrate30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071540Z:900bd018-c764-44a8-bd76-48763c64f42f", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3ae42b25-75c0-4eeb-a986-8cbdf59b1d0d?api-version=2021-11-01", - "x-ms-request-id" : "3ae42b25-75c0-4eeb-a986-8cbdf59b1d0d", - "x-ms-client-request-id" : "a267c4cc-b530-4143-ba68-a99638b0ddd2", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3ae42b25-75c0-4eeb-a986-8cbdf59b1d0d?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3ae42b25-75c0-4eeb-a986-8cbdf59b1d0d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a83d6b7d-bb1e-4b9c-99d4-c036bf069092" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fac8b1e-5610-4aab-a0ba-8e46e8898fc2", - "Date" : "Mon, 19 Apr 2021 07:16:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071611Z:7fac8b1e-5610-4aab-a0ba-8e46e8898fc2", - "Expires" : "-1", - "x-ms-request-id" : "4f0c224c-82e3-4922-ad82-c14dffed7399", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:15:40.7986261+00:00\",\r\n \"endTime\": \"2021-04-19T07:15:40.9392138+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"3ae42b25-75c0-4eeb-a986-8cbdf59b1d0d\"\r\n}", - "x-ms-client-request-id" : "a83d6b7d-bb1e-4b9c-99d4-c036bf069092", - "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/DiskOperations/3ae42b25-75c0-4eeb-a986-8cbdf59b1d0d?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b1595cc-9819-4726-9665-3beb77670b98" - }, - "Response" : { - "content-length" : "198", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132588845852832279", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bda8b88e-b06f-4373-9f25-0de4f2efb996", - "Date" : "Mon, 19 Apr 2021 07:16:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071611Z:bda8b88e-b06f-4373-9f25-0de4f2efb996", - "Expires" : "-1", - "x-ms-request-id" : "3ef9b806-21d9-48e6-be16-4a27034211a5", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "3b1595cc-9819-4726-9665-3beb77670b98", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv61802ac/providers/Microsoft.Compute/images/img975351?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "20432c30-80f3-408c-afcc-ed489c9504b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "2d9e7d5c-f44f-455a-93d1-228e94b63327", - "Date" : "Mon, 19 Apr 2021 07:16:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteImages3Min;119,Microsoft.Compute/DeleteImages30Min;599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071612Z:2d9e7d5c-f44f-455a-93d1-228e94b63327", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/10ec3af8-2c2c-434f-a5e7-3c0f4f02f46e?api-version=2021-11-01", - "x-ms-request-id" : "10ec3af8-2c2c-434f-a5e7-3c0f4f02f46e", - "x-ms-client-request-id" : "20432c30-80f3-408c-afcc-ed489c9504b7", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/10ec3af8-2c2c-434f-a5e7-3c0f4f02f46e?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/10ec3af8-2c2c-434f-a5e7-3c0f4f02f46e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "87914691-2016-441c-94fb-048e32bc0ce8" - }, - "Response" : { - "content-length" : "184", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "890aea3a-ea5c-4099-ac4b-c8a8c3cf95a7", - "Date" : "Mon, 19 Apr 2021 07:16:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071642Z:890aea3a-ea5c-4099-ac4b-c8a8c3cf95a7", - "Expires" : "-1", - "x-ms-request-id" : "61614eff-200e-4f8b-a21e-e2bb57067e13", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:16:12.0747781+00:00\",\r\n \"endTime\": \"2021-04-19T07:16:37.2155897+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"10ec3af8-2c2c-434f-a5e7-3c0f4f02f46e\"\r\n}", - "x-ms-client-request-id" : "87914691-2016-441c-94fb-048e32bc0ce8", - "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/10ec3af8-2c2c-434f-a5e7-3c0f4f02f46e?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a878c2fc-407b-4c05-bae5-2290f5e8d330" - }, - "Response" : { - "content-length" : "0", - "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" : "1c254f33-f5ac-419d-b345-80ca7439e3b1", - "Date" : "Mon, 19 Apr 2021 07:16:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071642Z:1c254f33-f5ac-419d-b345-80ca7439e3b1", - "Expires" : "-1", - "x-ms-request-id" : "b0cf7452-dbc3-49ab-bc71-e815ee4f4c7b", - "x-ms-client-request-id" : "a878c2fc-407b-4c05-bae5-2290f5e8d330" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv61802ac?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf41fb69-a486-4b45-a327-5130fe2dd583", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "7aeccd6b-8948-4628-9d60-5f640f343458", - "Date" : "Mon, 19 Apr 2021 07:16:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T071645Z:7aeccd6b-8948-4628-9d60-5f640f343458", - "Expires" : "-1", - "x-ms-request-id" : "7aeccd6b-8948-4628-9d60-5f640f343458", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2MTgwMkFDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm162734a", "vm243923d", "vm3980781", "img975351", "rgcomv61802ac", "pip48168e", "nic89858df8d89", "vnet28050196f5", "pip2379199d", "stg70845f4a30cf0", "nic1419168f06a", "vnet741767fe61", "nic83866d5e89e", "vnet41255d54e8" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVM.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVM.json deleted file mode 100644 index 6b21565d52d4..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingCustomImageFromVM.json +++ /dev/null @@ -1,2023 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv001070d?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e026ecb-ebae-475d-86c0-14960c884951", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "224", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "b0ce6a59-7320-4f86-a8aa-27bf2a1c24ee", - "Date" : "Mon, 19 Apr 2021 07:23:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072358Z:b0ce6a59-7320-4f86-a8aa-27bf2a1c24ee", - "Expires" : "-1", - "x-ms-request-id" : "b0ce6a59-7320-4f86-a8aa-27bf2a1c24ee", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d\",\"name\":\"rgcomv001070d\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus2\",\"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/rgcomv001070d/providers/Microsoft.Storage/storageAccounts/stg7579048382950?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f52333b-5738-427c-8517-8937a68f6c9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "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" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "fae0e512-b252-4a8d-b306-0d0fbb8a5dd0", - "Date" : "Mon, 19 Apr 2021 07:24:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072405Z:fae0e512-b252-4a8d-b306-0d0fbb8a5dd0", - "Expires" : "-1", - "x-ms-request-id" : "7ea0fc1d-7a60-4b18-ac47-78c04e04679a", - "Body" : "", - "x-ms-client-request-id" : "5f52333b-5738-427c-8517-8937a68f6c9f", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/7ea0fc1d-7a60-4b18-ac47-78c04e04679a?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/publicIPAddresses/pip779145f3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "32797e05-6068-474d-b420-7580b9fe8b62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "776", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "46426b0a-7de5-4f81-91f5-003fb794727e", - "Date" : "Mon, 19 Apr 2021 07:24:05 GMT", - "x-ms-arm-service-request-id" : "5a859fac-74ef-4c47-a604-fe3da1d61c0f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072405Z:46426b0a-7de5-4f81-91f5-003fb794727e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/42bd4524-1e3f-491e-94be-663550f7c6da?api-version=2023-02-01", - "x-ms-request-id" : "42bd4524-1e3f-491e-94be-663550f7c6da", - "Body" : "{\r\n \"name\": \"pip779145f3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/publicIPAddresses/pip779145f3\",\r\n \"etag\": \"W/\\\"4ac59150-19ba-495d-be81-18c753f5f63d\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"282dbc96-4df2-43c2-a9fb-bd5573db4bef\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip85189aff\",\r\n \"fqdn\": \"pip85189aff.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "32797e05-6068-474d-b420-7580b9fe8b62", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8a03b1d-da80-4da4-8fdc-23bdc93cfd83", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1307", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "701193a1-db2d-4860-acbb-b7167ae5803e", - "Date" : "Mon, 19 Apr 2021 07:24:05 GMT", - "x-ms-arm-service-request-id" : "692cea5f-0a4b-49a1-94a9-1097ebc81c4c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072406Z:701193a1-db2d-4860-acbb-b7167ae5803e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d7241cf6-9694-437e-97ee-8b4b397ad8f4?api-version=2023-02-01", - "x-ms-request-id" : "d7241cf6-9694-437e-97ee-8b4b397ad8f4", - "Body" : "{\r\n \"name\": \"vnet616440a646\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646\",\r\n \"etag\": \"W/\\\"5a4065d2-69d9-41c7-9a28-7d43e5f63749\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"65215b02-a1fc-4450-8dde-e3ad26bf3972\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5a4065d2-69d9-41c7-9a28-7d43e5f63749\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "f8a03b1d-da80-4da4-8fdc-23bdc93cfd83", - "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/westus2/operations/42bd4524-1e3f-491e-94be-663550f7c6da?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6082cad6-d6c1-4f9a-9a09-86853e5e488a" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad8fecd9-396f-4134-b0aa-70b8475a7580", - "Date" : "Mon, 19 Apr 2021 07:24:06 GMT", - "x-ms-arm-service-request-id" : "50f34a5d-8d97-4995-8a5d-4c9c38a8958b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072407Z:ad8fecd9-396f-4134-b0aa-70b8475a7580", - "Expires" : "-1", - "x-ms-request-id" : "7ada475c-4329-42f7-9ea7-a3094757e130", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "6082cad6-d6c1-4f9a-9a09-86853e5e488a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/publicIPAddresses/pip779145f3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1532bd5-7d17-4429-8a71-5f84e419e012" - }, - "Response" : { - "content-length" : "777", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d36d694-1df9-4aac-aec9-28b25b449c2d", - "Date" : "Mon, 19 Apr 2021 07:24:06 GMT", - "x-ms-arm-service-request-id" : "1e82e1ac-4779-468d-aab0-4936a8f6e4ff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"94ef5f23-b740-421b-8ecb-729d2ff96300\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072407Z:4d36d694-1df9-4aac-aec9-28b25b449c2d", - "Expires" : "-1", - "x-ms-request-id" : "7ea1a1d5-6857-421f-b32d-e58a8e88e722", - "Body" : "{\r\n \"name\": \"pip779145f3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/publicIPAddresses/pip779145f3\",\r\n \"etag\": \"W/\\\"94ef5f23-b740-421b-8ecb-729d2ff96300\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"282dbc96-4df2-43c2-a9fb-bd5573db4bef\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip85189aff\",\r\n \"fqdn\": \"pip85189aff.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "d1532bd5-7d17-4429-8a71-5f84e419e012", - "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/westus2/operations/d7241cf6-9694-437e-97ee-8b4b397ad8f4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee50bf90-55bd-4a3c-bbdd-c25bbedb5e31" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34632c58-3d99-435c-910e-319d565f4bcf", - "Date" : "Mon, 19 Apr 2021 07:24:08 GMT", - "x-ms-arm-service-request-id" : "06b39e41-2a23-4eb6-8e0e-bfb7418f019a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072409Z:34632c58-3d99-435c-910e-319d565f4bcf", - "Expires" : "-1", - "x-ms-request-id" : "30f16be6-60cd-487e-8042-723155f6f9c8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "ee50bf90-55bd-4a3c-bbdd-c25bbedb5e31", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "82658a66-48c0-4b51-b9c6-1706f7d0f8eb" - }, - "Response" : { - "content-length" : "1309", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f7e0bc3-5cfa-4bde-a93b-62f70785fcc3", - "Date" : "Mon, 19 Apr 2021 07:24:09 GMT", - "x-ms-arm-service-request-id" : "0c003e81-b7aa-4c50-80a4-c5fa1645e1e6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"c605d8da-b23c-4366-ba43-afb06123613c\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072409Z:0f7e0bc3-5cfa-4bde-a93b-62f70785fcc3", - "Expires" : "-1", - "x-ms-request-id" : "cc76da08-0c65-4b93-ab34-c915c1359bc0", - "Body" : "{\r\n \"name\": \"vnet616440a646\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646\",\r\n \"etag\": \"W/\\\"c605d8da-b23c-4366-ba43-afb06123613c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"65215b02-a1fc-4450-8dde-e3ad26bf3972\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c605d8da-b23c-4366-ba43-afb06123613c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "82658a66-48c0-4b51-b9c6-1706f7d0f8eb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c0aff28-10ce-49c2-a827-f567e3adf506", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "8ecc3393-b1df-425d-8bbb-f0fe32ac33bb", - "Date" : "Mon, 19 Apr 2021 07:24:13 GMT", - "x-ms-arm-service-request-id" : "cbef8478-7674-4316-be94-1014b5866c8a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072414Z:8ecc3393-b1df-425d-8bbb-f0fe32ac33bb", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/45ff37c1-3b21-41b9-b252-6585e1287618?api-version=2023-02-01", - "x-ms-request-id" : "45ff37c1-3b21-41b9-b252-6585e1287618", - "Body" : "{\r\n \"name\": \"nic916917e3ccd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd\",\r\n \"etag\": \"W/\\\"809a52d2-c649-451f-80f0-b5fbdca8bf44\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"141bb8e3-53ae-4cec-bcfc-6a67d6dee591\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"809a52d2-c649-451f-80f0-b5fbdca8bf44\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/publicIPAddresses/pip779145f3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet616440a646/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\": \"ajnsczp2ufiejdo42owsnpzzoc.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "0c0aff28-10ce-49c2-a827-f567e3adf506", - "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/westus2/asyncoperations/7ea0fc1d-7a60-4b18-ac47-78c04e04679a?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "82520dac-29a3-4050-bfc1-5bd9201a3e32" - }, - "Response" : { - "content-length" : "1822", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae4ea86d-7da3-4c18-8434-0dc857079ab3", - "Date" : "Mon, 19 Apr 2021 07:24:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072422Z:ae4ea86d-7da3-4c18-8434-0dc857079ab3", - "Expires" : "-1", - "x-ms-request-id" : "70d10a92-4d7b-491d-806d-bba7a09648a1", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Storage/storageAccounts/stg7579048382950\",\"name\":\"stg7579048382950\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:24:03.8265221Z\",\"key2\":\"2021-04-19T07:24:03.8265221Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:24:03.8265221Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:24:03.8265221Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:24:03.7327274Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg7579048382950.dfs.core.windows.net/\",\"web\":\"https://stg7579048382950.z5.web.core.windows.net/\",\"blob\":\"https://stg7579048382950.blob.core.windows.net/\",\"queue\":\"https://stg7579048382950.queue.core.windows.net/\",\"table\":\"https://stg7579048382950.table.core.windows.net/\",\"file\":\"https://stg7579048382950.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg7579048382950-secondary.dfs.core.windows.net/\",\"web\":\"https://stg7579048382950-secondary.z5.web.core.windows.net/\",\"blob\":\"https://stg7579048382950-secondary.blob.core.windows.net/\",\"queue\":\"https://stg7579048382950-secondary.queue.core.windows.net/\",\"table\":\"https://stg7579048382950-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "82520dac-29a3-4050-bfc1-5bd9201a3e32", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Storage/storageAccounts/stg7579048382950?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1728d41d-5cc6-46e4-a707-52f8e8fd8919", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1822", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa8b397a-8ac3-4c5d-8dc6-d073e2804c37", - "Date" : "Mon, 19 Apr 2021 07:24:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072423Z:fa8b397a-8ac3-4c5d-8dc6-d073e2804c37", - "Expires" : "-1", - "x-ms-request-id" : "3e577ea5-a839-4548-9fd3-6de4e60527e8", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Storage/storageAccounts/stg7579048382950\",\"name\":\"stg7579048382950\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:24:03.8265221Z\",\"key2\":\"2021-04-19T07:24:03.8265221Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:24:03.8265221Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:24:03.8265221Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:24:03.7327274Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg7579048382950.dfs.core.windows.net/\",\"web\":\"https://stg7579048382950.z5.web.core.windows.net/\",\"blob\":\"https://stg7579048382950.blob.core.windows.net/\",\"queue\":\"https://stg7579048382950.queue.core.windows.net/\",\"table\":\"https://stg7579048382950.table.core.windows.net/\",\"file\":\"https://stg7579048382950.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg7579048382950-secondary.dfs.core.windows.net/\",\"web\":\"https://stg7579048382950-secondary.z5.web.core.windows.net/\",\"blob\":\"https://stg7579048382950-secondary.blob.core.windows.net/\",\"queue\":\"https://stg7579048382950-secondary.queue.core.windows.net/\",\"table\":\"https://stg7579048382950-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "1728d41d-5cc6-46e4-a707-52f8e8fd8919", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "15dfebd5-f4a0-4c88-8e48-b19ab47a7375", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2455", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "98cbd7cb-308c-465f-9b47-55dd54bf1124", - "Date" : "Mon, 19 Apr 2021 07:24:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072426Z:98cbd7cb-308c-465f-9b47-55dd54bf1124", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/18683e57-a9b1-4790-99ba-c724d74872fa?api-version=2021-11-01", - "x-ms-request-id" : "18683e57-a9b1-4790-99ba-c724d74872fa", - "Body" : "{\r\n \"name\": \"vm15381773e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"df784201-1228-4a16-bb76-c436340a057c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm15381773e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-os-disk-84d28f54-f2f8-4fb8-982a-d6e612a231d0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-1-cb7f6bdf-75c4-44d5-851b-2e23283a2679.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-2-a99c4a66-66dc-42e2-856b-3ddd2b415ad8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm15381773e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "15dfebd5-f4a0-4c88-8e48-b19ab47a7375", - "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/westus2/operations/18683e57-a9b1-4790-99ba-c724d74872fa?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "08903733-bcf1-4af4-be7f-515e2247f573" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4fcaef94-e89a-439d-bab8-0218c15ba250", - "Date" : "Mon, 19 Apr 2021 07:24:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072436Z:4fcaef94-e89a-439d-bab8-0218c15ba250", - "Expires" : "-1", - "x-ms-request-id" : "5e75c367-7464-4abd-a016-fdd98004b77c", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:24:25.0678901+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18683e57-a9b1-4790-99ba-c724d74872fa\"\r\n}", - "x-ms-client-request-id" : "08903733-bcf1-4af4-be7f-515e2247f573", - "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/westus2/operations/18683e57-a9b1-4790-99ba-c724d74872fa?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "003015f4-3f63-4df0-a46a-1f106d26d86f" - }, - "Response" : { - "content-length" : "184", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10f85031-a40d-484a-891c-d0f385e346f8", - "Date" : "Mon, 19 Apr 2021 07:25:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072512Z:10f85031-a40d-484a-891c-d0f385e346f8", - "Expires" : "-1", - "x-ms-request-id" : "93c27625-c478-4659-99df-dfb2da22ae13", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:24:25.0678901+00:00\",\r\n \"endTime\": \"2021-04-19T07:24:47.0053938+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"18683e57-a9b1-4790-99ba-c724d74872fa\"\r\n}", - "x-ms-client-request-id" : "003015f4-3f63-4df0-a46a-1f106d26d86f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4753fdd1-0020-47a9-885d-f64287b70bda" - }, - "Response" : { - "content-length" : "2483", - "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" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4bb5548-9e09-409f-b600-bfd513cfe451", - "Date" : "Mon, 19 Apr 2021 07:25:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072512Z:d4bb5548-9e09-409f-b600-bfd513cfe451", - "Expires" : "-1", - "x-ms-request-id" : "461323c1-59f2-44cd-801f-61d7a5d1df24", - "Body" : "{\r\n \"name\": \"vm15381773e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"df784201-1228-4a16-bb76-c436340a057c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm15381773e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-os-disk-84d28f54-f2f8-4fb8-982a-d6e612a231d0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-1-cb7f6bdf-75c4-44d5-851b-2e23283a2679.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-2-a99c4a66-66dc-42e2-856b-3ddd2b415ad8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm15381773e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "4753fdd1-0020-47a9-885d-f64287b70bda", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8ae6ecd-5117-4694-a685-19b67fdfe54a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "fb57c1af-e588-48d1-a2bc-c9b948342474", - "Date" : "Mon, 19 Apr 2021 07:25:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072517Z:fb57c1af-e588-48d1-a2bc-c9b948342474", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/6e42efc5-563c-4f1e-a4df-3685c3cd9b4c?api-version=2021-11-01", - "x-ms-request-id" : "6e42efc5-563c-4f1e-a4df-3685c3cd9b4c", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "e8ae6ecd-5117-4694-a685-19b67fdfe54a", - "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/westus2/operations/6e42efc5-563c-4f1e-a4df-3685c3cd9b4c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a4481c9-bd07-43ff-83b7-96efcbbf9f23" - }, - "Response" : { - "content-length" : "134", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33df525c-df75-4b82-9fc9-3817d927715d", - "Date" : "Mon, 19 Apr 2021 07:25:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072548Z:33df525c-df75-4b82-9fc9-3817d927715d", - "Expires" : "-1", - "x-ms-request-id" : "e39d8815-2993-4888-8d53-1ff0b494200a", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:25:16.7553438+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6e42efc5-563c-4f1e-a4df-3685c3cd9b4c\"\r\n}", - "x-ms-client-request-id" : "9a4481c9-bd07-43ff-83b7-96efcbbf9f23", - "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/westus2/operations/6e42efc5-563c-4f1e-a4df-3685c3cd9b4c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c47dc67-1e66-4987-9f9f-190e69f0879e" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e5630f5-844a-4b07-82c0-2f6c22a14681", - "Date" : "Mon, 19 Apr 2021 07:26:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072618Z:8e5630f5-844a-4b07-82c0-2f6c22a14681", - "Expires" : "-1", - "x-ms-request-id" : "39e38ca7-0b2f-42d9-996f-bb430b5f8cd9", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:25:16.7553438+00:00\",\r\n \"endTime\": \"2021-04-19T07:26:02.4584975+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6e42efc5-563c-4f1e-a4df-3685c3cd9b4c\"\r\n}", - "x-ms-client-request-id" : "6c47dc67-1e66-4987-9f9f-190e69f0879e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f79f6d1-3ec0-4fe6-90f7-3135e522bf88" - }, - "Response" : { - "content-length" : "754", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6255850-5cd2-45f2-88e7-8859e61e5b86", - "Date" : "Mon, 19 Apr 2021 07:26:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072618Z:b6255850-5cd2-45f2-88e7-8859e61e5b86", - "Expires" : "-1", - "x-ms-request-id" : "a52dc4c3-5f1b-4dd8-9e2b-27d8f6e575be", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "2f79f6d1-3ec0-4fe6-90f7-3135e522bf88", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a91a0df9-b8ff-41a2-aa87-9fe0bdefcec1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3319", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "373d3592-9e25-4a80-88b6-bd0b76d90240", - "Date" : "Mon, 19 Apr 2021 07:26:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072619Z:373d3592-9e25-4a80-88b6-bd0b76d90240", - "Expires" : "-1", - "x-ms-request-id" : "ca86b98e-e6be-4a57-a0ed-44c4e439a329", - "Body" : "{\r\n \"name\": \"vm15381773e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"df784201-1228-4a16-bb76-c436340a057c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm15381773e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-os-disk-84d28f54-f2f8-4fb8-982a-d6e612a231d0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-1-cb7f6bdf-75c4-44d5-851b-2e23283a2679.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-2-a99c4a66-66dc-42e2-856b-3ddd2b415ad8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm15381773e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "a91a0df9-b8ff-41a2-aa87-9fe0bdefcec1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd80cabf-5192-4c84-b6d1-8e140468e8a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "e6c7c82e-0641-44d0-8dda-38c23b401351", - "Date" : "Mon, 19 Apr 2021 07:26:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072619Z:e6c7c82e-0641-44d0-8dda-38c23b401351", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e49a3a94-f66d-41e7-a98b-6b08f2629f9f?api-version=2021-11-01", - "x-ms-request-id" : "e49a3a94-f66d-41e7-a98b-6b08f2629f9f", - "x-ms-client-request-id" : "fd80cabf-5192-4c84-b6d1-8e140468e8a2", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/e49a3a94-f66d-41e7-a98b-6b08f2629f9f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "660958dd-2bc9-4407-b460-9a7c6cfcb186", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "fa865f65-7392-44ee-b980-16256b54b286", - "Date" : "Mon, 19 Apr 2021 07:27:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072719Z:fa865f65-7392-44ee-b980-16256b54b286", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8cf10aee-af48-4765-9709-009387aa13cd?api-version=2021-11-01", - "x-ms-request-id" : "8cf10aee-af48-4765-9709-009387aa13cd", - "x-ms-client-request-id" : "660958dd-2bc9-4407-b460-9a7c6cfcb186", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8cf10aee-af48-4765-9709-009387aa13cd?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/8cf10aee-af48-4765-9709-009387aa13cd?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b047d23d-5afb-4d70-b7d3-9db69635881c" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99a5cc51-5df0-4bfb-9bc9-a6b78eb4ad00", - "Date" : "Mon, 19 Apr 2021 07:27:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072730Z:99a5cc51-5df0-4bfb-9bc9-a6b78eb4ad00", - "Expires" : "-1", - "x-ms-request-id" : "f2f55cb1-a1e1-49d8-9e6a-83033f5df47c", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:27:19.7397026+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8cf10aee-af48-4765-9709-009387aa13cd\"\r\n}", - "x-ms-client-request-id" : "b047d23d-5afb-4d70-b7d3-9db69635881c", - "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/westus2/operations/8cf10aee-af48-4765-9709-009387aa13cd?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "612836b2-f608-4f91-b5c7-cccfba47f175" - }, - "Response" : { - "content-length" : "184", - "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" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2025bdc9-a25b-457b-b7ba-14553e571ef4", - "Date" : "Mon, 19 Apr 2021 07:28:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072806Z:2025bdc9-a25b-457b-b7ba-14553e571ef4", - "Expires" : "-1", - "x-ms-request-id" : "f13276e2-8280-4c70-9e97-0bd359acb081", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:27:19.7397026+00:00\",\r\n \"endTime\": \"2021-04-19T07:27:45.3490978+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8cf10aee-af48-4765-9709-009387aa13cd\"\r\n}", - "x-ms-client-request-id" : "612836b2-f608-4f91-b5c7-cccfba47f175", - "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/westus2/operations/8cf10aee-af48-4765-9709-009387aa13cd?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bab692f-b18c-4eba-bf95-ecd94bf1c416" - }, - "Response" : { - "content-length" : "0", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2af30ab-2c59-48b6-aa22-27a0cf515776", - "Date" : "Mon, 19 Apr 2021 07:28:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072806Z:e2af30ab-2c59-48b6-aa22-27a0cf515776", - "Expires" : "-1", - "x-ms-request-id" : "42b9297a-9244-459f-8fba-9c80efb668f0", - "x-ms-client-request-id" : "6bab692f-b18c-4eba-bf95-ecd94bf1c416" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a568b50b-1e18-4387-83de-58b0c7528847", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4771", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8cd2d72-d7c8-4546-870c-2e497e26cd5f", - "Date" : "Mon, 19 Apr 2021 07:28:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072806Z:a8cd2d72-d7c8-4546-870c-2e497e26cd5f", - "Expires" : "-1", - "x-ms-request-id" : "c22c8230-0d6e-4cef-86ed-f1cb150d5d11", - "Body" : "{\r\n \"name\": \"vm15381773e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"df784201-1228-4a16-bb76-c436340a057c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm15381773e-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-os-disk-84d28f54-f2f8-4fb8-982a-d6e612a231d0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-1-cb7f6bdf-75c4-44d5-851b-2e23283a2679.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-2-a99c4a66-66dc-42e2-856b-3ddd2b415ad8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm15381773e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic916917e3ccd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm15381773e-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:27:43.3022182+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:27:43.3022182+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:27:43.3022182+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\": \"2021-04-19T07:27:43.3179086+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "a568b50b-1e18-4387-83de-58b0c7528847", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e/generalize?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b56e3a1-5618-4203-bb32-19f59b189a09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "025eaba4-7f9c-4be5-9d95-421506a012db", - "Date" : "Mon, 19 Apr 2021 07:28:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072807Z:025eaba4-7f9c-4be5-9d95-421506a012db", - "Expires" : "-1", - "x-ms-request-id" : "0844ce74-32d8-4868-91a8-ca8cd20dc210", - "x-ms-client-request-id" : "8b56e3a1-5618-4203-bb32-19f59b189a09" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5e1d892-7f83-430f-8a20-342803e7ae84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1527", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "82e5eb92-df57-455c-a3de-fd0c160b5cff", - "Date" : "Mon, 19 Apr 2021 07:28:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072817Z:82e5eb92-df57-455c-a3de-fd0c160b5cff", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/54342e8c-c938-4160-b164-76e120bd5d7a?api-version=2021-11-01", - "x-ms-request-id" : "54342e8c-c938-4160-b164-76e120bd5d7a", - "Body" : "{\r\n \"name\": \"img630622a5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-os-disk-84d28f54-f2f8-4fb8-982a-d6e612a231d0.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-1-cb7f6bdf-75c4-44d5-851b-2e23283a2679.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-2-a99c4a66-66dc-42e2-856b-3ddd2b415ad8.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "x-ms-client-request-id" : "b5e1d892-7f83-430f-8a20-342803e7ae84", - "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/westus2/operations/54342e8c-c938-4160-b164-76e120bd5d7a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "525b5b92-1dd2-4898-b4cc-4d339f1850f2" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac1a584b-43ed-4090-b2b4-45c9c7af2262", - "Date" : "Mon, 19 Apr 2021 07:28:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072847Z:ac1a584b-43ed-4090-b2b4-45c9c7af2262", - "Expires" : "-1", - "x-ms-request-id" : "74bda99a-d012-4134-b533-1ad04bc757a5", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:28:10.9739919+00:00\",\r\n \"endTime\": \"2021-04-19T07:28:21.1615567+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"54342e8c-c938-4160-b164-76e120bd5d7a\"\r\n}", - "x-ms-client-request-id" : "525b5b92-1dd2-4898-b4cc-4d339f1850f2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "766dbbd7-997c-4393-b8e4-90bdb54b45ae" - }, - "Response" : { - "content-length" : "1528", - "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" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1718809c-db3e-4ef3-8302-03051088593a", - "Date" : "Mon, 19 Apr 2021 07:28:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072847Z:1718809c-db3e-4ef3-8302-03051088593a", - "Expires" : "-1", - "x-ms-request-id" : "d885d8dd-c4f6-4eb9-b494-5980365bdfee", - "Body" : "{\r\n \"name\": \"img630622a5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm15381773e\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-os-disk-84d28f54-f2f8-4fb8-982a-d6e612a231d0.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-1-cb7f6bdf-75c4-44d5-851b-2e23283a2679.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg7579048382950.blob.core.windows.net/vhds/vm15381773e-data-disk-2-a99c4a66-66dc-42e2-856b-3ddd2b415ad8.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "x-ms-client-request-id" : "766dbbd7-997c-4393-b8e4-90bdb54b45ae", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6d54175-ff22-4fb2-a1ff-a87d777ee3b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1307", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "2e010400-5d1b-48eb-a29e-1d78e2f02e94", - "Date" : "Mon, 19 Apr 2021 07:28:50 GMT", - "x-ms-arm-service-request-id" : "18bc7e6e-2f25-4092-99fc-562bb7bf18ca", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072850Z:2e010400-5d1b-48eb-a29e-1d78e2f02e94", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ea23592e-f5ca-4b13-9b41-2d140d928d1a?api-version=2023-02-01", - "x-ms-request-id" : "ea23592e-f5ca-4b13-9b41-2d140d928d1a", - "Body" : "{\r\n \"name\": \"vnet5967681215\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215\",\r\n \"etag\": \"W/\\\"6ab3b6c2-99bc-4f25-a7c2-3e1a9cddc648\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"29675f70-0aad-4518-9e06-f25ae80d0fcb\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6ab3b6c2-99bc-4f25-a7c2-3e1a9cddc648\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e6d54175-ff22-4fb2-a1ff-a87d777ee3b3", - "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/westus2/operations/ea23592e-f5ca-4b13-9b41-2d140d928d1a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b4fe674-eadd-46ff-baea-53371d2af57b" - }, - "Response" : { - "content-length" : "29", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6179707f-9933-4369-84ac-bee6a77f2131", - "Date" : "Mon, 19 Apr 2021 07:28:53 GMT", - "x-ms-arm-service-request-id" : "05413c81-1ed7-49e4-80ea-b389eb394b8c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072854Z:6179707f-9933-4369-84ac-bee6a77f2131", - "Expires" : "-1", - "x-ms-request-id" : "0fc62ac8-ccb4-49be-8492-c5c1f8615741", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "2b4fe674-eadd-46ff-baea-53371d2af57b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "339d6289-7893-4bc0-86d0-aeaf5ea60b76" - }, - "Response" : { - "content-length" : "1309", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5fbe7476-3b40-4f1a-ba0b-a5f9f3296cf2", - "Date" : "Mon, 19 Apr 2021 07:28:53 GMT", - "x-ms-arm-service-request-id" : "10babc57-ab6d-47b2-9a1c-3140c02dcfbd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"fecb559e-9a91-4168-ba0f-27814ef397da\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072854Z:5fbe7476-3b40-4f1a-ba0b-a5f9f3296cf2", - "Expires" : "-1", - "x-ms-request-id" : "236221a9-ff9f-48a3-af83-5fe3ea7b57b4", - "Body" : "{\r\n \"name\": \"vnet5967681215\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215\",\r\n \"etag\": \"W/\\\"fecb559e-9a91-4168-ba0f-27814ef397da\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29675f70-0aad-4518-9e06-f25ae80d0fcb\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fecb559e-9a91-4168-ba0f-27814ef397da\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "339d6289-7893-4bc0-86d0-aeaf5ea60b76", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic70299a95f0f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "be82dbc8-8c2a-41ff-a9da-a2fb2ddce7c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "0c8191a7-7436-411f-935b-d2c4c732deac", - "Date" : "Mon, 19 Apr 2021 07:28:56 GMT", - "x-ms-arm-service-request-id" : "2f7e4257-3e9f-44aa-a0f5-5b1e08ed4e88", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072857Z:0c8191a7-7436-411f-935b-d2c4c732deac", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0fdd7756-af8b-402c-8054-6883630c11ef?api-version=2023-02-01", - "x-ms-request-id" : "0fdd7756-af8b-402c-8054-6883630c11ef", - "Body" : "{\r\n \"name\": \"nic70299a95f0f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic70299a95f0f\",\r\n \"etag\": \"W/\\\"16c8da40-f459-4968-b976-04819e8ef519\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3008779e-ff1e-4bd9-995b-42d5518e6b13\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic70299a95f0f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"16c8da40-f459-4968-b976-04819e8ef519\\\"\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet5967681215/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\": \"obpwoknnbimelhqg4jnoqdipzd.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "be82dbc8-8c2a-41ff-a9da-a2fb2ddce7c8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm228522515?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee773ed6-bdc6-482c-bf5f-94589e87b5a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2125", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "29f0e177-2f97-4b1d-b49b-c28892e6f268", - "Date" : "Mon, 19 Apr 2021 07:29:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072903Z:29f0e177-2f97-4b1d-b49b-c28892e6f268", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/fec815f3-13d5-4f9d-bfb5-6c7d7f072f76?api-version=2021-11-01", - "x-ms-request-id" : "fec815f3-13d5-4f9d-bfb5-6c7d7f072f76", - "Body" : "{\r\n \"name\": \"vm228522515\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm228522515\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"53792b40-3ad1-4ddf-8f4b-de94b55c00e2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm228522515\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic70299a95f0f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "ee773ed6-bdc6-482c-bf5f-94589e87b5a5", - "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/westus2/operations/fec815f3-13d5-4f9d-bfb5-6c7d7f072f76?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "46ff4d96-3598-4599-a664-077b3e8ede13" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b4b68d83-99ed-4d78-96a7-2e10a0329d1a", - "Date" : "Mon, 19 Apr 2021 07:29:12 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;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072913Z:b4b68d83-99ed-4d78-96a7-2e10a0329d1a", - "Expires" : "-1", - "x-ms-request-id" : "0f5116e2-b745-4bec-b955-f51fe112d560", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:29:01.6145839+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fec815f3-13d5-4f9d-bfb5-6c7d7f072f76\"\r\n}", - "x-ms-client-request-id" : "46ff4d96-3598-4599-a664-077b3e8ede13", - "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/westus2/operations/fec815f3-13d5-4f9d-bfb5-6c7d7f072f76?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d7f636e-d7a0-4de7-9b19-cf3f1822ea11" - }, - "Response" : { - "content-length" : "184", - "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" : "0b82cf9a-217a-427b-93bd-ae93a28e0f52", - "Date" : "Mon, 19 Apr 2021 07:29:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072948Z:0b82cf9a-217a-427b-93bd-ae93a28e0f52", - "Expires" : "-1", - "x-ms-request-id" : "113ee541-ddf2-445d-9026-a96708120417", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:29:01.6145839+00:00\",\r\n \"endTime\": \"2021-04-19T07:29:28.7551624+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fec815f3-13d5-4f9d-bfb5-6c7d7f072f76\"\r\n}", - "x-ms-client-request-id" : "3d7f636e-d7a0-4de7-9b19-cf3f1822ea11", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm228522515?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "215535b7-0614-4473-8727-9642d6742f70" - }, - "Response" : { - "content-length" : "2905", - "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" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0fb4b42-ab21-477a-87f5-18afe7264aba", - "Date" : "Mon, 19 Apr 2021 07:29:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072949Z:e0fb4b42-ab21-477a-87f5-18afe7264aba", - "Expires" : "-1", - "x-ms-request-id" : "36287e44-bed8-441d-bbea-1802eb6b20a9", - "Body" : "{\r\n \"name\": \"vm228522515\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm228522515\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"53792b40-3ad1-4ddf-8f4b-de94b55c00e2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm228522515_disk1_4a014cc282884e6fa28f42e0fe496ceb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm228522515_disk1_4a014cc282884e6fa28f42e0fe496ceb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm228522515_disk2_cffeb0637b6c452ab203506f1e3e9f31\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm228522515_disk2_cffeb0637b6c452ab203506f1e3e9f31\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm228522515_disk3_f18f5879c8514ad7b7f1ff585ac8edf2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm228522515_disk3_f18f5879c8514ad7b7f1ff585ac8edf2\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm228522515\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic70299a95f0f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "215535b7-0614-4473-8727-9642d6742f70", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8f0bd03-805e-421c-bcdf-135fa261c6c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1307", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "11f41f87-fd24-4f8d-a83f-b021bd50fe14", - "Date" : "Mon, 19 Apr 2021 07:29:53 GMT", - "x-ms-arm-service-request-id" : "9c82bd7b-8ff1-4cb8-bdce-c9b5576f3519", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072954Z:11f41f87-fd24-4f8d-a83f-b021bd50fe14", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/91af3a0a-22c9-4684-b5de-489195f6922c?api-version=2023-02-01", - "x-ms-request-id" : "91af3a0a-22c9-4684-b5de-489195f6922c", - "Body" : "{\r\n \"name\": \"vnet288333eceb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb\",\r\n \"etag\": \"W/\\\"de7e274d-726a-4d5e-81ef-e786b7471fd4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"688df2ca-a170-4508-a382-0d0c747200be\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb/subnets/subnet1\",\r\n \"etag\": \"W/\\\"de7e274d-726a-4d5e-81ef-e786b7471fd4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "f8f0bd03-805e-421c-bcdf-135fa261c6c8", - "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/westus2/operations/91af3a0a-22c9-4684-b5de-489195f6922c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2439289-5481-45e4-86a8-0efe698ce645" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a45a780-7600-4e13-9e48-aec74dea53a9", - "Date" : "Mon, 19 Apr 2021 07:29:56 GMT", - "x-ms-arm-service-request-id" : "7908e689-c6ac-4e84-a959-5853d664822c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072957Z:6a45a780-7600-4e13-9e48-aec74dea53a9", - "Expires" : "-1", - "x-ms-request-id" : "0d214b44-390e-4730-9718-b2732b7b2da6", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "e2439289-5481-45e4-86a8-0efe698ce645", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab0e06f7-de54-42f7-ba72-195e163bb64c" - }, - "Response" : { - "content-length" : "1309", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3477c5ba-d305-411e-9860-e12e474c0fd9", - "Date" : "Mon, 19 Apr 2021 07:29:57 GMT", - "x-ms-arm-service-request-id" : "336663f7-63f3-49a2-b27e-3bef141a21c2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"e35af186-4573-423e-b201-fdb49771300d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T072957Z:3477c5ba-d305-411e-9860-e12e474c0fd9", - "Expires" : "-1", - "x-ms-request-id" : "27b64477-bc97-4fdd-b0a9-c9e05fd9f668", - "Body" : "{\r\n \"name\": \"vnet288333eceb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb\",\r\n \"etag\": \"W/\\\"e35af186-4573-423e-b201-fdb49771300d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"688df2ca-a170-4508-a382-0d0c747200be\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e35af186-4573-423e-b201-fdb49771300d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "ab0e06f7-de54-42f7-ba72-195e163bb64c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic52151e97654?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b18bd50-4af1-4413-a1bf-974ffe171a77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "812b44f6-0f44-464f-a6b7-1763908a530e", - "Date" : "Mon, 19 Apr 2021 07:30:00 GMT", - "x-ms-arm-service-request-id" : "6d2de1a9-e2ec-4aeb-915c-9047b0b338df", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073001Z:812b44f6-0f44-464f-a6b7-1763908a530e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/18e48ae1-fe34-4767-b9c0-58f532470aa7?api-version=2023-02-01", - "x-ms-request-id" : "18e48ae1-fe34-4767-b9c0-58f532470aa7", - "Body" : "{\r\n \"name\": \"nic52151e97654\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic52151e97654\",\r\n \"etag\": \"W/\\\"fb72b77a-2f33-4902-9d14-f9c213473f78\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a44c0e5-1d8c-4b6e-93b2-b707f87cb2f7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic52151e97654/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fb72b77a-2f33-4902-9d14-f9c213473f78\\\"\",\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/rgcomv001070d/providers/Microsoft.Network/virtualNetworks/vnet288333eceb/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\": \"zlzi00dqueeeli2cbughi2qaxg.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "1b18bd50-4af1-4413-a1bf-974ffe171a77", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1853485-e142-4b66-91ef-c3c37d4f9803", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2394", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "c7f8c3e6-1dcf-4173-8ba1-9354e6718d43", - "Date" : "Mon, 19 Apr 2021 07:30:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073007Z:c7f8c3e6-1dcf-4173-8ba1-9354e6718d43", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/3ef0c08c-c052-43e5-9b4e-974f5b8391a8?api-version=2021-11-01", - "x-ms-request-id" : "3ef0c08c-c052-43e5-9b4e-974f5b8391a8", - "Body" : "{\r\n \"name\": \"vm315242053\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11e85aae-5854-4b3b-8507-865d3d8b6c51\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm315242053\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic52151e97654\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "f1853485-e142-4b66-91ef-c3c37d4f9803", - "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/westus2/operations/3ef0c08c-c052-43e5-9b4e-974f5b8391a8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce7e8465-c06b-43fd-84b3-9ce3162c58e6" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "335f70d3-57e6-4d5d-81a2-cf39de2a91cc", - "Date" : "Mon, 19 Apr 2021 07:30:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073017Z:335f70d3-57e6-4d5d-81a2-cf39de2a91cc", - "Expires" : "-1", - "x-ms-request-id" : "8ca5750d-a15d-4d12-8c26-1d59b3cb468e", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:30:05.8644792+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ef0c08c-c052-43e5-9b4e-974f5b8391a8\"\r\n}", - "x-ms-client-request-id" : "ce7e8465-c06b-43fd-84b3-9ce3162c58e6", - "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/westus2/operations/3ef0c08c-c052-43e5-9b4e-974f5b8391a8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f592ea5e-9943-4c56-bd2e-cd97f28bb6b2" - }, - "Response" : { - "content-length" : "184", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "353efe1c-3648-4ea0-aea5-d79a71481fc6", - "Date" : "Mon, 19 Apr 2021 07:30:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073052Z:353efe1c-3648-4ea0-aea5-d79a71481fc6", - "Expires" : "-1", - "x-ms-request-id" : "0d73ec9e-bcc3-4bd4-9d34-0c1563d59404", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:30:05.8644792+00:00\",\r\n \"endTime\": \"2021-04-19T07:30:29.8643712+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3ef0c08c-c052-43e5-9b4e-974f5b8391a8\"\r\n}", - "x-ms-client-request-id" : "f592ea5e-9943-4c56-bd2e-cd97f28bb6b2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5474b55b-4873-4314-9eaf-83d070f6d089" - }, - "Response" : { - "content-length" : "3435", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6825ac81-31db-48cd-b5ba-4a48ba758fb9", - "Date" : "Mon, 19 Apr 2021 07:30:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073052Z:6825ac81-31db-48cd-b5ba-4a48ba758fb9", - "Expires" : "-1", - "x-ms-request-id" : "85db0c3f-48f9-4585-bb02-5be8ed84cc4d", - "Body" : "{\r\n \"name\": \"vm315242053\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11e85aae-5854-4b3b-8507-865d3d8b6c51\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm315242053_disk1_fd68918816df4c8fa0a9766c4533d2a0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk1_fd68918816df4c8fa0a9766c4533d2a0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm315242053_disk2_534f0e7a552d407cac7c47dabfc7836d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk2_534f0e7a552d407cac7c47dabfc7836d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm315242053_disk3_7f93315922c94035bf48ca31c287fc10\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk3_7f93315922c94035bf48ca31c287fc10\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm315242053_disk4_a22b25f558f44e0493e7feaf82164a8c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk4_a22b25f558f44e0493e7feaf82164a8c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm315242053\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv001070d/providers/Microsoft.Network/networkInterfaces/nic52151e97654\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "5474b55b-4873-4314-9eaf-83d070f6d089", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c36e7e5-4afe-460f-b391-0816a6bc98a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "c7785703-4708-455e-8095-f9b4547f00ed", - "Date" : "Mon, 19 Apr 2021 07:30:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073053Z:c7785703-4708-455e-8095-f9b4547f00ed", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/96b37884-96c5-4e1d-8ab6-81ff33c2bf9a?api-version=2021-11-01", - "x-ms-request-id" : "96b37884-96c5-4e1d-8ab6-81ff33c2bf9a", - "x-ms-client-request-id" : "1c36e7e5-4afe-460f-b391-0816a6bc98a1", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/96b37884-96c5-4e1d-8ab6-81ff33c2bf9a?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/96b37884-96c5-4e1d-8ab6-81ff33c2bf9a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1521c83b-4723-4506-b9be-1b79855c2c3c" - }, - "Response" : { - "content-length" : "133", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cec854d-ba57-4b37-9dbd-b94aabbc8042", - "Date" : "Mon, 19 Apr 2021 07:31:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073103Z:6cec854d-ba57-4b37-9dbd-b94aabbc8042", - "Expires" : "-1", - "x-ms-request-id" : "6bf1fb5b-bbae-4c39-a77c-82afd400b90c", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:30:53.051809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"96b37884-96c5-4e1d-8ab6-81ff33c2bf9a\"\r\n}", - "x-ms-client-request-id" : "1521c83b-4723-4506-b9be-1b79855c2c3c", - "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/westus2/operations/96b37884-96c5-4e1d-8ab6-81ff33c2bf9a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f6db09b-ce35-4f76-9cf6-82bc336b17a9" - }, - "Response" : { - "content-length" : "183", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "974f9ff0-db05-4340-8184-327ff02427e2", - "Date" : "Mon, 19 Apr 2021 07:31:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073139Z:974f9ff0-db05-4340-8184-327ff02427e2", - "Expires" : "-1", - "x-ms-request-id" : "ccf856ce-b2d8-4ae7-bc65-1c0680ffd08e", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:30:53.051809+00:00\",\r\n \"endTime\": \"2021-04-19T07:31:36.9424309+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"96b37884-96c5-4e1d-8ab6-81ff33c2bf9a\"\r\n}", - "x-ms-client-request-id" : "9f6db09b-ce35-4f76-9cf6-82bc336b17a9", - "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/westus2/operations/96b37884-96c5-4e1d-8ab6-81ff33c2bf9a?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b6261a9-4852-466a-83ab-9f240dd264b0" - }, - "Response" : { - "content-length" : "0", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb0b9405-4956-4a0d-aa36-0b798203a4e8", - "Date" : "Mon, 19 Apr 2021 07:31:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073139Z:eb0b9405-4956-4a0d-aa36-0b798203a4e8", - "Expires" : "-1", - "x-ms-request-id" : "f44d8f70-55a0-45c7-ad4f-bbb2494179ab", - "x-ms-client-request-id" : "1b6261a9-4852-466a-83ab-9f240dd264b0" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk1_fd68918816df4c8fa0a9766c4533d2a0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b8c5943-d3aa-44dc-89c3-3faf541807a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1321", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63c0c105-82fa-45c2-b53a-5bce2418a988", - "Date" : "Mon, 19 Apr 2021 07:31:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073140Z:63c0c105-82fa-45c2-b53a-5bce2418a988", - "Expires" : "-1", - "x-ms-request-id" : "e5cb63dc-02cf-4614-ba23-3dfe9cef9ee0", - "Body" : "{\r\n \"name\": \"vm315242053_disk1_fd68918816df4c8fa0a9766c4533d2a0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk1_fd68918816df4c8fa0a9766c4533d2a0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/snapshots/img630622a5_0_3wgtih4rxit\",\r\n \"sourceUniqueId\": \"329713ae-b6db-463e-9f4b-5953682dc5ba\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:30:06.1097306+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"fd689188-16df-4c8f-a0a9-766c4533d2a0\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "4b8c5943-d3aa-44dc-89c3-3faf541807a3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk1_fd68918816df4c8fa0a9766c4533d2a0/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "80f1d965-9691-421a-bacd-250801de9c2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "cc2a0c49-e4ac-4321-a271-74ce77bb413b", - "Date" : "Mon, 19 Apr 2021 07:31:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073141Z:cc2a0c49-e4ac-4321-a271-74ce77bb413b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/cfd6f004-6a43-4039-904a-3efa7b78622b?api-version=2021-11-01", - "x-ms-request-id" : "cfd6f004-6a43-4039-904a-3efa7b78622b", - "x-ms-client-request-id" : "80f1d965-9691-421a-bacd-250801de9c2e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/cfd6f004-6a43-4039-904a-3efa7b78622b?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/cfd6f004-6a43-4039-904a-3efa7b78622b?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a2b6417-096b-44b9-8034-3293624ca734" - }, - "Response" : { - "content-length" : "421", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f34f25b3-99ad-4122-a621-325bf55cb62d", - "Date" : "Mon, 19 Apr 2021 07:32:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073211Z:f34f25b3-99ad-4122-a621-325bf55cb62d", - "Expires" : "-1", - "x-ms-request-id" : "1f421036-974b-4b62-b3ef-5190f88d48d7", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:31:40.9062811+00:00\",\r\n \"endTime\": \"2021-04-19T07:31:41.0781063+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"cfd6f004-6a43-4039-904a-3efa7b78622b\"\r\n}", - "x-ms-client-request-id" : "4a2b6417-096b-44b9-8034-3293624ca734", - "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/westus2/DiskOperations/cfd6f004-6a43-4039-904a-3efa7b78622b?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9202f98-7df9-4a1e-9b16-b12118f9db67" - }, - "Response" : { - "content-length" : "196", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7eacc85-1957-40c6-a9a8-002b133ca2ff", - "Date" : "Mon, 19 Apr 2021 07:32:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073211Z:c7eacc85-1957-40c6-a9a8-002b133ca2ff", - "Expires" : "-1", - "x-ms-request-id" : "24e0b3e6-365b-4af7-ada6-520465d011c5", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "b9202f98-7df9-4a1e-9b16-b12118f9db67", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk2_534f0e7a552d407cac7c47dabfc7836d?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b4140ef-3e66-4523-887f-87312e538b9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b49d0b2-708a-4fc6-b756-d08f9ce1cc3c", - "Date" : "Mon, 19 Apr 2021 07:32:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073212Z:1b49d0b2-708a-4fc6-b756-d08f9ce1cc3c", - "Expires" : "-1", - "x-ms-request-id" : "6bb85068-24b2-4d1d-ae47-f1756139b5cb", - "Body" : "{\r\n \"name\": \"vm315242053_disk2_534f0e7a552d407cac7c47dabfc7836d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk2_534f0e7a552d407cac7c47dabfc7836d\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:30:06.1253867+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"534f0e7a-552d-407c-ac7c-47dabfc7836d\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "8b4140ef-3e66-4523-887f-87312e538b9f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk2_534f0e7a552d407cac7c47dabfc7836d/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5b75b9d-4b13-4a1e-ae31-e411d5687b6e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "c8eb70e1-5aee-40df-b744-03f6862a173a", - "Date" : "Mon, 19 Apr 2021 07:32:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073212Z:c8eb70e1-5aee-40df-b744-03f6862a173a", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/06926401-754b-4732-aab4-9e9813d47680?api-version=2021-11-01", - "x-ms-request-id" : "06926401-754b-4732-aab4-9e9813d47680", - "x-ms-client-request-id" : "f5b75b9d-4b13-4a1e-ae31-e411d5687b6e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/06926401-754b-4732-aab4-9e9813d47680?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/06926401-754b-4732-aab4-9e9813d47680?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "66b4a022-ebbb-4199-88d0-4ddd05e7e7e2" - }, - "Response" : { - "content-length" : "427", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "237ef0b5-147e-45c4-91a3-4d7fb09f277d", - "Date" : "Mon, 19 Apr 2021 07:32:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073242Z:237ef0b5-147e-45c4-91a3-4d7fb09f277d", - "Expires" : "-1", - "x-ms-request-id" : "746dc51a-f19e-4baf-8e36-842f7c8bccf2", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:32:12.4070568+00:00\",\r\n \"endTime\": \"2021-04-19T07:32:12.5477219+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"06926401-754b-4732-aab4-9e9813d47680\"\r\n}", - "x-ms-client-request-id" : "66b4a022-ebbb-4199-88d0-4ddd05e7e7e2", - "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/westus2/DiskOperations/06926401-754b-4732-aab4-9e9813d47680?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0eb7875f-3f5a-4145-b4ab-ad0fd0031168" - }, - "Response" : { - "content-length" : "202", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96713083-3302-46ee-847a-8aa9b08a18f9", - "Date" : "Mon, 19 Apr 2021 07:32:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073243Z:96713083-3302-46ee-847a-8aa9b08a18f9", - "Expires" : "-1", - "x-ms-request-id" : "b8ba12cb-41df-41a3-91fe-a51c5d578b4d", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "0eb7875f-3f5a-4145-b4ab-ad0fd0031168", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk3_7f93315922c94035bf48ca31c287fc10?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cdda814-0567-435f-aa4e-f509820ba496", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d19b7f9a-bf6a-4964-abd8-007590823e43", - "Date" : "Mon, 19 Apr 2021 07:32:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073243Z:d19b7f9a-bf6a-4964-abd8-007590823e43", - "Expires" : "-1", - "x-ms-request-id" : "ded2c680-183b-49d7-b179-3d4c84c235a3", - "Body" : "{\r\n \"name\": \"vm315242053_disk3_7f93315922c94035bf48ca31c287fc10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk3_7f93315922c94035bf48ca31c287fc10\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/snapshots/img630622a5_1_r4vkzazwiix\",\r\n \"sourceUniqueId\": \"7b845660-f2a0-4791-9caf-32e9efc1b8ae\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:30:06.1253867+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"7f933159-22c9-4035-bf48-ca31c287fc10\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "4cdda814-0567-435f-aa4e-f509820ba496", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk3_7f93315922c94035bf48ca31c287fc10/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "88d6cf68-11d2-433c-ab54-d2963806ca8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "9b9328eb-0b12-48fa-b101-c37caf2737dc", - "Date" : "Mon, 19 Apr 2021 07:32:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073244Z:9b9328eb-0b12-48fa-b101-c37caf2737dc", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/fd78d034-a027-4d1f-82d8-5f15921b06fd?api-version=2021-11-01", - "x-ms-request-id" : "fd78d034-a027-4d1f-82d8-5f15921b06fd", - "x-ms-client-request-id" : "88d6cf68-11d2-433c-ab54-d2963806ca8c", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/fd78d034-a027-4d1f-82d8-5f15921b06fd?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/fd78d034-a027-4d1f-82d8-5f15921b06fd?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "560bd6b1-346c-47ae-9996-d6cd81ae4884" - }, - "Response" : { - "content-length" : "427", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e46beb5a-c37c-4d74-9048-ae60a86e22e6", - "Date" : "Mon, 19 Apr 2021 07:33:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073314Z:e46beb5a-c37c-4d74-9048-ae60a86e22e6", - "Expires" : "-1", - "x-ms-request-id" : "13e9625d-6eb8-42ba-af30-9232a748e202", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:32:44.4232741+00:00\",\r\n \"endTime\": \"2021-04-19T07:32:44.5483169+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"fd78d034-a027-4d1f-82d8-5f15921b06fd\"\r\n}", - "x-ms-client-request-id" : "560bd6b1-346c-47ae-9996-d6cd81ae4884", - "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/westus2/DiskOperations/fd78d034-a027-4d1f-82d8-5f15921b06fd?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "53ad53d5-d36b-4eb7-be79-7194893aed1c" - }, - "Response" : { - "content-length" : "202", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a6a6010-67e1-41ac-8600-690727e5f900", - "Date" : "Mon, 19 Apr 2021 07:33:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073315Z:9a6a6010-67e1-41ac-8600-690727e5f900", - "Expires" : "-1", - "x-ms-request-id" : "a37ab928-9ec2-4a2f-a105-ddc72665a719", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "53ad53d5-d36b-4eb7-be79-7194893aed1c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk4_a22b25f558f44e0493e7feaf82164a8c?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d12c0ead-e06d-4ca7-8c38-75ea4aadbafe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfcffa66-aca8-43f5-a84c-a0257c7d2744", - "Date" : "Mon, 19 Apr 2021 07:33:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073315Z:cfcffa66-aca8-43f5-a84c-a0257c7d2744", - "Expires" : "-1", - "x-ms-request-id" : "c614374b-d27a-469a-ad5f-0217f411804c", - "Body" : "{\r\n \"name\": \"vm315242053_disk4_a22b25f558f44e0493e7feaf82164a8c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk4_a22b25f558f44e0493e7feaf82164a8c\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/virtualMachines/vm315242053\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/snapshots/img630622a5_2_ofxqw0qivvj\",\r\n \"sourceUniqueId\": \"7dc9c618-53f7-44c9-81d1-d413f96da158\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:30:06.1253867+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"a22b25f5-58f4-4e04-93e7-feaf82164a8c\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "d12c0ead-e06d-4ca7-8c38-75ea4aadbafe", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/disks/vm315242053_disk4_a22b25f558f44e0493e7feaf82164a8c/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c37667d-5cc3-4c16-8e61-bd537d4be2cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "95c3b106-4182-4bfc-ad9f-bf5a1f8fac07", - "Date" : "Mon, 19 Apr 2021 07:33:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073316Z:95c3b106-4182-4bfc-ad9f-bf5a1f8fac07", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/0865a4fe-8c7d-4552-8175-9d5b2bd8d522?api-version=2021-11-01", - "x-ms-request-id" : "0865a4fe-8c7d-4552-8175-9d5b2bd8d522", - "x-ms-client-request-id" : "7c37667d-5cc3-4c16-8e61-bd537d4be2cc", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/0865a4fe-8c7d-4552-8175-9d5b2bd8d522?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/0865a4fe-8c7d-4552-8175-9d5b2bd8d522?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ece3df11-0909-4710-9a00-0b4e54996f83" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad91a872-c1a4-4e81-8126-2680060e7cce", - "Date" : "Mon, 19 Apr 2021 07:33:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073346Z:ad91a872-c1a4-4e81-8126-2680060e7cce", - "Expires" : "-1", - "x-ms-request-id" : "1533ca9e-9dc7-4749-a9e0-2fb55b2604c4", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:33:15.9079889+00:00\",\r\n \"endTime\": \"2021-04-19T07:33:16.0485905+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"0865a4fe-8c7d-4552-8175-9d5b2bd8d522\"\r\n}", - "x-ms-client-request-id" : "ece3df11-0909-4710-9a00-0b4e54996f83", - "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/westus2/DiskOperations/0865a4fe-8c7d-4552-8175-9d5b2bd8d522?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fde9ec22-fa1f-4c42-ae91-c440de6f335f" - }, - "Response" : { - "content-length" : "198", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "5a4028d2-67b0-4338-814a-7278d5a49e7d_132522047500966835", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2339f1ae-cd7a-4a25-9195-2b536afd8cc5", - "Date" : "Mon, 19 Apr 2021 07:33:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073346Z:2339f1ae-cd7a-4a25-9195-2b536afd8cc5", - "Expires" : "-1", - "x-ms-request-id" : "fcb871ca-ffbe-41d3-a096-9a748c2edd6c", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "fde9ec22-fa1f-4c42-ae91-c440de6f335f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv001070d/providers/Microsoft.Compute/images/img630622a5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbf24f94-6f8e-4947-951e-ffce0c20ddb4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "3a567656-14b1-4a7e-a03b-775de1b58cec", - "Date" : "Mon, 19 Apr 2021 07:33:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteImages3Min;119,Microsoft.Compute/DeleteImages30Min;599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073347Z:3a567656-14b1-4a7e-a03b-775de1b58cec", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/906632a5-3f98-4bf2-8010-70babec4b843?api-version=2021-11-01", - "x-ms-request-id" : "906632a5-3f98-4bf2-8010-70babec4b843", - "x-ms-client-request-id" : "cbf24f94-6f8e-4947-951e-ffce0c20ddb4", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/906632a5-3f98-4bf2-8010-70babec4b843?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/906632a5-3f98-4bf2-8010-70babec4b843?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "57598ac4-b8d4-4fe3-bf95-3a826ded77fb" - }, - "Response" : { - "content-length" : "184", - "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" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1054c522-534c-404e-aff1-e7470f4e7419", - "Date" : "Mon, 19 Apr 2021 07:34:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073418Z:1054c522-534c-404e-aff1-e7470f4e7419", - "Expires" : "-1", - "x-ms-request-id" : "33acfc4b-cecd-41e6-baad-9984f417e4f2", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:33:47.1767669+00:00\",\r\n \"endTime\": \"2021-04-19T07:33:52.2704724+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"906632a5-3f98-4bf2-8010-70babec4b843\"\r\n}", - "x-ms-client-request-id" : "57598ac4-b8d4-4fe3-bf95-3a826ded77fb", - "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/westus2/operations/906632a5-3f98-4bf2-8010-70babec4b843?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "15c43cdf-14b5-4e5e-a4f6-0cf0f1ea3e01" - }, - "Response" : { - "content-length" : "0", - "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" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8b260db-c8ff-4626-ae99-b1fb7dc9c9e4", - "Date" : "Mon, 19 Apr 2021 07:34:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073418Z:f8b260db-c8ff-4626-ae99-b1fb7dc9c9e4", - "Expires" : "-1", - "x-ms-request-id" : "f681c810-a40c-431d-9f74-444e3c614b2e", - "x-ms-client-request-id" : "15c43cdf-14b5-4e5e-a4f6-0cf0f1ea3e01" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv001070d?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5e32975-77a1-4b75-ad8c-4f0389b3ba0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "6d794106-84a6-4d3c-b0eb-cd776a3c190b", - "Date" : "Mon, 19 Apr 2021 07:34:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073421Z:6d794106-84a6-4d3c-b0eb-cd776a3c190b", - "Expires" : "-1", - "x-ms-request-id" : "6d794106-84a6-4d3c-b0eb-cd776a3c190b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDEwNzBELVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm15381773e", "vm228522515", "vm315242053", "img630622a5", "rgcomv001070d", "pip85189aff", "nic916917e3ccd", "vnet616440a646", "pip779145f3", "stg7579048382950", "nic70299a95f0f", "vnet5967681215", "nic52151e97654", "vnet288333eceb" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json deleted file mode 100644 index 9c55aa685210..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromSnapshot.json +++ /dev/null @@ -1,2220 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5895421?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "509d5169-eff4-4e1a-baed-eea4cd8b5478", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "4ee84f0e-1e2a-4158-8b58-b3ad25435d3b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:4ee84f0e-1e2a-4158-8b58-b3ad25435d3b", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "4ee84f0e-1e2a-4158-8b58-b3ad25435d3b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421\",\"name\":\"rgcomv5895421\",\"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/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "08510dfd-afe9-4845-8e4c-4418872a1548", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:12 GMT", - "x-ms-correlation-request-id" : "3faa599f-aa4d-44f9-afd3-82397e40c19c", - "x-ms-arm-service-request-id" : "7b25a1f7-f117-40c3-85e6-1c9aef2d47ac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172213Z:3faa599f-aa4d-44f9-afd3-82397e40c19c", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d19d51cf-017c-4ed7-bd88-55a92b530051?api-version=2023-02-01", - "x-ms-request-id" : "d19d51cf-017c-4ed7-bd88-55a92b530051", - "Body" : "{\r\n \"name\": \"vnet68416b8f37\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37\",\r\n \"etag\": \"W/\\\"ea19228e-69e2-46f8-aa86-7b165f83e626\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"706ce74c-560e-4cf6-85f9-4a0aabd95c21\",\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/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ea19228e-69e2-46f8-aa86-7b165f83e626\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "08510dfd-afe9-4845-8e4c-4418872a1548", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/publicIPAddresses/pip8251740a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "898ae2ae-020d-49ba-b771-eb1c29c8b60d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "68ee1b16-9247-4e3d-a9bd-3d5c076fc675", - "x-ms-arm-service-request-id" : "a0dc1d59-7315-4548-9fa9-43f08614fd8a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:68ee1b16-9247-4e3d-a9bd-3d5c076fc675", - "Expires" : "-1", - "Content-Length" : "774", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/44009521-77b7-4970-b472-1d12f395825e?api-version=2023-02-01", - "x-ms-request-id" : "44009521-77b7-4970-b472-1d12f395825e", - "Body" : "{\r\n \"name\": \"pip8251740a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/publicIPAddresses/pip8251740a\",\r\n \"etag\": \"W/\\\"36c9a2d4-febb-40d5-8f1d-e5810a4e2f60\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fa89d616-e5fa-49e4-a816-aa00ae5087c2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip5987349b\",\r\n \"fqdn\": \"pip5987349b.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "898ae2ae-020d-49ba-b771-eb1c29c8b60d", - "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/44009521-77b7-4970-b472-1d12f395825e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "87eef74a-8e72-4ecb-8caa-c62cf3afeb5f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "416c25b1-6c86-4f54-b422-4a173121ad45", - "x-ms-arm-service-request-id" : "7aada47f-ca35-4780-9159-472695f544a6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:416c25b1-6c86-4f54-b422-4a173121ad45", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "2c9e78c5-d13a-47ed-a358-0a181220886d", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "87eef74a-8e72-4ecb-8caa-c62cf3afeb5f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/publicIPAddresses/pip8251740a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b2f1c55-53a2-4d56-a0a7-37ccfa83e4a1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "7af6dccf-2d16-4755-aee7-c06aae5f8237", - "x-ms-arm-service-request-id" : "f13cdecb-0e4e-48b1-9cc5-1e604a4a581f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"d64951d1-7766-4665-a9c6-0339366ff219\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:7af6dccf-2d16-4755-aee7-c06aae5f8237", - "Expires" : "-1", - "Content-Length" : "775", - "x-ms-request-id" : "ae0019e4-cf81-4c5e-8c7a-cf01bd779702", - "Body" : "{\r\n \"name\": \"pip8251740a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/publicIPAddresses/pip8251740a\",\r\n \"etag\": \"W/\\\"d64951d1-7766-4665-a9c6-0339366ff219\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa89d616-e5fa-49e4-a816-aa00ae5087c2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip5987349b\",\r\n \"fqdn\": \"pip5987349b.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "9b2f1c55-53a2-4d56-a0a7-37ccfa83e4a1", - "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/d19d51cf-017c-4ed7-bd88-55a92b530051?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "16712ea1-312d-4d65-afa8-d04c366b8e1c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "08b81d98-d3ab-4c90-bab2-e7aaeb1d1ff1", - "x-ms-arm-service-request-id" : "60ab4750-48af-42d7-b6d8-a5bf5d2de450", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:08b81d98-d3ab-4c90-bab2-e7aaeb1d1ff1", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "18b4d495-b5b1-4fb3-96ba-9c6165dd1a6a", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "16712ea1-312d-4d65-afa8-d04c366b8e1c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "615d093d-80e3-4df9-b87a-b3ec4585b6c0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "75a55f8a-3bbc-476d-a350-bd46aa0cf97f", - "x-ms-arm-service-request-id" : "18b1edaa-ddf4-4e03-8cb3-0b1b8ad406e1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"59485a43-ed70-49d1-8777-f3bf10e3b8be\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:75a55f8a-3bbc-476d-a350-bd46aa0cf97f", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "9504ad01-9f0d-45a1-8446-5a3bc83ab46e", - "Body" : "{\r\n \"name\": \"vnet68416b8f37\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37\",\r\n \"etag\": \"W/\\\"59485a43-ed70-49d1-8777-f3bf10e3b8be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"706ce74c-560e-4cf6-85f9-4a0aabd95c21\",\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/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37/subnets/subnet1\",\r\n \"etag\": \"W/\\\"59485a43-ed70-49d1-8777-f3bf10e3b8be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "615d093d-80e3-4df9-b87a-b3ec4585b6c0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic60161540a1f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6be3081-5166-48fe-9a0d-8d6e5c0a55b4", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "1e2a0f8d-3389-4660-940e-362f34142ed5", - "x-ms-arm-service-request-id" : "623063ad-aab1-4f10-8e69-0618e2a98465", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172220Z:1e2a0f8d-3389-4660-940e-362f34142ed5", - "Expires" : "-1", - "Content-Length" : "1866", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a46ca8c2-75b6-43c0-8a52-1e346518e1a5?api-version=2023-02-01", - "x-ms-request-id" : "a46ca8c2-75b6-43c0-8a52-1e346518e1a5", - "Body" : "{\r\n \"name\": \"nic60161540a1f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic60161540a1f\",\r\n \"etag\": \"W/\\\"2fcddbdf-42f4-44ef-9ac9-8513953bdde6\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f6ac8a46-6c72-48e1-a10b-dd5c08679756\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic60161540a1f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2fcddbdf-42f4-44ef-9ac9-8513953bdde6\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/publicIPAddresses/pip8251740a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet68416b8f37/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\": \"jttwy2aok11ezbpzjifkxwk2eb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "b6be3081-5166-48fe-9a0d-8d6e5c0a55b4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "00c1ed6c-82c6-4143-8618-a65203e8c8af", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "c576cac5-0481-44fe-8fb4-4f336824c8c5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:c576cac5-0481-44fe-8fb4-4f336824c8c5", - "Expires" : "-1", - "Content-Length" : "2145", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b63743b9-9528-4142-9ca9-b696ea523b44?api-version=2021-11-01", - "x-ms-request-id" : "b63743b9-9528-4142-9ca9-b696ea523b44", - "Body" : "{\r\n \"name\": \"vm130762f7a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0e99cd73-c042-4b5e-856d-bc11e70892c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm130762f7a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic60161540a1f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "00c1ed6c-82c6-4143-8618-a65203e8c8af", - "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/b63743b9-9528-4142-9ca9-b696ea523b44?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d1f7b54-99f9-4c72-9fb1-b9fe7b041e7e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "9027a5f0-defc-417e-91d8-c3cbd3d9b995", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:9027a5f0-defc-417e-91d8-c3cbd3d9b995", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "c5b61527-b5b1-4d34-85ab-5d1f4f477e01", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:22.2870332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b63743b9-9528-4142-9ca9-b696ea523b44\"\r\n}", - "x-ms-client-request-id" : "6d1f7b54-99f9-4c72-9fb1-b9fe7b041e7e", - "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/b63743b9-9528-4142-9ca9-b696ea523b44?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a31d8f13-1b28-4958-bc21-1bf94e9fae07" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:08 GMT", - "x-ms-correlation-request-id" : "8e02bf48-8d30-4e5e-a6e3-d3a967b44672", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172309Z:8e02bf48-8d30-4e5e-a6e3-d3a967b44672", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "3ef56c15-6478-4bcc-b864-344e6d323ded", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:22.2870332+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:43.5222343+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b63743b9-9528-4142-9ca9-b696ea523b44\"\r\n}", - "x-ms-client-request-id" : "a31d8f13-1b28-4958-bc21-1bf94e9fae07", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "111d2fee-31fe-442a-aa59-172b74bc764e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:08 GMT", - "x-ms-correlation-request-id" : "3e3430d0-be34-491b-a858-55a5717cd352", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172309Z:3e3430d0-be34-491b-a858-55a5717cd352", - "Expires" : "-1", - "Content-Length" : "2931", - "x-ms-request-id" : "048e3395-8fe8-492d-9c7d-4c1af39a8ca3", - "Body" : "{\r\n \"name\": \"vm130762f7a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0e99cd73-c042-4b5e-856d-bc11e70892c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm130762f7a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic60161540a1f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "111d2fee-31fe-442a-aa59-172b74bc764e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f8f5a69-0562-442a-a39e-f60a28e7bc62", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:14 GMT", - "x-ms-correlation-request-id" : "6beb1711-8a22-4e13-9560-1bed069d05f6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172315Z:6beb1711-8a22-4e13-9560-1bed069d05f6", - "Expires" : "-1", - "Content-Length" : "752", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e9eed6e5-1e8c-44e1-a6d4-53e5225d062d?api-version=2021-11-01", - "x-ms-request-id" : "e9eed6e5-1e8c-44e1-a6d4-53e5225d062d", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "1f8f5a69-0562-442a-a39e-f60a28e7bc62", - "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/e9eed6e5-1e8c-44e1-a6d4-53e5225d062d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "729daff1-ba3b-4d99-8b04-ec72862ac4d2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:45 GMT", - "x-ms-correlation-request-id" : "bd1b0fc3-000d-4505-ad38-e5ea63c3b644", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172346Z:bd1b0fc3-000d-4505-ad38-e5ea63c3b644", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "6015c316-619e-4b7d-b634-2e300f51b6cd", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:14.7109548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9eed6e5-1e8c-44e1-a6d4-53e5225d062d\"\r\n}", - "x-ms-client-request-id" : "729daff1-ba3b-4d99-8b04-ec72862ac4d2", - "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/e9eed6e5-1e8c-44e1-a6d4-53e5225d062d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "67102348-f124-4d98-b015-8547d116c71c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:15 GMT", - "x-ms-correlation-request-id" : "22d74eee-f40f-4f79-b954-06757006cf21", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14929,Microsoft.Compute/GetOperation30Min;29929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172416Z:22d74eee-f40f-4f79-b954-06757006cf21", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e2ab5a9e-16f8-4541-8d21-1d4a1e76246d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:14.7109548+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:10.4631359+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9eed6e5-1e8c-44e1-a6d4-53e5225d062d\"\r\n}", - "x-ms-client-request-id" : "67102348-f124-4d98-b015-8547d116c71c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8343a99-6c58-48ac-ad83-c1590bc4c47c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:16 GMT", - "x-ms-correlation-request-id" : "7a1e8737-5ae8-4ea4-8baf-177ca5f60914", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172416Z:7a1e8737-5ae8-4ea4-8baf-177ca5f60914", - "Expires" : "-1", - "Content-Length" : "753", - "x-ms-request-id" : "6b5885ea-6fb2-43aa-8114-37c9196574f6", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "d8343a99-6c58-48ac-ad83-c1590bc4c47c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6df753b-c135-4220-a691-61d2a273dd7f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:16 GMT", - "x-ms-correlation-request-id" : "db44f037-cb2b-4c9b-b4b6-df4d9f00ec67", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172417Z:db44f037-cb2b-4c9b-b4b6-df4d9f00ec67", - "Expires" : "-1", - "Content-Length" : "3766", - "x-ms-request-id" : "3448ce91-049a-4441-a05b-15ac986ce4f6", - "Body" : "{\r\n \"name\": \"vm130762f7a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0e99cd73-c042-4b5e-856d-bc11e70892c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm130762f7a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic60161540a1f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "a6df753b-c135-4220-a691-61d2a273dd7f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aa89c6f-aa12-40d5-a81b-cad9f446f101", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:16 GMT", - "x-ms-correlation-request-id" : "2093f0da-7b6f-4554-a440-819c5e401c45", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4954,Microsoft.Compute/LowCostGet30Min;39952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172417Z:2093f0da-7b6f-4554-a440-819c5e401c45", - "Expires" : "-1", - "Content-Length" : "1378", - "x-ms-request-id" : "75087bb3-a0ec-4944-9a31-6a7c928fb9dc", - "Body" : "{\r\n \"name\": \"vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:22.5956331+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6bdc7669-c9eb-4147-9bf9-e58b1aa23f51\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "6aa89c6f-aa12-40d5-a81b-cad9f446f101", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa726b7f-cee8-43ff-8ebc-ab5513765199", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:17 GMT", - "x-ms-correlation-request-id" : "27f9da61-4411-4443-980a-98df22e66b37", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4953,Microsoft.Compute/LowCostGet30Min;39951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172418Z:27f9da61-4411-4443-980a-98df22e66b37", - "Expires" : "-1", - "Content-Length" : "1059", - "x-ms-request-id" : "77477029-2a01-4c2a-92fd-98cb39728011", - "Body" : "{\r\n \"name\": \"vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:22.5956331+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"7c217141-ae33-4dc1-84b9-db3b5bbef07f\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "aa726b7f-cee8-43ff-8ebc-ab5513765199", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6afdb623-91e2-4d62-a992-daa45e382453", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:18 GMT", - "x-ms-correlation-request-id" : "4fed4500-3f26-4770-a5de-d3a3f28b5394", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4952,Microsoft.Compute/LowCostGet30Min;39950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172418Z:4fed4500-3f26-4770-a5de-d3a3f28b5394", - "Expires" : "-1", - "Content-Length" : "1059", - "x-ms-request-id" : "e401dae4-c313-425a-b48d-608e776bb7f6", - "Body" : "{\r\n \"name\": \"vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:22.5956331+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"7b96fc0d-bfd0-427c-9d50-8be1d52aac2b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "6afdb623-91e2-4d62-a992-daa45e382453", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm130762f7a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e22103b-3ffb-4cd0-ba19-c4275b3c2788", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:24:18 GMT", - "x-ms-correlation-request-id" : "a01c009d-8ea0-47ea-9938-8c8c51006655", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172419Z:a01c009d-8ea0-47ea-9938-8c8c51006655", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65?api-version=2021-11-01", - "x-ms-request-id" : "31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65", - "x-ms-client-request-id" : "7e22103b-3ffb-4cd0-ba19-c4275b3c2788", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "958af924-f265-40f5-b850-51467b164316" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:29 GMT", - "x-ms-correlation-request-id" : "ea14d9f4-1257-4461-b2f5-6c3fdbc7b233", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14921,Microsoft.Compute/GetOperation30Min;29921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:ea14d9f4-1257-4461-b2f5-6c3fdbc7b233", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "3829861a-a4c9-470a-b623-af50bb6f2751", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:19.0104056+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65\"\r\n}", - "x-ms-client-request-id" : "958af924-f265-40f5-b850-51467b164316", - "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/31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6119325e-556d-4806-add9-b9a93d163c21" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11806", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:00 GMT", - "x-ms-correlation-request-id" : "1ae3a608-bd8e-45a5-aebb-c6271048d91c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14897,Microsoft.Compute/GetOperation30Min;29897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172500Z:1ae3a608-bd8e-45a5-aebb-c6271048d91c", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ebca0999-9b5a-4f92-9164-8cfb217e1589", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:19.0104056+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:49.9647253+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65\"\r\n}", - "x-ms-client-request-id" : "6119325e-556d-4806-add9-b9a93d163c21", - "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/31b5f89d-d4f4-42e3-ad27-0ab5b22e5c65?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fd00ee3-4b9a-4d96-9732-b84eea1a7ee7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:59 GMT", - "x-ms-correlation-request-id" : "256bb9cd-0251-4aae-b131-f12a4cbc9e8e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14896,Microsoft.Compute/GetOperation30Min;29896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172500Z:256bb9cd-0251-4aae-b131-f12a4cbc9e8e", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "9ae6964d-6781-4ccd-8506-4c2f2454121e", - "x-ms-client-request-id" : "8fd00ee3-4b9a-4d96-9732-b84eea1a7ee7" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a62f7b9f-964a-4804-959b-0f83bfe6c4ce", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:02 GMT", - "x-ms-correlation-request-id" : "f961715f-8b92-46b8-a5fa-e28a37f4da12", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172503Z:f961715f-8b92-46b8-a5fa-e28a37f4da12", - "Expires" : "-1", - "Content-Length" : "559", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6151544f-816d-4d18-9e73-d19c3f64a2be?api-version=2021-11-01", - "x-ms-request-id" : "6151544f-816d-4d18-9e73-d19c3f64a2be", - "Body" : "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"sourceUniqueId\": \"6bdc7669-c9eb-4147-9bf9-e58b1aa23f51\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "a62f7b9f-964a-4804-959b-0f83bfe6c4ce", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6151544f-816d-4d18-9e73-d19c3f64a2be?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6151544f-816d-4d18-9e73-d19c3f64a2be?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7cbcd5c-7414-4f8a-bc23-c79c8a1d36e0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:05 GMT", - "x-ms-correlation-request-id" : "8fe7367b-ee9e-42a5-a2ec-64e4aebd5e81", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172505Z:8fe7367b-ee9e-42a5-a2ec-64e4aebd5e81", - "Expires" : "-1", - "Content-Length" : "1346", - "x-ms-request-id" : "333935e7-3edf-4afc-bc7d-9cba301e212b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:02.9717576+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:03.5655126+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ss-os-239270f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"sourceUniqueId\": \"6bdc7669-c9eb-4147-9bf9-e58b1aa23f51\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-29T17:25:02.9717576+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"7d31a939-2ed1-4f8d-9bb4-e75366494fac\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"6151544f-816d-4d18-9e73-d19c3f64a2be\"\r\n}", - "x-ms-client-request-id" : "c7cbcd5c-7414-4f8a-bc23-c79c8a1d36e0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc3c075e-996c-45a9-a212-d5b07c2eeaf4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:05 GMT", - "x-ms-correlation-request-id" : "7541885c-87b8-4451-9eee-43eea2180646", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172505Z:7541885c-87b8-4451-9eee-43eea2180646", - "Expires" : "-1", - "Content-Length" : "1121", - "x-ms-request-id" : "3d1f84a9-914a-4aa2-b21f-9d1e5b11af00", - "Body" : "{\r\n \"name\": \"ss-os-239270f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_OsDisk_1_6bdc7669c9eb41479bf9e58b1aa23f51\",\r\n \"sourceUniqueId\": \"6bdc7669-c9eb-4147-9bf9-e58b1aa23f51\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-29T17:25:02.9717576+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"7d31a939-2ed1-4f8d-9bb4-e75366494fac\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "dc3c075e-996c-45a9-a212-d5b07c2eeaf4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "56bcfdd7-7a06-4377-bd04-9ee63808fc28", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:09 GMT", - "x-ms-correlation-request-id" : "0dc10ce6-10e8-4592-ba86-49bdedffa720", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172509Z:0dc10ce6-10e8-4592-ba86-49bdedffa720", - "Expires" : "-1", - "Content-Length" : "501", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fb3bc16e-fae2-48c9-9ab2-978c1d39d85e?api-version=2021-11-01", - "x-ms-request-id" : "fb3bc16e-fae2-48c9-9ab2-978c1d39d85e", - "Body" : "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"sourceUniqueId\": \"7c217141-ae33-4dc1-84b9-db3b5bbef07f\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "56bcfdd7-7a06-4377-bd04-9ee63808fc28", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fb3bc16e-fae2-48c9-9ab2-978c1d39d85e?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fb3bc16e-fae2-48c9-9ab2-978c1d39d85e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9315c96d-9b54-4e0f-aedf-da84d0a9ae61" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:11 GMT", - "x-ms-correlation-request-id" : "5afdad9a-5372-4bd4-8f0e-3c874794cef6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:5afdad9a-5372-4bd4-8f0e-3c874794cef6", - "Expires" : "-1", - "Content-Length" : "1295", - "x-ms-request-id" : "a9e5b218-86cf-4f36-a3ea-0c7273b00bec", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:09.5186798+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:10.253058+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ss-data-456692-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"sourceUniqueId\": \"7c217141-ae33-4dc1-84b9-db3b5bbef07f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-29T17:25:09.5186798+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"3c8043f9-f3a3-4fa3-844c-7b561aebdefc\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"fb3bc16e-fae2-48c9-9ab2-978c1d39d85e\"\r\n}", - "x-ms-client-request-id" : "9315c96d-9b54-4e0f-aedf-da84d0a9ae61", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d65df2d8-0196-40a9-b654-685f77c3f233" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:11 GMT", - "x-ms-correlation-request-id" : "5370b761-40b4-4cf6-97b2-966c30c01a60", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172512Z:5370b761-40b4-4cf6-97b2-966c30c01a60", - "Expires" : "-1", - "Content-Length" : "1071", - "x-ms-request-id" : "d0b422c9-846a-439d-8573-7aeae5273283", - "Body" : "{\r\n \"name\": \"ss-data-456692-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk2_7c217141ae334dc184b9db3b5bbef07f\",\r\n \"sourceUniqueId\": \"7c217141-ae33-4dc1-84b9-db3b5bbef07f\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-29T17:25:09.5186798+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"3c8043f9-f3a3-4fa3-844c-7b561aebdefc\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "d65df2d8-0196-40a9-b654-685f77c3f233", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad07343d-10e2-4740-bb9a-9eb898c18b5a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:15 GMT", - "x-ms-correlation-request-id" : "0950e1d9-a1d6-443f-ac11-7fb4d4b00a9d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172516Z:0950e1d9-a1d6-443f-ac11-7fb4d4b00a9d", - "Expires" : "-1", - "Content-Length" : "501", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e5d10e5e-f84c-4898-9eba-717f40ae753f?api-version=2021-11-01", - "x-ms-request-id" : "e5d10e5e-f84c-4898-9eba-717f40ae753f", - "Body" : "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"sourceUniqueId\": \"7b96fc0d-bfd0-427c-9d50-8be1d52aac2b\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "ad07343d-10e2-4740-bb9a-9eb898c18b5a", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e5d10e5e-f84c-4898-9eba-717f40ae753f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e5d10e5e-f84c-4898-9eba-717f40ae753f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "79c64102-ad10-43a8-bb34-19c5a66eaece" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:17 GMT", - "x-ms-correlation-request-id" : "9a3324bf-299d-47fa-bcda-39f79414be34", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172518Z:9a3324bf-299d-47fa-bcda-39f79414be34", - "Expires" : "-1", - "Content-Length" : "1296", - "x-ms-request-id" : "9b831cd1-0437-4401-bc4d-03073e3beb25", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:15.9718774+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:16.3312172+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ss-data-456692-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"sourceUniqueId\": \"7b96fc0d-bfd0-427c-9d50-8be1d52aac2b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-29T17:25:15.9718774+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"18372e65-66e5-4782-91d4-e127a6708005\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"e5d10e5e-f84c-4898-9eba-717f40ae753f\"\r\n}", - "x-ms-client-request-id" : "79c64102-ad10-43a8-bb34-19c5a66eaece", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc27de51-14dd-42a1-ab0f-c546149aecea" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:17 GMT", - "x-ms-correlation-request-id" : "4610af25-1f28-4973-980b-dccfa02cb313", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4965,Microsoft.Compute/LowCostGet30Min;39934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172518Z:4610af25-1f28-4973-980b-dccfa02cb313", - "Expires" : "-1", - "Content-Length" : "1071", - "x-ms-request-id" : "21adee1b-a434-4ab7-90ed-45f09b74b0dd", - "Body" : "{\r\n \"name\": \"ss-data-456692-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/vm130762f7a_disk3_7b96fc0dbfd0427c9d508be1d52aac2b\",\r\n \"sourceUniqueId\": \"7b96fc0d-bfd0-427c-9d50-8be1d52aac2b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-29T17:25:15.9718774+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"18372e65-66e5-4782-91d4-e127a6708005\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "cc27de51-14dd-42a1-ab0f-c546149aecea", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9f5f4f5-4584-4e7c-9ea6-c44cf4f7ae4d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "aec037e9-af56-4f66-b430-84b2fd3b2352", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172520Z:aec037e9-af56-4f66-b430-84b2fd3b2352", - "Expires" : "-1", - "Content-Length" : "576", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5821d842-16d8-4b42-be2b-599d5192c2eb?api-version=2021-11-01", - "x-ms-request-id" : "5821d842-16d8-4b42-be2b-599d5192c2eb", - "Body" : "{\r\n \"name\": \"ds-os-nw-45511\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f\",\r\n \"sourceUniqueId\": \"7d31a939-2ed1-4f8d-9bb4-e75366494fac\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "c9f5f4f5-4584-4e7c-9ea6-c44cf4f7ae4d", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5821d842-16d8-4b42-be2b-599d5192c2eb?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5821d842-16d8-4b42-be2b-599d5192c2eb?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "148252ff-93a7-4556-803a-5de295b8b384" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:22 GMT", - "x-ms-correlation-request-id" : "96aca940-685c-4e85-8629-ab6aa3e32b76", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172522Z:96aca940-685c-4e85-8629-ab6aa3e32b76", - "Expires" : "-1", - "Content-Length" : "1340", - "x-ms-request-id" : "045020e3-6b3e-4a26-9805-083e3bf00e31", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:20.3156322+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:20.7531272+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ds-os-nw-45511\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f\",\r\n \"sourceUniqueId\": \"7d31a939-2ed1-4f8d-9bb4-e75366494fac\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:20.3156322+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"83500262-34a7-4564-afb1-955d388ab1d3\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"5821d842-16d8-4b42-be2b-599d5192c2eb\"\r\n}", - "x-ms-client-request-id" : "148252ff-93a7-4556-803a-5de295b8b384", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aec5030f-3ca9-4931-873a-ba0051010146" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:22 GMT", - "x-ms-correlation-request-id" : "018c1384-5ec7-4640-a207-636d8023f703", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4960,Microsoft.Compute/LowCostGet30Min;39929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172523Z:018c1384-5ec7-4640-a207-636d8023f703", - "Expires" : "-1", - "Content-Length" : "1115", - "x-ms-request-id" : "f14f5b0c-d97d-40fd-a285-4331e11ed5f9", - "Body" : "{\r\n \"name\": \"ds-os-nw-45511\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f\",\r\n \"sourceUniqueId\": \"7d31a939-2ed1-4f8d-9bb4-e75366494fac\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:20.3156322+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"83500262-34a7-4564-afb1-955d388ab1d3\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "aec5030f-3ca9-4931-873a-ba0051010146", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fa08365-c1ca-42fb-b11c-0f4757745bc5", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:26 GMT", - "x-ms-correlation-request-id" : "c2cb1f4b-e9a8-496b-aa8a-b689610be0f5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172527Z:c2cb1f4b-e9a8-496b-aa8a-b689610be0f5", - "Expires" : "-1", - "Content-Length" : "457", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3da2364c-43b0-4e75-a2e6-110b32c8bbea?api-version=2021-11-01", - "x-ms-request-id" : "3da2364c-43b0-4e75-a2e6-110b32c8bbea", - "Body" : "{\r\n \"name\": \"b4840d948f3f482-0\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0\",\r\n \"sourceUniqueId\": \"3c8043f9-f3a3-4fa3-844c-7b561aebdefc\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "6fa08365-c1ca-42fb-b11c-0f4757745bc5", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3da2364c-43b0-4e75-a2e6-110b32c8bbea?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3da2364c-43b0-4e75-a2e6-110b32c8bbea?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2b67c53-dd76-4ab2-acd3-2accc84801df" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:29 GMT", - "x-ms-correlation-request-id" : "57462427-b146-42fe-a888-99c1720f2664", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172529Z:57462427-b146-42fe-a888-99c1720f2664", - "Expires" : "-1", - "Content-Length" : "1294", - "x-ms-request-id" : "42dc2a2d-1d85-4ce5-a6a8-968c31d49273", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:27.3781689+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:27.7062973+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"b4840d948f3f482-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0\",\r\n \"sourceUniqueId\": \"3c8043f9-f3a3-4fa3-844c-7b561aebdefc\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:27.3781689+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f4b9dbf6-6f45-4659-ad30-eff8f21f153d\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"3da2364c-43b0-4e75-a2e6-110b32c8bbea\"\r\n}", - "x-ms-client-request-id" : "b2b67c53-dd76-4ab2-acd3-2accc84801df", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ffbdcdd7-c586-4c79-aae4-8cd5a84b7f1e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:29 GMT", - "x-ms-correlation-request-id" : "785f9c7a-6bec-4016-8d80-9d378ae2772e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4960,Microsoft.Compute/LowCostGet30Min;39920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172530Z:785f9c7a-6bec-4016-8d80-9d378ae2772e", - "Expires" : "-1", - "Content-Length" : "1069", - "x-ms-request-id" : "5920227e-7d3e-4e41-8b81-35cd759d8cdb", - "Body" : "{\r\n \"name\": \"b4840d948f3f482-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0\",\r\n \"sourceUniqueId\": \"3c8043f9-f3a3-4fa3-844c-7b561aebdefc\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:27.3781689+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f4b9dbf6-6f45-4659-ad30-eff8f21f153d\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "ffbdcdd7-c586-4c79-aae4-8cd5a84b7f1e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5428d4d-6531-42af-8092-eb52be3556bf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:31 GMT", - "x-ms-correlation-request-id" : "c2f0dd5c-2deb-4215-b1db-33ff907b5c40", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;992,Microsoft.Compute/CreateUpdateDisks30Min;7985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172532Z:c2f0dd5c-2deb-4215-b1db-33ff907b5c40", - "Expires" : "-1", - "Content-Length" : "457", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4415a75d-b4da-4128-b854-a627a3e16d67?api-version=2021-11-01", - "x-ms-request-id" : "4415a75d-b4da-4128-b854-a627a3e16d67", - "Body" : "{\r\n \"name\": \"b4840d948f3f482-1\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1\",\r\n \"sourceUniqueId\": \"18372e65-66e5-4782-91d4-e127a6708005\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "c5428d4d-6531-42af-8092-eb52be3556bf", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4415a75d-b4da-4128-b854-a627a3e16d67?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4415a75d-b4da-4128-b854-a627a3e16d67?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "653d416e-dc3d-4be3-a061-464b01c4979c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:34 GMT", - "x-ms-correlation-request-id" : "7c99b075-73e3-4a9f-9bf4-82f7603988bc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49975,Microsoft.Compute/GetOperation30Min;399961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172534Z:7c99b075-73e3-4a9f-9bf4-82f7603988bc", - "Expires" : "-1", - "Content-Length" : "1294", - "x-ms-request-id" : "e3bf869b-689b-4e34-9b4f-ab60fdd7ab91", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:32.0031852+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:32.3782797+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"b4840d948f3f482-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1\",\r\n \"sourceUniqueId\": \"18372e65-66e5-4782-91d4-e127a6708005\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:32.0031852+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"96026707-82c6-4362-a638-47b6e2741002\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"4415a75d-b4da-4128-b854-a627a3e16d67\"\r\n}", - "x-ms-client-request-id" : "653d416e-dc3d-4be3-a061-464b01c4979c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "07788e0e-ed17-43b6-9eca-57709c822ac5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:34 GMT", - "x-ms-correlation-request-id" : "d132fa50-10cf-43a4-8af1-a0b9dea40249", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4954,Microsoft.Compute/LowCostGet30Min;39914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172534Z:d132fa50-10cf-43a4-8af1-a0b9dea40249", - "Expires" : "-1", - "Content-Length" : "1069", - "x-ms-request-id" : "5df534ad-b485-4635-a285-c12141705082", - "Body" : "{\r\n \"name\": \"b4840d948f3f482-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1\",\r\n \"sourceUniqueId\": \"18372e65-66e5-4782-91d4-e127a6708005\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:32.0031852+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"96026707-82c6-4362-a638-47b6e2741002\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "07788e0e-ed17-43b6-9eca-57709c822ac5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f7a1a38-a86e-46eb-90fb-81f78305dc07", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:25:37 GMT", - "x-ms-correlation-request-id" : "6b57e282-21c6-4e62-b5e0-5ad7255dcdf4", - "x-ms-arm-service-request-id" : "fd97782c-3962-4e0c-95c9-83e0a674ed10", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172537Z:6b57e282-21c6-4e62-b5e0-5ad7255dcdf4", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6f7d3b89-5d18-4be6-8400-7ed01aa90c2c?api-version=2023-02-01", - "x-ms-request-id" : "6f7d3b89-5d18-4be6-8400-7ed01aa90c2c", - "Body" : "{\r\n \"name\": \"vnet03201e0e71\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71\",\r\n \"etag\": \"W/\\\"5df94673-976b-4873-b755-3fdf0b1a1698\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7714ba84-9c94-47f6-ad38-9622b4b1a772\",\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/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5df94673-976b-4873-b755-3fdf0b1a1698\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "3f7a1a38-a86e-46eb-90fb-81f78305dc07", - "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/6f7d3b89-5d18-4be6-8400-7ed01aa90c2c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e93f50f-85c9-4108-81e3-ee9e9e77ef66" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:39 GMT", - "x-ms-correlation-request-id" : "9f433368-415c-4722-942f-75d52426113e", - "x-ms-arm-service-request-id" : "ac97b7af-3a3a-4d68-aa04-e40b9e2499c7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172540Z:9f433368-415c-4722-942f-75d52426113e", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "4106c50d-942d-45ea-a739-309d651c1282", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "0e93f50f-85c9-4108-81e3-ee9e9e77ef66", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed750999-d2e3-43ec-bf19-b807464cf506" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:40 GMT", - "x-ms-correlation-request-id" : "fbf6bf62-d360-4b95-9f7c-25ac15701b45", - "x-ms-arm-service-request-id" : "17b360a5-263d-41c0-b623-2a1bfb0bacc4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"702ba3c4-b042-4086-acd9-6a386ac52d1d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172541Z:fbf6bf62-d360-4b95-9f7c-25ac15701b45", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "436f4680-c53a-45cd-8d02-4094eac65c0b", - "Body" : "{\r\n \"name\": \"vnet03201e0e71\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71\",\r\n \"etag\": \"W/\\\"702ba3c4-b042-4086-acd9-6a386ac52d1d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7714ba84-9c94-47f6-ad38-9622b4b1a772\",\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/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71/subnets/subnet1\",\r\n \"etag\": \"W/\\\"702ba3c4-b042-4086-acd9-6a386ac52d1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "ed750999-d2e3-43ec-bf19-b807464cf506", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic01853512faf?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d18a263a-b2bd-46c3-9b03-4526319a33bc", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:25:44 GMT", - "x-ms-correlation-request-id" : "e41c0173-29d2-4e96-8032-57c6ae176031", - "x-ms-arm-service-request-id" : "cdc843d0-9d3d-4503-9801-d9860251678f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172544Z:e41c0173-29d2-4e96-8032-57c6ae176031", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f9295923-d80b-4157-ae06-b00a9fe7f9d7?api-version=2023-02-01", - "x-ms-request-id" : "f9295923-d80b-4157-ae06-b00a9fe7f9d7", - "Body" : "{\r\n \"name\": \"nic01853512faf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic01853512faf\",\r\n \"etag\": \"W/\\\"2b469501-2b9e-4010-9464-4294b0f7438a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0848dc78-e9df-471c-8c09-af9e7ca61cc1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic01853512faf/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2b469501-2b9e-4010-9464-4294b0f7438a\\\"\",\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/rgcomv5895421/providers/Microsoft.Network/virtualNetworks/vnet03201e0e71/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\": \"qs3bi32utt1epljysyrljmnhoc.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "d18a263a-b2bd-46c3-9b03-4526319a33bc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce878d4b-15e3-4665-a87c-95535c4edec9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:25:48 GMT", - "x-ms-correlation-request-id" : "fb57be83-1067-4f42-831d-a8fbf90a1dd3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1168", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172548Z:fb57be83-1067-4f42-831d-a8fbf90a1dd3", - "Expires" : "-1", - "Content-Length" : "2097", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/114ca6e7-a912-477b-8387-232771931529?api-version=2021-11-01", - "x-ms-request-id" : "114ca6e7-a912-477b-8387-232771931529", - "Body" : "{\r\n \"name\": \"vm281262080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"403de5b5-39b4-4aff-b05f-36450a2884a1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-nw-45511\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"b4840d948f3f482-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"b4840d948f3f482-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic01853512faf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "ce878d4b-15e3-4665-a87c-95535c4edec9", - "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/114ca6e7-a912-477b-8387-232771931529?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "476d11da-d446-4672-b80a-1c22192d6b0f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:57 GMT", - "x-ms-correlation-request-id" : "a3878e4c-63c0-490e-a658-90ecb528baa3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14858,Microsoft.Compute/GetOperation30Min;29840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172558Z:a3878e4c-63c0-490e-a658-90ecb528baa3", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "a78c8df2-b622-419f-b1f6-4a87fb67a9e6", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:47.3266504+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"114ca6e7-a912-477b-8387-232771931529\"\r\n}", - "x-ms-client-request-id" : "476d11da-d446-4672-b80a-1c22192d6b0f", - "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/114ca6e7-a912-477b-8387-232771931529?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "479b3f28-7be3-48fe-8ecb-2b0012cb5025" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11735", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:03 GMT", - "x-ms-correlation-request-id" : "87868a8f-4917-4f90-a062-c3b01d6c0ff6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14877,Microsoft.Compute/GetOperation30Min;29837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172604Z:87868a8f-4917-4f90-a062-c3b01d6c0ff6", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "dcbeee5f-cce0-4068-8853-1702b53d2d9a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:47.3266504+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:03.0148748+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"114ca6e7-a912-477b-8387-232771931529\"\r\n}", - "x-ms-client-request-id" : "479b3f28-7be3-48fe-8ecb-2b0012cb5025", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "50c74b9f-c9e8-4087-839a-2ca8ce7f2a1a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11780", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:03 GMT", - "x-ms-correlation-request-id" : "64641c12-4395-40e2-a640-552e09f2b701", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3934,Microsoft.Compute/LowCostGet30Min;31915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172604Z:64641c12-4395-40e2-a640-552e09f2b701", - "Expires" : "-1", - "Content-Length" : "2098", - "x-ms-request-id" : "b5b56234-dd82-42c7-806f-47f824a8e983", - "Body" : "{\r\n \"name\": \"vm281262080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"403de5b5-39b4-4aff-b05f-36450a2884a1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-nw-45511\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"b4840d948f3f482-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"b4840d948f3f482-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Network/networkInterfaces/nic01853512faf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "50c74b9f-c9e8-4087-839a-2ca8ce7f2a1a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7999a29b-2c13-4ecb-87de-0b91ae6acb43", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:04 GMT", - "x-ms-correlation-request-id" : "3c1131f6-88b9-42e2-8738-1a5afe4ad7de", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;994,Microsoft.Compute/DeleteDisks30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172605Z:3c1131f6-88b9-42e2-8738-1a5afe4ad7de", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fdbb2a7-6039-4941-bac8-def35998bda6?api-version=2021-11-01", - "x-ms-request-id" : "5fdbb2a7-6039-4941-bac8-def35998bda6", - "x-ms-client-request-id" : "7999a29b-2c13-4ecb-87de-0b91ae6acb43", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fdbb2a7-6039-4941-bac8-def35998bda6?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/5fdbb2a7-6039-4941-bac8-def35998bda6?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8170ce2-a04f-4f11-9e5c-10d5265714b7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11760", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:35 GMT", - "x-ms-correlation-request-id" : "0ec1ac42-8cb3-47ca-bf57-acb9a3899926", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49957,Microsoft.Compute/GetOperation30Min;399943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172635Z:0ec1ac42-8cb3-47ca-bf57-acb9a3899926", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "0630b874-ef7b-42b2-a13e-5ec89711166d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:05.0038408+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:05.1601352+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5fdbb2a7-6039-4941-bac8-def35998bda6\"\r\n}", - "x-ms-client-request-id" : "a8170ce2-a04f-4f11-9e5c-10d5265714b7", - "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/DiskOperations/5fdbb2a7-6039-4941-bac8-def35998bda6?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eaefded3-5cf6-44a9-955b-edfff2fed971" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:36 GMT", - "x-ms-correlation-request-id" : "3018350e-b331-47f3-9be1-2fa0d66fd00e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49956,Microsoft.Compute/GetOperation30Min;399942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172636Z:3018350e-b331-47f3-9be1-2fa0d66fd00e", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "4bba6fe4-324f-45e3-8fcd-30030548af95", - "x-ms-client-request-id" : "eaefded3-5cf6-44a9-955b-edfff2fed971" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "37b44e73-f869-491b-a3de-d8c326c9286c", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:36 GMT", - "x-ms-correlation-request-id" : "082c8f52-f3f6-48f0-9b65-f262eeb826a0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;993,Microsoft.Compute/DeleteDisks30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172637Z:082c8f52-f3f6-48f0-9b65-f262eeb826a0", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6b2d0f02-c980-456b-a629-45c7ee320708?api-version=2021-11-01", - "x-ms-request-id" : "6b2d0f02-c980-456b-a629-45c7ee320708", - "x-ms-client-request-id" : "37b44e73-f869-491b-a3de-d8c326c9286c", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6b2d0f02-c980-456b-a629-45c7ee320708?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6b2d0f02-c980-456b-a629-45c7ee320708?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "335271ec-fb84-4b5f-83ec-d95267baac42" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11767", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:07 GMT", - "x-ms-correlation-request-id" : "5805bb84-e21e-4fad-9fe7-b29900acfe5d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49956,Microsoft.Compute/GetOperation30Min;399939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172707Z:5805bb84-e21e-4fad-9fe7-b29900acfe5d", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "f9f56f54-93d4-4eed-87f7-d134b5e53d83", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:36.9571969+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:37.1134491+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6b2d0f02-c980-456b-a629-45c7ee320708\"\r\n}", - "x-ms-client-request-id" : "335271ec-fb84-4b5f-83ec-d95267baac42", - "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/DiskOperations/6b2d0f02-c980-456b-a629-45c7ee320708?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ecaaac1-539a-416f-9570-274c16dfc333" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:07 GMT", - "x-ms-correlation-request-id" : "c8936d9b-80ac-4b23-91bd-cf0773c004f8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49955,Microsoft.Compute/GetOperation30Min;399938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172707Z:c8936d9b-80ac-4b23-91bd-cf0773c004f8", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "4fa0207a-44d7-46db-82cf-7b9813649b8c", - "x-ms-client-request-id" : "2ecaaac1-539a-416f-9570-274c16dfc333" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d04ee3a1-fc5e-4549-b49c-ba42478a30c9", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:08 GMT", - "x-ms-correlation-request-id" : "e3329400-fc6e-456b-9361-10febbbb1a8b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;986,Microsoft.Compute/DeleteDisks30Min;7985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172708Z:e3329400-fc6e-456b-9361-10febbbb1a8b", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d1faafa0-74cd-4e22-9892-c325de3559bb?api-version=2021-11-01", - "x-ms-request-id" : "d1faafa0-74cd-4e22-9892-c325de3559bb", - "x-ms-client-request-id" : "d04ee3a1-fc5e-4549-b49c-ba42478a30c9", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d1faafa0-74cd-4e22-9892-c325de3559bb?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d1faafa0-74cd-4e22-9892-c325de3559bb?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3376f07-dc0d-457b-8836-29efd6131a3c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:38 GMT", - "x-ms-correlation-request-id" : "1850f0d6-2dda-4da4-9bcf-5b2d91788d63", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49946,Microsoft.Compute/GetOperation30Min;399929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172738Z:1850f0d6-2dda-4da4-9bcf-5b2d91788d63", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "9b7af79e-720b-4fbb-8d44-b8046f45587b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:08.4261345+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:08.5667422+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d1faafa0-74cd-4e22-9892-c325de3559bb\"\r\n}", - "x-ms-client-request-id" : "a3376f07-dc0d-457b-8836-29efd6131a3c", - "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/DiskOperations/d1faafa0-74cd-4e22-9892-c325de3559bb?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "11ab7df9-ecea-4455-b64a-309f6429d1ec" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:38 GMT", - "x-ms-correlation-request-id" : "4d75709f-1c1b-4901-a5d1-32adeedf9f1d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49945,Microsoft.Compute/GetOperation30Min;399928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172739Z:4d75709f-1c1b-4901-a5d1-32adeedf9f1d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "3a3661aa-b103-44d6-a920-0fb93cd0655d", - "x-ms-client-request-id" : "11ab7df9-ecea-4455-b64a-309f6429d1ec" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae4edf05-caf3-430d-b636-3e9ec519f944", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:39 GMT", - "x-ms-correlation-request-id" : "03b35339-74b9-48c5-9c6c-5d46f71c9a43", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;230,Microsoft.Compute/DeleteVM30Min;1180", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172739Z:03b35339-74b9-48c5-9c6c-5d46f71c9a43", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26802caf-bff3-45da-a1e0-67f4b8d2be3d?api-version=2021-11-01", - "x-ms-request-id" : "26802caf-bff3-45da-a1e0-67f4b8d2be3d", - "x-ms-client-request-id" : "ae4edf05-caf3-430d-b636-3e9ec519f944", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26802caf-bff3-45da-a1e0-67f4b8d2be3d?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26802caf-bff3-45da-a1e0-67f4b8d2be3d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "243b4944-68d2-4706-8b06-0979901a9869" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11715", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:48 GMT", - "x-ms-correlation-request-id" : "07fd66b1-77f7-492f-b135-a185713b03e9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14885,Microsoft.Compute/GetOperation30Min;29783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172749Z:07fd66b1-77f7-492f-b135-a185713b03e9", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "cf7dd975-46cb-4287-ae42-bc7b27a403d8", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:39.3313649+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26802caf-bff3-45da-a1e0-67f4b8d2be3d\"\r\n}", - "x-ms-client-request-id" : "243b4944-68d2-4706-8b06-0979901a9869", - "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/26802caf-bff3-45da-a1e0-67f4b8d2be3d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "99a547e8-ea72-4269-a42f-2d6556f2d367" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:26 GMT", - "x-ms-correlation-request-id" : "d875f4f8-f77c-47f5-87a0-5b07cf7bfc08", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14892,Microsoft.Compute/GetOperation30Min;29763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172826Z:d875f4f8-f77c-47f5-87a0-5b07cf7bfc08", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "f5f2ecc0-d665-49e1-abe7-dfb482c9407e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:39.3313649+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:13.2077392+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"26802caf-bff3-45da-a1e0-67f4b8d2be3d\"\r\n}", - "x-ms-client-request-id" : "99a547e8-ea72-4269-a42f-2d6556f2d367", - "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/26802caf-bff3-45da-a1e0-67f4b8d2be3d?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0a4b458-71e0-453f-a551-fa067a863c37" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11755", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:25 GMT", - "x-ms-correlation-request-id" : "e1e1a30e-6066-4ef4-8ea1-90cc9c231587", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14891,Microsoft.Compute/GetOperation30Min;29762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172826Z:e1e1a30e-6066-4ef4-8ea1-90cc9c231587", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "28b31399-b17e-48d7-b29e-4bfe253ecf6a", - "x-ms-client-request-id" : "a0a4b458-71e0-453f-a551-fa067a863c37" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ce21acd-be56-447f-9d0a-fbdd16b58f54", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:26 GMT", - "x-ms-correlation-request-id" : "da4bbfe7-d79a-483b-8198-fddb1d44db4f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4930,Microsoft.Compute/LowCostGet30Min;39851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172826Z:da4bbfe7-d79a-483b-8198-fddb1d44db4f", - "Expires" : "-1", - "Content-Length" : "1269", - "x-ms-request-id" : "8d143308-935b-45b5-94cf-408cc791f67a", - "Body" : "{\r\n \"name\": \"ds-os-nw-45511\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-os-239270f\",\r\n \"sourceUniqueId\": \"7d31a939-2ed1-4f8d-9bb4-e75366494fac\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:20.3156322+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"83500262-34a7-4564-afb1-955d388ab1d3\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "2ce21acd-be56-447f-9d0a-fbdd16b58f54", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/ds-os-nw-45511/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "449920ad-36a7-4d42-a9ee-6b4dfbc137f7", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:26 GMT", - "x-ms-correlation-request-id" : "1b3b6600-b97f-4513-a94a-d5237b063784", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172827Z:1b3b6600-b97f-4513-a94a-d5237b063784", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/98c65555-a919-474a-856e-f54c8bb9099a?api-version=2021-11-01", - "x-ms-request-id" : "98c65555-a919-474a-856e-f54c8bb9099a", - "x-ms-client-request-id" : "449920ad-36a7-4d42-a9ee-6b4dfbc137f7", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/98c65555-a919-474a-856e-f54c8bb9099a?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/98c65555-a919-474a-856e-f54c8bb9099a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3b90ab0-51b1-4a2a-8ed8-92e54ab7ce49" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:56 GMT", - "x-ms-correlation-request-id" : "fe65a77e-922e-4a3e-a615-43a238869378", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49965,Microsoft.Compute/GetOperation30Min;399914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172857Z:fe65a77e-922e-4a3e-a615-43a238869378", - "Expires" : "-1", - "Content-Length" : "420", - "x-ms-request-id" : "796e6a61-f78e-4833-8ad6-3ac09bbf0680", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:26.957864+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:27.0984658+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"98c65555-a919-474a-856e-f54c8bb9099a\"\r\n}", - "x-ms-client-request-id" : "d3b90ab0-51b1-4a2a-8ed8-92e54ab7ce49", - "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/DiskOperations/98c65555-a919-474a-856e-f54c8bb9099a?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ade429a-59ec-4d7a-af27-7cdade7ba75a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:57 GMT", - "x-ms-correlation-request-id" : "bd7a037c-97e0-49a2-ae4b-a0bf1a6da48d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49964,Microsoft.Compute/GetOperation30Min;399913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172857Z:bd7a037c-97e0-49a2-ae4b-a0bf1a6da48d", - "Expires" : "-1", - "Content-Length" : "196", - "x-ms-request-id" : "4c2d3466-f820-4d75-9519-197ac6cfd11b", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "2ade429a-59ec-4d7a-af27-7cdade7ba75a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "73c34cb3-16a3-4939-965c-df47ead5b5f7", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:57 GMT", - "x-ms-correlation-request-id" : "e1abdfeb-db4d-4428-b6a7-61d18583444c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4946,Microsoft.Compute/LowCostGet30Min;39848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172858Z:e1abdfeb-db4d-4428-b6a7-61d18583444c", - "Expires" : "-1", - "Content-Length" : "1223", - "x-ms-request-id" : "a9d9c245-20e0-46cd-b333-b4aeb2b9a2e7", - "Body" : "{\r\n \"name\": \"b4840d948f3f482-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-0\",\r\n \"sourceUniqueId\": \"3c8043f9-f3a3-4fa3-844c-7b561aebdefc\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:27.3781689+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"f4b9dbf6-6f45-4659-ad30-eff8f21f153d\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "73c34cb3-16a3-4939-965c-df47ead5b5f7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-0/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd7e9ec8-ac03-4a99-b5d9-ed3990204081", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:58 GMT", - "x-ms-correlation-request-id" : "d7da93df-3007-4228-a0a5-0e433261619c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172859Z:d7da93df-3007-4228-a0a5-0e433261619c", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ef539cc5-aa98-4df2-bb5a-ffdc7dc7123c?api-version=2021-11-01", - "x-ms-request-id" : "ef539cc5-aa98-4df2-bb5a-ffdc7dc7123c", - "x-ms-client-request-id" : "fd7e9ec8-ac03-4a99-b5d9-ed3990204081", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ef539cc5-aa98-4df2-bb5a-ffdc7dc7123c?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ef539cc5-aa98-4df2-bb5a-ffdc7dc7123c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f653630-11b0-4c32-9ccc-493b3f4ada07" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11761", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:29 GMT", - "x-ms-correlation-request-id" : "1cc0019c-5371-4809-ac83-4153fa9a5fe7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49967,Microsoft.Compute/GetOperation30Min;399911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172929Z:1cc0019c-5371-4809-ac83-4153fa9a5fe7", - "Expires" : "-1", - "Content-Length" : "421", - "x-ms-request-id" : "2e4a9f03-14ee-458a-97f1-bf521036f3c1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:58.8955523+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:59.0830455+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"ef539cc5-aa98-4df2-bb5a-ffdc7dc7123c\"\r\n}", - "x-ms-client-request-id" : "6f653630-11b0-4c32-9ccc-493b3f4ada07", - "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/DiskOperations/ef539cc5-aa98-4df2-bb5a-ffdc7dc7123c?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6589608e-3a7b-4b8c-a9e9-444c33afcd02" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11708", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:28 GMT", - "x-ms-correlation-request-id" : "381848a0-dd6a-4f2d-9335-19054f02afc9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49966,Microsoft.Compute/GetOperation30Min;399910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172929Z:381848a0-dd6a-4f2d-9335-19054f02afc9", - "Expires" : "-1", - "Content-Length" : "196", - "x-ms-request-id" : "f271cc82-c855-4b23-aae7-52f60f1b6964", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "6589608e-3a7b-4b8c-a9e9-444c33afcd02", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef55600a-18c2-41e4-9660-6fc3ef252cfd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11753", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:29 GMT", - "x-ms-correlation-request-id" : "1afc1f1f-93bf-45f5-81c6-92ea1d775589", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172929Z:1afc1f1f-93bf-45f5-81c6-92ea1d775589", - "Expires" : "-1", - "Content-Length" : "1223", - "x-ms-request-id" : "b4cf25d9-5471-4fdb-943a-3a0c048e714c", - "Body" : "{\r\n \"name\": \"b4840d948f3f482-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/virtualMachines/vm281262080\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/snapshots/ss-data-456692-1\",\r\n \"sourceUniqueId\": \"18372e65-66e5-4782-91d4-e127a6708005\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:32.0031852+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"96026707-82c6-4362-a638-47b6e2741002\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "ef55600a-18c2-41e4-9660-6fc3ef252cfd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv5895421/providers/Microsoft.Compute/disks/b4840d948f3f482-1/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "df4b21ac-efd7-46da-9e36-8b1f39d03199", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:29:30 GMT", - "x-ms-correlation-request-id" : "d71e4615-f6ac-468d-8e46-2d5a249d4d2f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;994,Microsoft.Compute/HighCostDiskHydrate30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172930Z:d71e4615-f6ac-468d-8e46-2d5a249d4d2f", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/cb6f5a03-f091-49dc-962f-90bd0f8ab027?api-version=2021-11-01", - "x-ms-request-id" : "cb6f5a03-f091-49dc-962f-90bd0f8ab027", - "x-ms-client-request-id" : "df4b21ac-efd7-46da-9e36-8b1f39d03199", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/cb6f5a03-f091-49dc-962f-90bd0f8ab027?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/cb6f5a03-f091-49dc-962f-90bd0f8ab027?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d401d67-a5e8-45a1-8819-dfdd15c676c1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11734", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:59 GMT", - "x-ms-correlation-request-id" : "6e21a859-6821-444f-9477-17341c0c6e8c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49966,Microsoft.Compute/GetOperation30Min;399897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173000Z:6e21a859-6821-444f-9477-17341c0c6e8c", - "Expires" : "-1", - "Content-Length" : "425", - "x-ms-request-id" : "ffca0da7-0c3e-4797-a6c8-8f7977ebce02", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:30.0988391+00:00\",\r\n \"endTime\": \"2021-01-29T17:29:30.2551182+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"cb6f5a03-f091-49dc-962f-90bd0f8ab027\"\r\n}", - "x-ms-client-request-id" : "3d401d67-a5e8-45a1-8819-dfdd15c676c1", - "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/DiskOperations/cb6f5a03-f091-49dc-962f-90bd0f8ab027?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "83e6e908-c30f-4c54-8617-c0e098d05b6b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:00 GMT", - "x-ms-correlation-request-id" : "069a27c6-4142-4bcb-807f-7efde60a01a2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49965,Microsoft.Compute/GetOperation30Min;399896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173000Z:069a27c6-4142-4bcb-807f-7efde60a01a2", - "Expires" : "-1", - "Content-Length" : "200", - "x-ms-request-id" : "b67d65bd-5a73-441c-b98e-14a638d50fa1", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "83e6e908-c30f-4c54-8617-c0e098d05b6b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv5895421?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "52db7fed-ed26-4096-845e-d773c540206c", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:30:04 GMT", - "x-ms-correlation-request-id" : "20a301c6-65f9-404d-9235-ab9cc168b240", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173005Z:20a301c6-65f9-404d-9235-ab9cc168b240", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "20a301c6-65f9-404d-9235-ab9cc168b240", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY1ODk1NDIxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm130762f7a", "vm281262080", "ss-os-239270f", "ss-data-456692", "ds-os-nw-45511", "b4840d948f3f482", "rgcomv5895421", "pip5987349b", "nic60161540a1f", "vnet68416b8f37", "pip8251740a", "nic01853512faf", "vnet03201e0e71" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromVhd.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromVhd.json deleted file mode 100644 index 58ff12821375..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineUsingSpecializedDiskFromVhd.json +++ /dev/null @@ -1,1516 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfaf7498-d8ce-400d-ad47-5fca0dbe529c", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:05 GMT", - "x-ms-correlation-request-id" : "4af18aee-429a-4c29-839b-a99a24ef6cde", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:4af18aee-429a-4c29-839b-a99a24ef6cde", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "4af18aee-429a-4c29-839b-a99a24ef6cde", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0\",\"name\":\"rgcomv64858f0\",\"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/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ea48557-0507-4fdf-9a68-543002e15d69", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "2080ef1d-5a3c-41dc-ab10-a910a359bf38", - "x-ms-arm-service-request-id" : "df5f38ae-8b37-42a0-add4-6816a715b13d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172211Z:2080ef1d-5a3c-41dc-ab10-a910a359bf38", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/04396ffb-4fb4-4f8b-a7da-2e32bb21c7e2?api-version=2023-02-01", - "x-ms-request-id" : "04396ffb-4fb4-4f8b-a7da-2e32bb21c7e2", - "Body" : "{\r\n \"name\": \"vnet03092f1372\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372\",\r\n \"etag\": \"W/\\\"3de9ae75-7eee-4d2a-8a04-a38ec5f2d001\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"897acd42-8b9b-40e2-9cca-3895cd2a4270\",\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/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3de9ae75-7eee-4d2a-8a04-a38ec5f2d001\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "8ea48557-0507-4fdf-9a68-543002e15d69", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/publicIPAddresses/pip87401f86?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f13e9175-cddf-4fb1-a07c-4679aa097b93", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "af063b6d-2d38-4cba-935a-7ed96529163c", - "x-ms-arm-service-request-id" : "637c9417-e446-45a0-9e9c-3ab0a8bd7a20", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172212Z:af063b6d-2d38-4cba-935a-7ed96529163c", - "Expires" : "-1", - "Content-Length" : "774", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4cfc9ebf-7918-474a-bf0b-45b14e8fd6fb?api-version=2023-02-01", - "x-ms-request-id" : "4cfc9ebf-7918-474a-bf0b-45b14e8fd6fb", - "Body" : "{\r\n \"name\": \"pip87401f86\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/publicIPAddresses/pip87401f86\",\r\n \"etag\": \"W/\\\"acfd1496-3150-4d1c-8c76-cf8ed308df59\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"431f46fb-94ce-4f2c-91f9-a228e2872708\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip0518849e\",\r\n \"fqdn\": \"pip0518849e.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "f13e9175-cddf-4fb1-a07c-4679aa097b93", - "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/4cfc9ebf-7918-474a-bf0b-45b14e8fd6fb?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "767a282c-e5f8-43e2-808a-413a7edcb9e0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "b0bcea73-a913-4801-b6dc-14ec83ef051b", - "x-ms-arm-service-request-id" : "277b91d2-6a45-4b36-9323-d1cd6d997730", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:b0bcea73-a913-4801-b6dc-14ec83ef051b", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "b4c8ed80-ca85-40e7-a12a-8b8631333e4c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "767a282c-e5f8-43e2-808a-413a7edcb9e0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/publicIPAddresses/pip87401f86?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "17d4fcb4-84a6-4fd5-980b-a09ac9e20b99" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "8ca9f0ee-e748-4859-a376-ea5c37cee6af", - "x-ms-arm-service-request-id" : "a4cdfab2-468b-4f7d-9fb2-9575e9a73f67", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"933908a1-6980-40dc-9b18-f088c501f0a2\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:8ca9f0ee-e748-4859-a376-ea5c37cee6af", - "Expires" : "-1", - "Content-Length" : "775", - "x-ms-request-id" : "c05197f3-eb6d-4925-9375-ee2f629e1249", - "Body" : "{\r\n \"name\": \"pip87401f86\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/publicIPAddresses/pip87401f86\",\r\n \"etag\": \"W/\\\"933908a1-6980-40dc-9b18-f088c501f0a2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"431f46fb-94ce-4f2c-91f9-a228e2872708\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip0518849e\",\r\n \"fqdn\": \"pip0518849e.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "17d4fcb4-84a6-4fd5-980b-a09ac9e20b99", - "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/04396ffb-4fb4-4f8b-a7da-2e32bb21c7e2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "59461eea-52b0-46bb-8db7-89b26d464a5b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "9f2751d6-37e8-4194-9fc6-a33747f0a7a0", - "x-ms-arm-service-request-id" : "206ae19d-7df3-45b0-ab80-3bb59f24085d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:9f2751d6-37e8-4194-9fc6-a33747f0a7a0", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "0073fae3-ae67-4f9b-9192-1059eacdb70f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "59461eea-52b0-46bb-8db7-89b26d464a5b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2b91823-76cc-4e15-939b-1bd8d15f6410" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "219efd17-4567-4e52-95d0-34e942b44070", - "x-ms-arm-service-request-id" : "4f5e803a-7511-4650-9dd1-68118ded252a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"9ba02ced-225f-4abb-9249-be3402fcb345\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:219efd17-4567-4e52-95d0-34e942b44070", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "1023522b-e490-41a6-98d7-fec678a495fe", - "Body" : "{\r\n \"name\": \"vnet03092f1372\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372\",\r\n \"etag\": \"W/\\\"9ba02ced-225f-4abb-9249-be3402fcb345\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"897acd42-8b9b-40e2-9cca-3895cd2a4270\",\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/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9ba02ced-225f-4abb-9249-be3402fcb345\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "d2b91823-76cc-4e15-939b-1bd8d15f6410", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic79278bab832?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b6e23a5-ba90-4b18-b6e0-e5e896daf3df", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "374b9b9e-b74f-45ce-85fc-39d6ec6c8bce", - "x-ms-arm-service-request-id" : "f47ba995-f3f6-41c0-9225-9c37ed12e607", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:374b9b9e-b74f-45ce-85fc-39d6ec6c8bce", - "Expires" : "-1", - "Content-Length" : "1866", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ce378238-b1c5-44c4-85a3-85fda01784a3?api-version=2023-02-01", - "x-ms-request-id" : "ce378238-b1c5-44c4-85a3-85fda01784a3", - "Body" : "{\r\n \"name\": \"nic79278bab832\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic79278bab832\",\r\n \"etag\": \"W/\\\"b3845397-ae46-4cd4-b1b0-d0ec77e4d69a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88dd838-f643-4909-bbcf-e30806cda16b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic79278bab832/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b3845397-ae46-4cd4-b1b0-d0ec77e4d69a\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/publicIPAddresses/pip87401f86\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet03092f1372/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\": \"ilgxvcm1rprebhgkhck20kscoa.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "2b6e23a5-ba90-4b18-b6e0-e5e896daf3df", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "be676749-e2c2-4391-a545-9569d7c1c72f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:56 GMT", - "x-ms-correlation-request-id" : "822dc8d0-21c0-47dc-964f-a4b761046a00", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172256Z:822dc8d0-21c0-47dc-964f-a4b761046a00", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "c073e14d-7b47-4b88-91f2-ae339c380f4e", - "Body" : "", - "x-ms-client-request-id" : "be676749-e2c2-4391-a545-9569d7c1c72f", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c073e14d-7b47-4b88-91f2-ae339c380f4e?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c073e14d-7b47-4b88-91f2-ae339c380f4e?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c010456e-70b9-41d7-b6d8-0a4af57ecffe" - }, - "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" : "11945", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:13 GMT", - "x-ms-correlation-request-id" : "d314ba28-ae49-4cd3-bbd8-ecc9b6bef57b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172314Z:d314ba28-ae49-4cd3-bbd8-ecc9b6bef57b", - "Expires" : "-1", - "Content-Length" : "1161", - "x-ms-request-id" : "e0ce2487-a995-4ff9-b102-2ca4ad1fb502", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\"name\":\"stg94877d6e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:56.0546965Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:56.0546965Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:55.9609509Z\",\"primaryEndpoints\":{\"blob\":\"https://stg94877d6e.blob.core.windows.net/\",\"queue\":\"https://stg94877d6e.queue.core.windows.net/\",\"table\":\"https://stg94877d6e.table.core.windows.net/\",\"file\":\"https://stg94877d6e.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "c010456e-70b9-41d7-b6d8-0a4af57ecffe", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7707b819-82a7-494c-9330-2e54669f2e6a", - "Content-Type" : "application/json" - }, - "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" : "11944", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:13 GMT", - "x-ms-correlation-request-id" : "11b7de83-7894-4c5a-b6bc-5bc185b036c5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172314Z:11b7de83-7894-4c5a-b6bc-5bc185b036c5", - "Expires" : "-1", - "Content-Length" : "1161", - "x-ms-request-id" : "4da6c5ce-0334-42fe-9294-3fc09bf70690", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\"name\":\"stg94877d6e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:56.0546965Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:56.0546965Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:55.9609509Z\",\"primaryEndpoints\":{\"blob\":\"https://stg94877d6e.blob.core.windows.net/\",\"queue\":\"https://stg94877d6e.queue.core.windows.net/\",\"table\":\"https://stg94877d6e.table.core.windows.net/\",\"file\":\"https://stg94877d6e.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "7707b819-82a7-494c-9330-2e54669f2e6a", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "80891857-4199-4b5f-b609-e604d65ab3cd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:18 GMT", - "x-ms-correlation-request-id" : "c0adb5ab-aaec-4ebb-a458-047fb3ee3c41", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1183", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172318Z:c0adb5ab-aaec-4ebb-a458-047fb3ee3c41", - "Expires" : "-1", - "Content-Length" : "2438", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/276b3fbb-71a5-4931-8661-e3dd50a1e7e1?api-version=2021-11-01", - "x-ms-request-id" : "276b3fbb-71a5-4931-8661-e3dd50a1e7e1", - "Body" : "{\r\n \"name\": \"vm180403e53\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c6001ce3-1695-445b-bc92-a7a99c866967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm180403e53-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-os-disk-324be055-39d9-45fc-a110-dba154375dc7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm180403e53\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic79278bab832\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "80891857-4199-4b5f-b609-e604d65ab3cd", - "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/276b3fbb-71a5-4931-8661-e3dd50a1e7e1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4fbdc280-1964-48a0-b499-b21be6a2d3f0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:28 GMT", - "x-ms-correlation-request-id" : "c2dd4c58-cbd8-4b47-b551-139d57794dc0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172328Z:c2dd4c58-cbd8-4b47-b551-139d57794dc0", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "4d0392c6-d9f8-4e69-9ab9-7203b5257092", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:17.179778+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"276b3fbb-71a5-4931-8661-e3dd50a1e7e1\"\r\n}", - "x-ms-client-request-id" : "4fbdc280-1964-48a0-b499-b21be6a2d3f0", - "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/276b3fbb-71a5-4931-8661-e3dd50a1e7e1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ec87000-d087-4d86-aca7-26591319b50c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:03 GMT", - "x-ms-correlation-request-id" : "edf30e8f-ff18-4ba0-8cc8-78a0d9b71642", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14936,Microsoft.Compute/GetOperation30Min;29936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172404Z:edf30e8f-ff18-4ba0-8cc8-78a0d9b71642", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "1989a63b-393c-4353-a891-9a30d6cbbc99", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:17.179778+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:39.2587214+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"276b3fbb-71a5-4931-8661-e3dd50a1e7e1\"\r\n}", - "x-ms-client-request-id" : "7ec87000-d087-4d86-aca7-26591319b50c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "00a18050-a760-4895-b969-a5dbd72df37d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:03 GMT", - "x-ms-correlation-request-id" : "95cff3d7-83d6-4745-95cf-e2cbee4dd17e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3963,Microsoft.Compute/LowCostGet30Min;31963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172404Z:95cff3d7-83d6-4745-95cf-e2cbee4dd17e", - "Expires" : "-1", - "Content-Length" : "2466", - "x-ms-request-id" : "91212559-aa92-4300-922f-211c26ce649d", - "Body" : "{\r\n \"name\": \"vm180403e53\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c6001ce3-1695-445b-bc92-a7a99c866967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm180403e53-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-os-disk-324be055-39d9-45fc-a110-dba154375dc7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm180403e53\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic79278bab832\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "00a18050-a760-4895-b969-a5dbd72df37d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "166fb399-f3da-4e77-aaf6-7cf1ce2d0630", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:07 GMT", - "x-ms-correlation-request-id" : "8baa6f5c-694d-4268-b9b6-6f0dc137dc9e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172407Z:8baa6f5c-694d-4268-b9b6-6f0dc137dc9e", - "Expires" : "-1", - "Content-Length" : "752", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ef3e622f-5ad3-4df2-9baf-b29b3c77e89e?api-version=2021-11-01", - "x-ms-request-id" : "ef3e622f-5ad3-4df2-9baf-b29b3c77e89e", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "166fb399-f3da-4e77-aaf6-7cf1ce2d0630", - "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/ef3e622f-5ad3-4df2-9baf-b29b3c77e89e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c9f089f-4b9d-4c7f-ae35-7262338b317d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:37 GMT", - "x-ms-correlation-request-id" : "73f4ea9b-86b4-4886-be76-e77ec8638eb9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14913,Microsoft.Compute/GetOperation30Min;29913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172438Z:73f4ea9b-86b4-4886-be76-e77ec8638eb9", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "f7dab3f3-e76e-4bf5-9093-5bbb0415499c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:06.1504366+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef3e622f-5ad3-4df2-9baf-b29b3c77e89e\"\r\n}", - "x-ms-client-request-id" : "0c9f089f-4b9d-4c7f-ae35-7262338b317d", - "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/ef3e622f-5ad3-4df2-9baf-b29b3c77e89e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d904dbc-a8db-435b-91b0-9f548f19b587" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:08 GMT", - "x-ms-correlation-request-id" : "3f1ef481-de75-45ba-ae6e-cca5f7790d8e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14888,Microsoft.Compute/GetOperation30Min;29888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172508Z:3f1ef481-de75-45ba-ae6e-cca5f7790d8e", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "12f3b731-6d5e-47fb-a530-9655d1745418", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:06.1504366+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:50.7772607+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ef3e622f-5ad3-4df2-9baf-b29b3c77e89e\"\r\n}", - "x-ms-client-request-id" : "7d904dbc-a8db-435b-91b0-9f548f19b587", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8e368db-089c-4207-8764-8d7acdfd8d84" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:08 GMT", - "x-ms-correlation-request-id" : "5c2a693e-3c35-4ee0-b139-c6f8377f8d9c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3937,Microsoft.Compute/LowCostGet30Min;31937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172508Z:5c2a693e-3c35-4ee0-b139-c6f8377f8d9c", - "Expires" : "-1", - "Content-Length" : "753", - "x-ms-request-id" : "e01326fa-ee9e-43d0-b21b-887408cce68f", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "a8e368db-089c-4207-8764-8d7acdfd8d84", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f360d12f-1220-47b1-b594-c5b24cbdee8b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:08 GMT", - "x-ms-correlation-request-id" : "4a9951e0-0694-4eb7-a630-959bebc82a0e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3936,Microsoft.Compute/LowCostGet30Min;31936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172508Z:4a9951e0-0694-4eb7-a630-959bebc82a0e", - "Expires" : "-1", - "Content-Length" : "3301", - "x-ms-request-id" : "dedd1b84-15a9-423f-b7a1-9f412e775e50", - "Body" : "{\r\n \"name\": \"vm180403e53\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c6001ce3-1695-445b-bc92-a7a99c866967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm180403e53-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-os-disk-324be055-39d9-45fc-a110-dba154375dc7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm180403e53\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic79278bab832\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "f360d12f-1220-47b1-b594-c5b24cbdee8b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm180403e53?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "712a933b-ab53-4f0e-bf95-ad2ecdea226e", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:08 GMT", - "x-ms-correlation-request-id" : "8a312a4d-f0cb-4ee3-939a-bcd45b7906c9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;228,Microsoft.Compute/DeleteVM30Min;1188", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172509Z:8a312a4d-f0cb-4ee3-939a-bcd45b7906c9", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9?api-version=2021-11-01", - "x-ms-request-id" : "52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9", - "x-ms-client-request-id" : "712a933b-ab53-4f0e-bf95-ad2ecdea226e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2de85504-0b15-4803-aa6f-ec0338a30c80" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "578c2194-59c7-42d7-9929-c170909a06a8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14874,Microsoft.Compute/GetOperation30Min;29874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:578c2194-59c7-42d7-9929-c170909a06a8", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "2a3cec95-e8ed-45b5-a72b-c48469e2a291", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:09.5123993+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9\"\r\n}", - "x-ms-client-request-id" : "2de85504-0b15-4803-aa6f-ec0338a30c80", - "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/52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8d1543e-9437-4ec8-943c-e6fe0fb0dc9e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11781", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:50 GMT", - "x-ms-correlation-request-id" : "30d7350b-0f5d-47e5-a621-a36c70f9c48d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14871,Microsoft.Compute/GetOperation30Min;29853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172550Z:30d7350b-0f5d-47e5-a621-a36c70f9c48d", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "54e5d178-e986-415a-971a-a9bef43c6cf0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:09.5123993+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:32.5292292+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9\"\r\n}", - "x-ms-client-request-id" : "d8d1543e-9437-4ec8-943c-e6fe0fb0dc9e", - "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/52d91d4c-e0d9-4c5c-a4a1-05484f6fc6e9?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d89cc2e5-53e9-409b-9aa0-7c602a744f34" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11790", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:50 GMT", - "x-ms-correlation-request-id" : "8161973c-b860-451e-afeb-4003637c9c90", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14869,Microsoft.Compute/GetOperation30Min;29851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172551Z:8161973c-b860-451e-afeb-4003637c9c90", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "5833687a-1721-4af0-92d1-24ec000ac007", - "x-ms-client-request-id" : "d89cc2e5-53e9-409b-9aa0-7c602a744f34" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "30904337-56be-481f-a305-7643ce1a1ff7", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:52 GMT", - "x-ms-correlation-request-id" : "440b3f8e-ab70-43f7-af3f-f80d184e3c9f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;991,Microsoft.Compute/CreateUpdateDisks30Min;7984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172553Z:440b3f8e-ab70-43f7-af3f-f80d184e3c9f", - "Expires" : "-1", - "Content-Length" : "570", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ae6df3d-9966-41de-bd2f-e05da5f1e42f?api-version=2021-11-01", - "x-ms-request-id" : "2ae6df3d-9966-41de-bd2f-e05da5f1e42f", - "Body" : "{\r\n \"name\": \"ds-os-9798986\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-os-disk-324be055-39d9-45fc-a110-dba154375dc7.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "30904337-56be-481f-a305-7643ce1a1ff7", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ae6df3d-9966-41de-bd2f-e05da5f1e42f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ae6df3d-9966-41de-bd2f-e05da5f1e42f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "442f9fb6-4b6e-43fe-95d7-c6f3da955e25" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:54 GMT", - "x-ms-correlation-request-id" : "8559e695-31eb-49dc-b94a-fb8dc41fafcc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49964,Microsoft.Compute/GetOperation30Min;399950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172555Z:8559e695-31eb-49dc-b94a-fb8dc41fafcc", - "Expires" : "-1", - "Content-Length" : "1379", - "x-ms-request-id" : "53a69041-9af1-42bb-ad89-b442e1beb72e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:52.8315407+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:53.7534372+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ds-os-9798986\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-os-disk-324be055-39d9-45fc-a110-dba154375dc7.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:52.9565591+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"d8157668-8fcf-4357-beaf-b403df5ea3ef\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"2ae6df3d-9966-41de-bd2f-e05da5f1e42f\"\r\n}", - "x-ms-client-request-id" : "442f9fb6-4b6e-43fe-95d7-c6f3da955e25", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "36cc9b05-4491-40e6-a441-9693786cdcc2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:55 GMT", - "x-ms-correlation-request-id" : "f5876710-7001-4135-b386-2adc2508b2ba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4943,Microsoft.Compute/LowCostGet30Min;39903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172555Z:f5876710-7001-4135-b386-2adc2508b2ba", - "Expires" : "-1", - "Content-Length" : "1154", - "x-ms-request-id" : "75e08c76-18d8-4ce4-ac7f-20e983f483e2", - "Body" : "{\r\n \"name\": \"ds-os-9798986\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-os-disk-324be055-39d9-45fc-a110-dba154375dc7.vhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:25:52.9565591+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"d8157668-8fcf-4357-beaf-b403df5ea3ef\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "36cc9b05-4491-40e6-a441-9693786cdcc2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db8b5cee-6e4e-42ff-9983-4db2bc69fe51", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:59 GMT", - "x-ms-correlation-request-id" : "83f5c98b-9027-4019-91a2-9dd90b4cbb79", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;990,Microsoft.Compute/CreateUpdateDisks30Min;7983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172600Z:83f5c98b-9027-4019-91a2-9dd90b4cbb79", - "Expires" : "-1", - "Content-Length" : "599", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/054ddb43-3115-4de0-bfd5-9773ed998111?api-version=2021-11-01", - "x-ms-request-id" : "054ddb43-3115-4de0-bfd5-9773ed998111", - "Body" : "{\r\n \"name\": \"ds-data-252258-0\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "db8b5cee-6e4e-42ff-9983-4db2bc69fe51", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/054ddb43-3115-4de0-bfd5-9773ed998111?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/054ddb43-3115-4de0-bfd5-9773ed998111?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2202abbd-64b6-4055-a315-b7d543dff414" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11736", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:02 GMT", - "x-ms-correlation-request-id" : "dafd9d45-2bc5-497a-8413-d4fdade535c7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49962,Microsoft.Compute/GetOperation30Min;399948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172602Z:dafd9d45-2bc5-497a-8413-d4fdade535c7", - "Expires" : "-1", - "Content-Length" : "1365", - "x-ms-request-id" : "16c9a0e4-85af-491e-87b2-3505d40bcf71", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:00.3162694+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:00.8006826+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ds-data-252258-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:26:00.3318945+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"56de8f39-b3ce-4c02-aa72-ac141764dc1b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"054ddb43-3115-4de0-bfd5-9773ed998111\"\r\n}", - "x-ms-client-request-id" : "2202abbd-64b6-4055-a315-b7d543dff414", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b70d796-6831-4144-a920-b601867a6eb7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11761", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:02 GMT", - "x-ms-correlation-request-id" : "0e3b38af-9d81-4bac-b0ab-bff9012eb3c6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4943,Microsoft.Compute/LowCostGet30Min;39901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172603Z:0e3b38af-9d81-4bac-b0ab-bff9012eb3c6", - "Expires" : "-1", - "Content-Length" : "1140", - "x-ms-request-id" : "2ef2af4a-8e88-4ef8-b370-ee25ddc52c1f", - "Body" : "{\r\n \"name\": \"ds-data-252258-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:26:00.3318945+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"56de8f39-b3ce-4c02-aa72-ac141764dc1b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "3b70d796-6831-4144-a920-b601867a6eb7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0654401-5180-49f0-926d-12bb6f8f8267", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:04 GMT", - "x-ms-correlation-request-id" : "e1ed2ab9-ea56-4667-9d8c-faf6c83fe33a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;989,Microsoft.Compute/CreateUpdateDisks30Min;7982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172605Z:e1ed2ab9-ea56-4667-9d8c-faf6c83fe33a", - "Expires" : "-1", - "Content-Length" : "599", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3afcab2e-e212-4f85-8b84-18d812e535cd?api-version=2021-11-01", - "x-ms-request-id" : "3afcab2e-e212-4f85-8b84-18d812e535cd", - "Body" : "{\r\n \"name\": \"ds-data-252258-1\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "a0654401-5180-49f0-926d-12bb6f8f8267", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3afcab2e-e212-4f85-8b84-18d812e535cd?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3afcab2e-e212-4f85-8b84-18d812e535cd?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "510db21f-1474-471f-88af-4e543263ae33" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11733", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:06 GMT", - "x-ms-correlation-request-id" : "caca0b86-bcbf-430c-9809-8e89dcbf11f2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49960,Microsoft.Compute/GetOperation30Min;399946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172607Z:caca0b86-bcbf-430c-9809-8e89dcbf11f2", - "Expires" : "-1", - "Content-Length" : "1365", - "x-ms-request-id" : "010f222d-10d4-47e7-a49b-daad0b9f8ce5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:05.1601352+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:05.6601256+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ds-data-252258-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:26:05.1757361+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"0a2510cf-ba8a-4f03-a18f-739c4273b409\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"3afcab2e-e212-4f85-8b84-18d812e535cd\"\r\n}", - "x-ms-client-request-id" : "510db21f-1474-471f-88af-4e543263ae33", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aaa10670-4beb-45ff-bf46-66ae88f0c539" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11760", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:06 GMT", - "x-ms-correlation-request-id" : "98b56fd9-c6b1-4060-8240-b4e5a8be75d4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4940,Microsoft.Compute/LowCostGet30Min;39898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172607Z:98b56fd9-c6b1-4060-8240-b4e5a8be75d4", - "Expires" : "-1", - "Content-Length" : "1140", - "x-ms-request-id" : "54730362-6bc6-46dc-b8b6-1748eb743721", - "Body" : "{\r\n \"name\": \"ds-data-252258-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:26:05.1757361+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"0a2510cf-ba8a-4f03-a18f-739c4273b409\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "aaa10670-4beb-45ff-bf46-66ae88f0c539", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e043208f-9153-4b12-be66-e785ba3e0e0b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:26:10 GMT", - "x-ms-correlation-request-id" : "10a7aa48-ceee-42fa-9a7c-7c2d52a36fc8", - "x-ms-arm-service-request-id" : "75618858-d895-4a8c-bc1d-74c5f4c1e90b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172611Z:10a7aa48-ceee-42fa-9a7c-7c2d52a36fc8", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/649f93f2-26a4-40b5-b53a-7af2395f9f9a?api-version=2023-02-01", - "x-ms-request-id" : "649f93f2-26a4-40b5-b53a-7af2395f9f9a", - "Body" : "{\r\n \"name\": \"vnet15221b5f02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02\",\r\n \"etag\": \"W/\\\"652f0e89-19b4-46d6-8f98-8f930f752a82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"17f1d3a9-7a0d-4adc-b6bd-d1aa9e3f3dc6\",\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/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"652f0e89-19b4-46d6-8f98-8f930f752a82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e043208f-9153-4b12-be66-e785ba3e0e0b", - "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/649f93f2-26a4-40b5-b53a-7af2395f9f9a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "10bad7ff-f369-445d-abed-a7042521aabb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:14 GMT", - "x-ms-correlation-request-id" : "d99bbba9-bc96-4d77-aeab-b8d9c50fcac1", - "x-ms-arm-service-request-id" : "0f2dd2bc-a19c-4d3b-b209-7d193dcbfd0e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172614Z:d99bbba9-bc96-4d77-aeab-b8d9c50fcac1", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "d1316283-60f5-4ee1-8597-75f9a005b307", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "10bad7ff-f369-445d-abed-a7042521aabb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff3812c3-8159-4673-9597-9550bda0a6cd" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11729", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:14 GMT", - "x-ms-correlation-request-id" : "4ddba577-ec4f-4b2a-b14d-96f17a953c66", - "x-ms-arm-service-request-id" : "4bad3235-9539-406f-ae60-bffe29022567", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"265457cb-355b-4054-b309-cb123b1023e1\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172615Z:4ddba577-ec4f-4b2a-b14d-96f17a953c66", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "455729cb-dd0c-4391-8c87-df17ed2b1ecd", - "Body" : "{\r\n \"name\": \"vnet15221b5f02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02\",\r\n \"etag\": \"W/\\\"265457cb-355b-4054-b309-cb123b1023e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17f1d3a9-7a0d-4adc-b6bd-d1aa9e3f3dc6\",\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/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"265457cb-355b-4054-b309-cb123b1023e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "ff3812c3-8159-4673-9597-9550bda0a6cd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "654dad8f-ed53-44d1-a768-39757f351176", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:26:20 GMT", - "x-ms-correlation-request-id" : "d6736139-71c8-4c90-a69a-9c7ad8b01fa5", - "x-ms-arm-service-request-id" : "5dbcd836-50a9-424a-b10c-779c18f36b84", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172621Z:d6736139-71c8-4c90-a69a-9c7ad8b01fa5", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b36d297b-f7bc-45b0-8d5e-0a1e61487e04?api-version=2023-02-01", - "x-ms-request-id" : "b36d297b-f7bc-45b0-8d5e-0a1e61487e04", - "Body" : "{\r\n \"name\": \"nic589721bc503\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503\",\r\n \"etag\": \"W/\\\"269032a4-d0de-4d66-b347-b039e2a25f10\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58d2728c-a6d3-46f2-9e0d-d88b05bb0c56\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"269032a4-d0de-4d66-b347-b039e2a25f10\\\"\",\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/rgcomv64858f0/providers/Microsoft.Network/virtualNetworks/vnet15221b5f02/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\": \"vhj5cfynploevnv30gvj2pz3yg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "654dad8f-ed53-44d1-a768-39757f351176", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2b1c1c8-eec7-4133-ac7a-f1ae82aa7482", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:26:26 GMT", - "x-ms-correlation-request-id" : "5da9e023-cd25-40e0-a9bf-5fe81376b0b0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1166", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172627Z:5da9e023-cd25-40e0-a9bf-5fe81376b0b0", - "Expires" : "-1", - "Content-Length" : "2091", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/91b660c1-0f4c-4379-bd60-c79e56f909fd?api-version=2021-11-01", - "x-ms-request-id" : "91b660c1-0f4c-4379-bd60-c79e56f909fd", - "Body" : "{\r\n \"name\": \"vm292397afc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"89c3de71-6ac9-4db9-9bc0-39b8a7b53115\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-9798986\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-252258-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-252258-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "d2b1c1c8-eec7-4133-ac7a-f1ae82aa7482", - "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/91b660c1-0f4c-4379-bd60-c79e56f909fd?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "65efa94d-378e-49d0-bf65-485762a351c3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11720", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:37 GMT", - "x-ms-correlation-request-id" : "482c3713-0b46-40d1-94ba-9bf767d5179a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14875,Microsoft.Compute/GetOperation30Min;29817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172637Z:482c3713-0b46-40d1-94ba-9bf767d5179a", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "0a8558bb-4ef5-4111-b12e-38cca03772d0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:25.6097093+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:34.422577+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"91b660c1-0f4c-4379-bd60-c79e56f909fd\"\r\n}", - "x-ms-client-request-id" : "65efa94d-378e-49d0-bf65-485762a351c3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "17e0f067-49ea-4695-aabb-2a10f232ba64" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11750", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:37 GMT", - "x-ms-correlation-request-id" : "948201a4-8df2-4cdf-8fcc-2d4a4bdd5636", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3938,Microsoft.Compute/LowCostGet30Min;31906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172638Z:948201a4-8df2-4cdf-8fcc-2d4a4bdd5636", - "Expires" : "-1", - "Content-Length" : "2092", - "x-ms-request-id" : "ba15f389-95ac-46a7-bcd7-cc6b3d24105c", - "Body" : "{\r\n \"name\": \"vm292397afc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"89c3de71-6ac9-4db9-9bc0-39b8a7b53115\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-9798986\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-252258-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-252258-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "17e0f067-49ea-4695-aabb-2a10f232ba64", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae7afcdf-fa3e-45bd-a7ee-3947df48ad62", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:41 GMT", - "x-ms-correlation-request-id" : "c6516b04-d0db-49a8-b0de-c41ca731e732", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1164", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172642Z:c6516b04-d0db-49a8-b0de-c41ca731e732", - "Expires" : "-1", - "Content-Length" : "2089", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a1cfaa20-a462-4ff9-994b-3cbb95f46f13?api-version=2021-11-01", - "x-ms-request-id" : "a1cfaa20-a462-4ff9-994b-3cbb95f46f13", - "Body" : "{\r\n \"name\": \"vm292397afc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"89c3de71-6ac9-4db9-9bc0-39b8a7b53115\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-9798986\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds-data-252258-0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"ds-data-252258-1\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "ae7afcdf-fa3e-45bd-a7ee-3947df48ad62", - "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/a1cfaa20-a462-4ff9-994b-3cbb95f46f13?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ace4e9f-5e9d-41ae-9ea0-452c68f5fd67" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:11 GMT", - "x-ms-correlation-request-id" : "49128beb-f9ce-4f1a-8996-527a8d0b3dd4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14877,Microsoft.Compute/GetOperation30Min;29798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172712Z:49128beb-f9ce-4f1a-8996-527a8d0b3dd4", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "ca7df717-1336-49d6-b981-d4533c8ea1f5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:39.2196443+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:50.985651+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a1cfaa20-a462-4ff9-994b-3cbb95f46f13\"\r\n}", - "x-ms-client-request-id" : "7ace4e9f-5e9d-41ae-9ea0-452c68f5fd67", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ae32299-f000-4a74-83a5-5993b5d65c43" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11765", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:12 GMT", - "x-ms-correlation-request-id" : "9c8368fa-36e3-45c0-9f23-cb8e75f14fc7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3944,Microsoft.Compute/LowCostGet30Min;31895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172712Z:9c8368fa-36e3-45c0-9f23-cb8e75f14fc7", - "Expires" : "-1", - "Content-Length" : "1157", - "x-ms-request-id" : "d9e9a8b6-4916-404b-a23f-8a86bfac4da9", - "Body" : "{\r\n \"name\": \"vm292397afc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/virtualMachines/vm292397afc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"89c3de71-6ac9-4db9-9bc0-39b8a7b53115\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"ds-os-9798986\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-os-9798986\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Network/networkInterfaces/nic589721bc503\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "1ae32299-f000-4a74-83a5-5993b5d65c43", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "97f2d855-4e85-451b-b836-cfd6b83afefd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:13 GMT", - "x-ms-correlation-request-id" : "29b99d34-76ab-4e31-84a5-76e72b8f3603", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4933,Microsoft.Compute/LowCostGet30Min;39883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172713Z:29b99d34-76ab-4e31-84a5-76e72b8f3603", - "Expires" : "-1", - "Content-Length" : "1140", - "x-ms-request-id" : "d454d64d-838a-4a9a-821d-bef2b114ee75", - "Body" : "{\r\n \"name\": \"ds-data-252258-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-1-51229515-7ce4-4bf9-af40-b71dcf78b972.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:26:00.3318945+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"56de8f39-b3ce-4c02-aa72-ac141764dc1b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "97f2d855-4e85-451b-b836-cfd6b83afefd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-0/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "48bb13bd-7362-4007-93d7-69d144327708", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:13 GMT", - "x-ms-correlation-request-id" : "1ce6c90a-f5a3-4b01-8113-5a4fce90822c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172713Z:1ce6c90a-f5a3-4b01-8113-5a4fce90822c", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d5f3501a-7a1d-4662-a2dc-dbadb487977c?api-version=2021-11-01", - "x-ms-request-id" : "d5f3501a-7a1d-4662-a2dc-dbadb487977c", - "x-ms-client-request-id" : "48bb13bd-7362-4007-93d7-69d144327708", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d5f3501a-7a1d-4662-a2dc-dbadb487977c?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d5f3501a-7a1d-4662-a2dc-dbadb487977c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6c8ac71-9b56-47c5-97b0-48f2271f1de4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11767", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:43 GMT", - "x-ms-correlation-request-id" : "7bec0ee0-10be-4662-bf3f-8013148a40a3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49944,Microsoft.Compute/GetOperation30Min;399927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172743Z:7bec0ee0-10be-4662-bf3f-8013148a40a3", - "Expires" : "-1", - "Content-Length" : "421", - "x-ms-request-id" : "38428460-7541-4b4e-87a6-1d427732f115", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:13.2230667+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:13.3480117+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"d5f3501a-7a1d-4662-a2dc-dbadb487977c\"\r\n}", - "x-ms-client-request-id" : "c6c8ac71-9b56-47c5-97b0-48f2271f1de4", - "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/DiskOperations/d5f3501a-7a1d-4662-a2dc-dbadb487977c?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "58473f00-77a5-46c4-8609-f4586dc2a8c1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11745", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:43 GMT", - "x-ms-correlation-request-id" : "8ef4c7be-36fb-487d-83d1-eebceaa2f1e7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49943,Microsoft.Compute/GetOperation30Min;399926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172743Z:8ef4c7be-36fb-487d-83d1-eebceaa2f1e7", - "Expires" : "-1", - "Content-Length" : "196", - "x-ms-request-id" : "3699b94e-033d-44f6-9204-dafb44a99377", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "58473f00-77a5-46c4-8609-f4586dc2a8c1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "18b46b7b-66e8-4780-9c76-90f0a2533483", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:44 GMT", - "x-ms-correlation-request-id" : "d9288fd6-f3e6-4295-a873-d236bf9d96fb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4918,Microsoft.Compute/LowCostGet30Min;39868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172744Z:d9288fd6-f3e6-4295-a873-d236bf9d96fb", - "Expires" : "-1", - "Content-Length" : "1140", - "x-ms-request-id" : "fe43c3f4-df77-41ad-abb5-5e18b1ca6528", - "Body" : "{\r\n \"name\": \"ds-data-252258-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \"storageAccountId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0/providers/Microsoft.Storage/storageAccounts/stg94877d6e\",\r\n \"sourceUri\": \"https://stg94877d6e.blob.core.windows.net/vhds/vm180403e53-data-disk-2-9d808d1c-9cf1-49c0-a637-2c797d8df7f3.vhd\"\r\n },\r\n \"diskSizeGB\": 150,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:26:05.1757361+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 161061273600,\r\n \"uniqueId\": \"0a2510cf-ba8a-4f03-a18f-739c4273b409\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "18b46b7b-66e8-4780-9c76-90f0a2533483", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv64858f0/providers/Microsoft.Compute/disks/ds-data-252258-1/beginGetAccess?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c361554a-df64-48c5-be55-1700bed0df41", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:44 GMT", - "x-ms-correlation-request-id" : "d0eefe8c-c3a4-4323-8496-29f496b3a401", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172744Z:d0eefe8c-c3a4-4323-8496-29f496b3a401", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1dea3f76-4098-4e82-a59e-48c2e22aa267?api-version=2021-11-01", - "x-ms-request-id" : "1dea3f76-4098-4e82-a59e-48c2e22aa267", - "x-ms-client-request-id" : "c361554a-df64-48c5-be55-1700bed0df41", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1dea3f76-4098-4e82-a59e-48c2e22aa267?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1dea3f76-4098-4e82-a59e-48c2e22aa267?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "391cf082-1fbd-48e1-ac09-a521e4e047b5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11756", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:14 GMT", - "x-ms-correlation-request-id" : "967afb10-035e-409b-9645-4da0d9a304c6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49955,Microsoft.Compute/GetOperation30Min;399918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172815Z:967afb10-035e-409b-9645-4da0d9a304c6", - "Expires" : "-1", - "Content-Length" : "425", - "x-ms-request-id" : "ac8737d0-ba0e-4739-89d1-dbaa92d083b3", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:44.5044667+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:44.6763253+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"***REMOVED***\"\r\n}\r\n },\r\n \"name\": \"1dea3f76-4098-4e82-a59e-48c2e22aa267\"\r\n}", - "x-ms-client-request-id" : "391cf082-1fbd-48e1-ac09-a521e4e047b5", - "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/DiskOperations/1dea3f76-4098-4e82-a59e-48c2e22aa267?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "72a35ade-62f2-4eb8-b071-7ea09e96e831" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11713", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:15 GMT", - "x-ms-correlation-request-id" : "084b01c4-629d-4fbe-8c0d-88c4ea7fb020", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49954,Microsoft.Compute/GetOperation30Min;399917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172815Z:084b01c4-629d-4fbe-8c0d-88c4ea7fb020", - "Expires" : "-1", - "Content-Length" : "200", - "x-ms-request-id" : "0e459207-4266-4cf2-adb2-e9d5c220e421", - "Body" : "{\r\n \"accessSAS\": \"***REMOVED***\"\r\n}", - "x-ms-client-request-id" : "72a35ade-62f2-4eb8-b071-7ea09e96e831", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv64858f0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ff95e45-15ff-437a-a8a5-35cad73627eb", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:17 GMT", - "x-ms-correlation-request-id" : "9eefcabd-5ee0-4a9f-8343-edb9ff092b37", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172818Z:9eefcabd-5ee0-4a9f-8343-edb9ff092b37", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "9eefcabd-5ee0-4a9f-8343-edb9ff092b37", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2NDg1OEYwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm180403e53", "vm292397afc", "ds-os-9798986", "ds-data-252258", "rgcomv64858f0", "pip0518849e", "stg94877d6e", "nic79278bab832", "vnet03092f1372", "pip87401f86", "nic589721bc503", "vnet15221b5f02" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineWithTrustedLaunchFromGalleryImage.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineWithTrustedLaunchFromGalleryImage.json deleted file mode 100644 index 9d23a893869d..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachineWithTrustedLaunchFromGalleryImage.json +++ /dev/null @@ -1,1841 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg0156757d9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2a2a0a1-5976-4fb9-9cf1-7b4939172964", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "219", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:39:58 GMT", - "x-ms-correlation-request-id" : "e1be2684-75f0-4bdf-adbf-6356cc39e515", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T023958Z:e1be2684-75f0-4bdf-adbf-6356cc39e515", - "Expires" : "-1", - "x-ms-request-id" : "e1be2684-75f0-4bdf-adbf-6356cc39e515", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9\",\"name\":\"rg0156757d9\",\"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/rg305194008?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c994f410-70d8-4925-9173-ea3dac7d126f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "220", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:40:01 GMT", - "x-ms-correlation-request-id" : "cd5964b2-445d-4cec-8ac9-84f424909609", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024002Z:cd5964b2-445d-4cec-8ac9-84f424909609", - "Expires" : "-1", - "x-ms-request-id" : "cd5964b2-445d-4cec-8ac9-84f424909609", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008\",\"name\":\"rg305194008\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus2\",\"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/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb43d45d-1f1c-483d-acb8-0a2c5fa336d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1303", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:40:07 GMT", - "x-ms-correlation-request-id" : "c3faa26b-972c-4c34-a496-ed1d7b5b68de", - "x-ms-arm-service-request-id" : "4e13bd60-6e0a-435d-89ef-b10290f5d8a7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024007Z:c3faa26b-972c-4c34-a496-ed1d7b5b68de", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f6d6b57-9212-433d-8b95-554a3d58b15d?api-version=2023-02-01", - "x-ms-request-id" : "7f6d6b57-9212-433d-8b95-554a3d58b15d", - "Body" : "{\r\n \"name\": \"vnet93721d7add\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add\",\r\n \"etag\": \"W/\\\"1d07c56c-2aaa-44c1-b2f0-61dba76e7220\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d75d999a-876e-4084-ac52-9c0002306fea\",\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/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1d07c56c-2aaa-44c1-b2f0-61dba76e7220\\\"\",\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" : "cb43d45d-1f1c-483d-acb8-0a2c5fa336d6", - "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/7f6d6b57-9212-433d-8b95-554a3d58b15d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4da9236-9636-4fb7-a70d-5dbe93b6173e" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8aec9ae-8b49-4ab1-baed-73266285fac9", - "Date" : "Mon, 21 Nov 2022 02:40:10 GMT", - "x-ms-arm-service-request-id" : "786a4288-bb5a-45de-8a5c-b1400b8974c4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024010Z:a8aec9ae-8b49-4ab1-baed-73266285fac9", - "Expires" : "-1", - "x-ms-request-id" : "0b1accd6-c3bb-45b3-993e-ca402772c0cc", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "a4da9236-9636-4fb7-a70d-5dbe93b6173e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7708d313-6b3e-4da4-b57f-8a40485d1331" - }, - "Response" : { - "content-length" : "1305", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fde9c01e-016c-48ac-8e37-3f90c533208a", - "Date" : "Mon, 21 Nov 2022 02:40:11 GMT", - "x-ms-arm-service-request-id" : "5ce944d5-657e-4e2d-8fdd-8d32d942e8eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"b02aa899-939f-47a0-9180-a05ad93d1413\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024011Z:fde9c01e-016c-48ac-8e37-3f90c533208a", - "Expires" : "-1", - "x-ms-request-id" : "71258704-4966-4636-a1d4-491cf5b253c3", - "Body" : "{\r\n \"name\": \"vnet93721d7add\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add\",\r\n \"etag\": \"W/\\\"b02aa899-939f-47a0-9180-a05ad93d1413\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d75d999a-876e-4084-ac52-9c0002306fea\",\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/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b02aa899-939f-47a0-9180-a05ad93d1413\\\"\",\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" : "7708d313-6b3e-4da4-b57f-8a40485d1331", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/networkInterfaces/nic5805551e7c9?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "56097dd4-1b36-46cd-b1c3-398f06a91895", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:40:14 GMT", - "x-ms-correlation-request-id" : "8ea25400-8642-49f7-94c8-919ee6a14a5b", - "x-ms-arm-service-request-id" : "77cd2f4b-4e99-4333-8f20-2522e5e42fb4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024014Z:8ea25400-8642-49f7-94c8-919ee6a14a5b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/666c01a6-0e22-4bce-8c89-4a5fddfdfa85?api-version=2023-02-01", - "x-ms-request-id" : "666c01a6-0e22-4bce-8c89-4a5fddfdfa85", - "Body" : "{\r\n \"name\": \"nic5805551e7c9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/networkInterfaces/nic5805551e7c9\",\r\n \"etag\": \"W/\\\"7d032bf7-9426-4c26-902e-ee3d2b1161f9\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d1fa136-a846-4861-a7eb-44c9eefc5dfb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/networkInterfaces/nic5805551e7c9/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7d032bf7-9426-4c26-902e-ee3d2b1161f9\\\"\",\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/rg0156757d9/providers/Microsoft.Network/virtualNetworks/vnet93721d7add/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\": \"tkmv1v1oq4ceblcstqaaemdp3c.dx.internal.cloudapp.net\"\r\n },\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\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}", - "x-ms-client-request-id" : "56097dd4-1b36-46cd-b1c3-398f06a91895", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "70819159-366f-4b91-8f1e-3c4e5f49d855", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2719", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:40:18 GMT", - "x-ms-correlation-request-id" : "2eb911ac-66b1-4636-9b0e-643bd284803a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024018Z:2eb911ac-66b1-4636-9b0e-643bd284803a", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e9e7c4ae-0e68-47ff-bbf9-b077430561e2?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "x-ms-request-id" : "e9e7c4ae-0e68-47ff-bbf9-b077430561e2", - "Body" : "{\r\n \"name\": \"vm50336a06e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e\",\r\n \"type\": \"Microsoft.Compute/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 \"properties\": {\r\n \"vmId\": \"1c74275f-158b-43e6-ba3d-fe60fba2548c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-datacenter-gensecond\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.5501.221105\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm50336a06e\",\r\n \"adminUsername\": \"azureuser\",\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 \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/networkInterfaces/nic5805551e7c9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-11-21T02:40:17.1493984+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "70819159-366f-4b91-8f1e-3c4e5f49d855", - "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/e9e7c4ae-0e68-47ff-bbf9-b077430561e2?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbdf5c30-e5a2-411a-bc86-d6b257e71046" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84c216f8-460e-47f3-981f-ec01c7c87741", - "Date" : "Mon, 21 Nov 2022 02:40:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024028Z:84c216f8-460e-47f3-981f-ec01c7c87741", - "Expires" : "-1", - "x-ms-request-id" : "6a30ea22-ed39-4516-b0da-bac72cc99090", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:40:16.5243949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9e7c4ae-0e68-47ff-bbf9-b077430561e2\"\r\n}", - "x-ms-client-request-id" : "bbdf5c30-e5a2-411a-bc86-d6b257e71046", - "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/e9e7c4ae-0e68-47ff-bbf9-b077430561e2?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ed5689e-e62e-43c2-8f63-03a832aa3940" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae25bf54-e62a-4102-9458-366e9cb04f94", - "Date" : "Mon, 21 Nov 2022 02:41:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024119Z:ae25bf54-e62a-4102-9458-366e9cb04f94", - "Expires" : "-1", - "x-ms-request-id" : "4c0ea374-7e4b-43ba-b98b-7d3fb2a17825", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:40:16.5243949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9e7c4ae-0e68-47ff-bbf9-b077430561e2\"\r\n}", - "x-ms-client-request-id" : "6ed5689e-e62e-43c2-8f63-03a832aa3940", - "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/e9e7c4ae-0e68-47ff-bbf9-b077430561e2?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad4447d1-ecd3-4f54-8db0-1ad233cb37c4" - }, - "Response" : { - "content-length" : "184", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c393f19f-0f38-4538-b29c-a6e2fa2907ce", - "Date" : "Mon, 21 Nov 2022 02:41:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024150Z:c393f19f-0f38-4538-b29c-a6e2fa2907ce", - "Expires" : "-1", - "x-ms-request-id" : "800df829-b39a-4962-9d7f-04cc6cf30060", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:40:16.5243949+00:00\",\r\n \"endTime\": \"2022-11-21T02:41:26.8532897+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9e7c4ae-0e68-47ff-bbf9-b077430561e2\"\r\n}", - "x-ms-client-request-id" : "ad4447d1-ecd3-4f54-8db0-1ad233cb37c4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "64e27891-d25c-4e82-a11c-40c8b8de87df" - }, - "Response" : { - "content-length" : "3499", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29dfa10e-8829-454b-9741-64ea02257339", - "Date" : "Mon, 21 Nov 2022 02:41:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024150Z:29dfa10e-8829-454b-9741-64ea02257339", - "Expires" : "-1", - "x-ms-request-id" : "a49d8adf-02b6-48a2-ad68-fa488bd8c486", - "Body" : "{\r\n \"name\": \"vm50336a06e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e\",\r\n \"type\": \"Microsoft.Compute/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 \"properties\": {\r\n \"vmId\": \"1c74275f-158b-43e6-ba3d-fe60fba2548c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-datacenter-gensecond\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.5501.221105\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm50336a06e_OsDisk_1_676c6416cde043b0a908b10d51e4231f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_OsDisk_1_676c6416cde043b0a908b10d51e4231f\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm50336a06e_disk2_fb8094a5458b4ae2b294fbe74cc270a6\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_disk2_fb8094a5458b4ae2b294fbe74cc270a6\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm50336a06e_disk3_7352ff2753884ac68176baa50d5d17a7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_disk3_7352ff2753884ac68176baa50d5d17a7\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm50336a06e\",\r\n \"adminUsername\": \"azureuser\",\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 \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Network/networkInterfaces/nic5805551e7c9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-11-21T02:40:17.1493984+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "64e27891-d25c-4e82-a11c-40c8b8de87df", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4adcdb5-9f1b-4883-bb54-db68d58c1dee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Mon, 21 Nov 2022 02:41:51 GMT", - "x-ms-correlation-request-id" : "0e888b4b-3a04-40ab-8400-f8686d4c1d6a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024151Z:0e888b4b-3a04-40ab-8400-f8686d4c1d6a", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4b526090-7e12-488f-b54e-e14284925738?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "x-ms-request-id" : "4b526090-7e12-488f-b54e-e14284925738", - "x-ms-client-request-id" : "f4adcdb5-9f1b-4883-bb54-db68d58c1dee", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4b526090-7e12-488f-b54e-e14284925738?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2022-08-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4b526090-7e12-488f-b54e-e14284925738?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b492b3e7-143a-4626-9890-5228a3b74a0b" - }, - "Response" : { - "content-length" : "134", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "032943fb-1247-4b08-a94e-642b01bafbbb", - "Date" : "Mon, 21 Nov 2022 02:42:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024221Z:032943fb-1247-4b08-a94e-642b01bafbbb", - "Expires" : "-1", - "x-ms-request-id" : "0c46039f-66ce-4ad5-a076-6d9fb52ec1ff", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:41:51.0254689+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4b526090-7e12-488f-b54e-e14284925738\"\r\n}", - "x-ms-client-request-id" : "b492b3e7-143a-4626-9890-5228a3b74a0b", - "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/4b526090-7e12-488f-b54e-e14284925738?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f681918c-e813-4643-af61-8aa3d3250aaa" - }, - "Response" : { - "content-length" : "134", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92a03c0a-d7f8-4f30-b1db-b8c21f802d4b", - "Date" : "Mon, 21 Nov 2022 02:42:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024251Z:92a03c0a-d7f8-4f30-b1db-b8c21f802d4b", - "Expires" : "-1", - "x-ms-request-id" : "d34e2e14-4e2d-482f-b4d9-6f1c7095a598", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:41:51.0254689+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4b526090-7e12-488f-b54e-e14284925738\"\r\n}", - "x-ms-client-request-id" : "f681918c-e813-4643-af61-8aa3d3250aaa", - "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/4b526090-7e12-488f-b54e-e14284925738?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "be544c30-25b6-4b65-aef0-bfa3f194de4f" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e8a170e-e268-487b-bb4f-a61497163ae8", - "Date" : "Mon, 21 Nov 2022 02:43:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024322Z:0e8a170e-e268-487b-bb4f-a61497163ae8", - "Expires" : "-1", - "x-ms-request-id" : "b3082ad6-4305-47d8-87ae-576bd1df3283", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:41:51.0254689+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4b526090-7e12-488f-b54e-e14284925738\"\r\n}", - "x-ms-client-request-id" : "be544c30-25b6-4b65-aef0-bfa3f194de4f", - "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/4b526090-7e12-488f-b54e-e14284925738?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "42d71573-aebe-4368-8b12-af0f0b1226af" - }, - "Response" : { - "content-length" : "461", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b84108f1-4e70-4bb8-b92c-b264367ece77", - "Date" : "Mon, 21 Nov 2022 02:43:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024352Z:b84108f1-4e70-4bb8-b92c-b264367ece77", - "Expires" : "-1", - "x-ms-request-id" : "61d883fd-3aec-402e-a61c-fdfd0b31dc54", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:41:51.0254689+00:00\",\r\n \"endTime\": \"2022-11-21T02:43:27.292202+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ComponentStatus/StdOut/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"\"},{\"code\":\"ComponentStatus/StdErr/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"\"}]}\r\n },\r\n \"name\": \"4b526090-7e12-488f-b54e-e14284925738\"\r\n}", - "x-ms-client-request-id" : "42d71573-aebe-4368-8b12-af0f0b1226af", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c95e1cb6-5d4e-4406-a04c-74bebefefedb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Mon, 21 Nov 2022 02:43:54 GMT", - "x-ms-correlation-request-id" : "b7ef0f53-aef5-4fce-a365-e1fee5aea8cb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024354Z:b7ef0f53-aef5-4fce-a365-e1fee5aea8cb", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f17c70cb-f9e6-4c2a-b359-dbe9268fa963?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "x-ms-request-id" : "f17c70cb-f9e6-4c2a-b359-dbe9268fa963", - "x-ms-client-request-id" : "c95e1cb6-5d4e-4406-a04c-74bebefefedb", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f17c70cb-f9e6-4c2a-b359-dbe9268fa963?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2022-08-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f17c70cb-f9e6-4c2a-b359-dbe9268fa963?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2aac2d6b-147e-4a86-971e-bf2c42b0c30d" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6731eba4-38e3-40ac-914b-5a3f8ff0b575", - "Date" : "Mon, 21 Nov 2022 02:44:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024405Z:6731eba4-38e3-40ac-914b-5a3f8ff0b575", - "Expires" : "-1", - "x-ms-request-id" : "e0d6fb54-2b5a-45a2-a392-5b003cc09060", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:43:54.7455952+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f17c70cb-f9e6-4c2a-b359-dbe9268fa963\"\r\n}", - "x-ms-client-request-id" : "2aac2d6b-147e-4a86-971e-bf2c42b0c30d", - "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/f17c70cb-f9e6-4c2a-b359-dbe9268fa963?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e625ea8-49e9-4728-9f0a-2b11f6666b90" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8edf848d-1006-4f91-a49d-19cb25dc600f", - "Date" : "Mon, 21 Nov 2022 02:44:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024441Z:8edf848d-1006-4f91-a49d-19cb25dc600f", - "Expires" : "-1", - "x-ms-request-id" : "0db8adc2-1166-4f22-9571-162dc0528ef6", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:43:54.7455952+00:00\",\r\n \"endTime\": \"2022-11-21T02:44:25.4802846+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f17c70cb-f9e6-4c2a-b359-dbe9268fa963\"\r\n}", - "x-ms-client-request-id" : "8e625ea8-49e9-4728-9f0a-2b11f6666b90", - "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/f17c70cb-f9e6-4c2a-b359-dbe9268fa963?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aae53ff3-60e2-4832-9fe9-fac25303d9ff" - }, - "Response" : { - "content-length" : "0", - "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" : "fee4af25-ff52-4573-86b9-5933c7937f18", - "Date" : "Mon, 21 Nov 2022 02:44:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024441Z:fee4af25-ff52-4573-86b9-5933c7937f18", - "Expires" : "-1", - "x-ms-request-id" : "07bd771c-eee5-4ad7-b7c6-b8d6281cd190", - "x-ms-client-request-id" : "aae53ff3-60e2-4832-9fe9-fac25303d9ff" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/virtualMachines/vm50336a06e/generalize?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7618e048-16c8-4c84-8428-8b6360c80f21", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Mon, 21 Nov 2022 02:44:42 GMT", - "x-ms-correlation-request-id" : "ae19dbbf-0816-477d-95a0-01ad80e3b332", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024442Z:ae19dbbf-0816-477d-95a0-01ad80e3b332", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198", - "Expires" : "-1", - "x-ms-request-id" : "14bde4af-cb26-43fb-ae35-814c46f19912", - "x-ms-client-request-id" : "7618e048-16c8-4c84-8428-8b6360c80f21" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/images/img87569be431c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4aa59654-2afc-4634-975a-5d4a5e253081", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1571", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:44:44 GMT", - "x-ms-correlation-request-id" : "84440336-5b78-4684-ad4b-ea05839f3592", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024444Z:84440336-5b78-4684-ad4b-ea05839f3592", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70e23b63-6eea-48e6-a996-2117128e2f7c?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "x-ms-request-id" : "70e23b63-6eea-48e6-a996-2117128e2f7c", - "Body" : "{\r\n \"name\": \"img87569be431c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/images/img87569be431c\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_OsDisk_1_676c6416cde043b0a908b10d51e4231f\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_disk2_fb8094a5458b4ae2b294fbe74cc270a6\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_disk3_7352ff2753884ac68176baa50d5d17a7\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V2\"\r\n }\r\n}", - "x-ms-client-request-id" : "4aa59654-2afc-4634-975a-5d4a5e253081", - "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/70e23b63-6eea-48e6-a996-2117128e2f7c?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc321ec6-c27c-4983-8b01-3cc737e0bf60" - }, - "Response" : { - "content-length" : "184", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1e2d3f0-39d6-4276-bd42-7a1b14f6dde4", - "Date" : "Mon, 21 Nov 2022 02:45:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024515Z:b1e2d3f0-39d6-4276-bd42-7a1b14f6dde4", - "Expires" : "-1", - "x-ms-request-id" : "5c5ddc88-e796-4131-bbc2-b093429cbe1b", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:44:43.9805069+00:00\",\r\n \"endTime\": \"2022-11-21T02:44:49.1055699+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"70e23b63-6eea-48e6-a996-2117128e2f7c\"\r\n}", - "x-ms-client-request-id" : "cc321ec6-c27c-4983-8b01-3cc737e0bf60", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/images/img87569be431c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff1114e7-29d9-4892-a9ea-a35c7798aa0c" - }, - "Response" : { - "content-length" : "1600", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49e8a3d0-76d0-4d85-a842-e9f5aaed4672", - "Date" : "Mon, 21 Nov 2022 02:45:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024515Z:49e8a3d0-76d0-4d85-a842-e9f5aaed4672", - "Expires" : "-1", - "x-ms-request-id" : "3599ca91-f283-498e-ba77-52e588783a8b", - "Body" : "{\r\n \"name\": \"img87569be431c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/images/img87569be431c\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 127,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_OsDisk_1_676c6416cde043b0a908b10d51e4231f\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_disk2_fb8094a5458b4ae2b294fbe74cc270a6\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/disks/vm50336a06e_disk3_7352ff2753884ac68176baa50d5d17a7\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V2\"\r\n }\r\n}", - "x-ms-client-request-id" : "ff1114e7-29d9-4892-a9ea-a35c7798aa0c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eefa679c-53c1-4eaf-b7ab-131538a09720", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "469", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_133108173004776765,3d1b70e0-80c1-42d3-8289-132ab8f818d5_133108173004776765", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:45:21 GMT", - "x-ms-correlation-request-id" : "ec5e1fce-beaa-47d4-a773-8ffc33824a24", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024522Z:ec5e1fce-beaa-47d4-a773-8ffc33824a24", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/capsOperations/98f263d5-66b2-4787-a825-3007b2dd8b12?api-version=2022-03-03", - "x-ms-request-id" : "98f263d5-66b2-4787-a825-3007b2dd8b12", - "Body" : "{\r\n \"name\": \"jsim95050b1d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIM95050B1D\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "eefa679c-53c1-4eaf-b7ab-131538a09720", - "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/westcentralus/capsOperations/98f263d5-66b2-4787-a825-3007b2dd8b12?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "610bc3cc-b7a7-4a94-8ad2-55f74b8b8013" - }, - "Response" : { - "content-length" : "184", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_133108173004776765,3d1b70e0-80c1-42d3-8289-132ab8f818d5_133108173004776765", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e13bcfb-567e-4c41-80e3-40f15659e8d9", - "Date" : "Mon, 21 Nov 2022 02:45:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024553Z:2e13bcfb-567e-4c41-80e3-40f15659e8d9", - "Expires" : "-1", - "x-ms-request-id" : "ddb780eb-f250-4c06-867d-e93ea3a8970a", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:45:21.2660612+00:00\",\r\n \"endTime\": \"2022-11-21T02:45:21.5004685+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"98f263d5-66b2-4787-a825-3007b2dd8b12\"\r\n}", - "x-ms-client-request-id" : "610bc3cc-b7a7-4a94-8ad2-55f74b8b8013", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "98bf5086-4f38-4338-a0f2-9b4c11cfc885" - }, - "Response" : { - "content-length" : "470", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3d1b70e0-80c1-42d3-8289-132ab8f818d5_133108173004776765,3d1b70e0-80c1-42d3-8289-132ab8f818d5_133108173004776765", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d99857f-9c11-402c-8bc0-79a8a40c8fff", - "Date" : "Mon, 21 Nov 2022 02:45:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024554Z:5d99857f-9c11-402c-8bc0-79a8a40c8fff", - "Expires" : "-1", - "x-ms-request-id" : "43574403-32e2-4504-848d-f9bbfc272cd0", - "Body" : "{\r\n \"name\": \"jsim95050b1d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"java's image gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"00000000-0000-0000-0000-000000000000-JSIM95050B1D\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "98bf5086-4f38-4338-a0f2-9b4c11cfc885", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fda57f7-9e7d-43b6-b21e-73ed3127f5d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "665", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:45:57 GMT", - "x-ms-correlation-request-id" : "150a80cf-fd5c-4fca-b4e3-76fd8baa1df0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024558Z:150a80cf-fd5c-4fca-b4e3-76fd8baa1df0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e20bb441-f0dc-4b7f-a8ea-f24d78068308?api-version=2022-03-03", - "x-ms-request-id" : "e20bb441-f0dc-4b7f-a8ea-f24d78068308", - "Body" : "{\r\n \"name\": \"SampleImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunch\"\r\n }\r\n ],\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3fda57f7-9e7d-43b6-b21e-73ed3127f5d4", - "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/capsOperations/e20bb441-f0dc-4b7f-a8ea-f24d78068308?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "748c1849-04b5-4a99-8363-c9f885876441" - }, - "Response" : { - "content-length" : "183", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c02655e1-8fe6-457c-b1d9-96954b57b94d", - "Date" : "Mon, 21 Nov 2022 02:46:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024629Z:c02655e1-8fe6-457c-b1d9-96954b57b94d", - "Expires" : "-1", - "x-ms-request-id" : "6338d216-573e-43b4-96f2-2fa92b558c94", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:45:57.3871477+00:00\",\r\n \"endTime\": \"2022-11-21T02:45:57.668426+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e20bb441-f0dc-4b7f-a8ea-f24d78068308\"\r\n}", - "x-ms-client-request-id" : "748c1849-04b5-4a99-8363-c9f885876441", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d56a0f9a-5535-47ad-a6d2-d4aedb91b58c" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7447a4a-fe6f-4c33-bf36-23abda9b0159", - "Date" : "Mon, 21 Nov 2022 02:46:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024630Z:c7447a4a-fe6f-4c33-bf36-23abda9b0159", - "Expires" : "-1", - "x-ms-request-id" : "596e1190-bf44-4f6a-b0ff-38ae79e02daf", - "Body" : "{\r\n \"name\": \"SampleImages\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunch\"\r\n }\r\n ],\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"JavaSDKTeam\",\r\n \"offer\": \"JDK\",\r\n \"sku\": \"Jdk-9\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "d56a0f9a-5535-47ad-a6d2-d4aedb91b58c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages/versions/0.0.1?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "760ad55f-3c1d-4e5f-b870-c8b960779ab2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1196", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 02:46:32 GMT", - "x-ms-correlation-request-id" : "2e792ce6-f872-4ea7-9fee-6c82a94977bb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024633Z:2e792ce6-f872-4ea7-9fee-6c82a94977bb", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "x-ms-request-id" : "3b40e24b-0007-4514-be17-5cc87da68c85", - "Body" : "{\r\n \"name\": \"0.0.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages/versions/0.0.1\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/images/img87569be431c\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false,\r\n \"allowDeletionOfReplicatedLocations\": false\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "760ad55f-3c1d-4e5f-b870-c8b960779ab2", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "231b635d-0761-4e53-842f-7c053aedede8" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1a53158-f4e8-4652-8880-c3b73bb83d8e", - "Date" : "Mon, 21 Nov 2022 02:47:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024734Z:e1a53158-f4e8-4652-8880-c3b73bb83d8e", - "Expires" : "-1", - "x-ms-request-id" : "5c6551d7-35af-4d6b-acc6-a8d53c276933", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "231b635d-0761-4e53-842f-7c053aedede8", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "67ae4526-98b3-4e4c-87f3-5272fdb97df8" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ecb7915-392c-425c-b18e-0012335f36a5", - "Date" : "Mon, 21 Nov 2022 02:48:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024834Z:4ecb7915-392c-425c-b18e-0012335f36a5", - "Expires" : "-1", - "x-ms-request-id" : "1b8b7be4-912f-4375-be5d-6758b5faad27", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "67ae4526-98b3-4e4c-87f3-5272fdb97df8", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ddd32ea5-b59c-40c5-8eb9-90ebab346e83" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94b353ed-ea40-4eef-b610-73cb05d5f566", - "Date" : "Mon, 21 Nov 2022 02:49:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T024935Z:94b353ed-ea40-4eef-b610-73cb05d5f566", - "Expires" : "-1", - "x-ms-request-id" : "09ab594a-a5c1-44a5-a44f-e34b4e7ad414", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "ddd32ea5-b59c-40c5-8eb9-90ebab346e83", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8589f074-9a4d-4c1d-b8db-8541cd5f4d69" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43b8c092-53cc-4f29-b01e-823b989b7d15", - "Date" : "Mon, 21 Nov 2022 02:50:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025036Z:43b8c092-53cc-4f29-b01e-823b989b7d15", - "Expires" : "-1", - "x-ms-request-id" : "65065e54-2434-4f80-aa37-3697e5d0f067", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "8589f074-9a4d-4c1d-b8db-8541cd5f4d69", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "90d7a2d9-76dd-4170-a87c-6fb835cd6474" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6b90024-cdf1-47f4-b0bf-3c32c13267f7", - "Date" : "Mon, 21 Nov 2022 02:51:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025137Z:b6b90024-cdf1-47f4-b0bf-3c32c13267f7", - "Expires" : "-1", - "x-ms-request-id" : "78160bb9-dea7-4495-a621-add061715088", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "90d7a2d9-76dd-4170-a87c-6fb835cd6474", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1b27bcb-a011-4dd0-b9b5-b3f5663b7bc7" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32dd7a57-aa5f-4432-982a-251e42d38923", - "Date" : "Mon, 21 Nov 2022 02:52:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025238Z:32dd7a57-aa5f-4432-982a-251e42d38923", - "Expires" : "-1", - "x-ms-request-id" : "c2303647-a66a-44a8-b634-bb38563082e2", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "f1b27bcb-a011-4dd0-b9b5-b3f5663b7bc7", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "19083142-b4f1-48d1-917e-b5d26f73b53c" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec04bfaa-c8e7-4713-b264-23aaa8324815", - "Date" : "Mon, 21 Nov 2022 02:53:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025339Z:ec04bfaa-c8e7-4713-b264-23aaa8324815", - "Expires" : "-1", - "x-ms-request-id" : "a29777ad-6023-4050-ab68-07bb33633ef4", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "19083142-b4f1-48d1-917e-b5d26f73b53c", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9530718e-ec69-455d-803b-f7220fd8a1cb" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "158b9c58-082d-4b04-ac8a-d4c8ce978768", - "Date" : "Mon, 21 Nov 2022 02:54:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025439Z:158b9c58-082d-4b04-ac8a-d4c8ce978768", - "Expires" : "-1", - "x-ms-request-id" : "a5d75235-7ad4-4acd-8603-9dbe810ae8d1", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "9530718e-ec69-455d-803b-f7220fd8a1cb", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "330f8fcc-133b-4379-afc7-07990b855bf2" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "665b1d50-dfb3-4410-964c-226d3821d921", - "Date" : "Mon, 21 Nov 2022 02:55:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025540Z:665b1d50-dfb3-4410-964c-226d3821d921", - "Expires" : "-1", - "x-ms-request-id" : "e2bee3ff-5bc4-4ddf-924e-9e4ade8dac89", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "330f8fcc-133b-4379-afc7-07990b855bf2", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "466b807f-ddeb-4aa5-bb9a-bed1024ca618" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77472785-bcfb-4edd-bd1b-e9fec8a31691", - "Date" : "Mon, 21 Nov 2022 02:56:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025641Z:77472785-bcfb-4edd-bd1b-e9fec8a31691", - "Expires" : "-1", - "x-ms-request-id" : "59556d80-6aad-42f9-8c4c-9cb56d46ca80", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "466b807f-ddeb-4aa5-bb9a-bed1024ca618", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "121a9c6d-345b-4899-b903-fd093f23c8b8" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "353cdc40-6a24-4558-b4c7-60e69549fd65", - "Date" : "Mon, 21 Nov 2022 02:57:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025742Z:353cdc40-6a24-4558-b4c7-60e69549fd65", - "Expires" : "-1", - "x-ms-request-id" : "1ee752ad-eb6a-4442-8d98-b18271c01cee", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "121a9c6d-345b-4899-b903-fd093f23c8b8", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "297ae60d-05e8-40b1-ba24-fec6517d0ba6" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "024a458e-179d-4d5e-9e67-d2770b021868", - "Date" : "Mon, 21 Nov 2022 02:58:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025842Z:024a458e-179d-4d5e-9e67-d2770b021868", - "Expires" : "-1", - "x-ms-request-id" : "892077bb-378d-470a-b6f5-88f75172b99b", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "297ae60d-05e8-40b1-ba24-fec6517d0ba6", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f72a303d-4325-4c16-ad95-db8e26ce565b" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38c1cb9d-381e-4fa5-8b35-f5597edd2959", - "Date" : "Mon, 21 Nov 2022 02:59:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T025943Z:38c1cb9d-381e-4fa5-8b35-f5597edd2959", - "Expires" : "-1", - "x-ms-request-id" : "318f5bbe-acb5-4861-8fb9-dfb63f4d1b2e", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "f72a303d-4325-4c16-ad95-db8e26ce565b", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8a8375f-8a0e-4246-b8af-0e4e9f27ddc2" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd8321b0-3748-43d0-925d-f3d7f1b67af8", - "Date" : "Mon, 21 Nov 2022 03:00:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030043Z:bd8321b0-3748-43d0-925d-f3d7f1b67af8", - "Expires" : "-1", - "x-ms-request-id" : "a3b5f2ec-aede-4888-acc2-ad60ce27a05a", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "c8a8375f-8a0e-4246-b8af-0e4e9f27ddc2", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "458267a2-12c1-4cfd-bd86-83333ec01e6f" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89d8062c-168a-4c8b-8f05-d8388d0f70a2", - "Date" : "Mon, 21 Nov 2022 03:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030144Z:89d8062c-168a-4c8b-8f05-d8388d0f70a2", - "Expires" : "-1", - "x-ms-request-id" : "44167ad7-4f22-4910-975a-ab767354bd27", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "458267a2-12c1-4cfd-bd86-83333ec01e6f", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25ae046a-b08c-4dc2-9253-711bf8974def" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23720d91-a3bb-4433-8b38-e2b8bc91dc54", - "Date" : "Mon, 21 Nov 2022 03:02:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4167", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030245Z:23720d91-a3bb-4433-8b38-e2b8bc91dc54", - "Expires" : "-1", - "x-ms-request-id" : "0b89c901-7823-4c6d-97df-c79209edc2d3", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "25ae046a-b08c-4dc2-9253-711bf8974def", - "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/capsOperations/3b40e24b-0007-4514-be17-5cc87da68c85?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "270d8300-8862-4793-8152-0995942cb551" - }, - "Response" : { - "content-length" : "184", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e3bdb10-d6c0-43af-be77-36fbef9c9568", - "Date" : "Mon, 21 Nov 2022 03:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4165", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030346Z:7e3bdb10-d6c0-43af-be77-36fbef9c9568", - "Expires" : "-1", - "x-ms-request-id" : "a7a2bbff-9abb-45db-a747-71360c51794c", - "Body" : "{\r\n \"startTime\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"endTime\": \"2022-11-21T03:03:18.9347944+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3b40e24b-0007-4514-be17-5cc87da68c85\"\r\n}", - "x-ms-client-request-id" : "270d8300-8862-4793-8152-0995942cb551", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages/versions/0.0.1?api-version=2022-03-03", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "769346e2-4ad2-4fa1-a803-1aa284b4b7f4" - }, - "Response" : { - "content-length" : "1570", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155,3c60d950-4ae3-4ca4-a3f0-8611a0eb2ce0_133076718962091155", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4aceae92-754e-43e9-861f-1e17db8e29b5", - "Date" : "Mon, 21 Nov 2022 03:03:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030347Z:4aceae92-754e-43e9-861f-1e17db8e29b5", - "Expires" : "-1", - "x-ms-request-id" : "04e1bf5e-12f1-44bd-b928-da5c876ad757", - "Body" : "{\r\n \"name\": \"0.0.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages/versions/0.0.1\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-11-21T02:46:32.1064593+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/images/img87569be431c\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false,\r\n \"allowDeletionOfReplicatedLocations\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "769346e2-4ad2-4fa1-a803-1aa284b4b7f4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "57c4b8b8-3224-43f5-9076-9930e921e918", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 03:03:51 GMT", - "x-ms-correlation-request-id" : "c8d9c2ae-19c1-4fad-b8f6-f7b255479bf0", - "x-ms-arm-service-request-id" : "23b52594-e71c-4357-8714-81c100a033ac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030351Z:c8d9c2ae-19c1-4fad-b8f6-f7b255479bf0", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/55b2731f-508e-4bf4-945d-83310efda6f9?api-version=2023-02-01", - "x-ms-request-id" : "55b2731f-508e-4bf4-945d-83310efda6f9", - "Body" : "{\r\n \"name\": \"vnet152893c869\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869\",\r\n \"etag\": \"W/\\\"290904c1-239a-4c4c-b0f7-ea5d4d09a5fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"78872c7c-7eec-45a2-9f98-65a2072fc11b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.1.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/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869/subnets/subnet1\",\r\n \"etag\": \"W/\\\"290904c1-239a-4c4c-b0f7-ea5d4d09a5fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.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" : "57c4b8b8-3224-43f5-9076-9930e921e918", - "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/westus2/operations/55b2731f-508e-4bf4-945d-83310efda6f9?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a2bd020-b0d0-4200-b226-aa13f8f98ce6" - }, - "Response" : { - "content-length" : "29", - "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" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d32ccd5f-c71c-4110-beb9-bc4526cc5073", - "Date" : "Mon, 21 Nov 2022 03:03:54 GMT", - "x-ms-arm-service-request-id" : "c82a6cb4-9f3c-429a-b708-3748d56b762d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030355Z:d32ccd5f-c71c-4110-beb9-bc4526cc5073", - "Expires" : "-1", - "x-ms-request-id" : "85190ff4-e23f-41ef-87a4-ad49941f78e0", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "1a2bd020-b0d0-4200-b226-aa13f8f98ce6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b1c598e-e3d8-4e5e-af97-21ef6baa15c7" - }, - "Response" : { - "content-length" : "1306", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fe88e6d-aecb-4cc7-97d7-af25d6e8409d", - "Date" : "Mon, 21 Nov 2022 03:03:54 GMT", - "x-ms-arm-service-request-id" : "bb51bd74-f478-4e02-bd83-a858d9902c7b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"24326e2e-541d-4a5f-b341-33658d1a5a69\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030355Z:2fe88e6d-aecb-4cc7-97d7-af25d6e8409d", - "Expires" : "-1", - "x-ms-request-id" : "b4a2c5f3-1edd-4e30-b863-de940a51d031", - "Body" : "{\r\n \"name\": \"vnet152893c869\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869\",\r\n \"etag\": \"W/\\\"24326e2e-541d-4a5f-b341-33658d1a5a69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78872c7c-7eec-45a2-9f98-65a2072fc11b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.1.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/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869/subnets/subnet1\",\r\n \"etag\": \"W/\\\"24326e2e-541d-4a5f-b341-33658d1a5a69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.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" : "6b1c598e-e3d8-4e5e-af97-21ef6baa15c7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/networkInterfaces/nic44975fe1c57?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f4b3df4-b9da-4b35-87cf-76c8b1e9508e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1784", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 03:04:00 GMT", - "x-ms-correlation-request-id" : "de09e828-4680-4527-be44-88f3c23ef442", - "x-ms-arm-service-request-id" : "816ba666-1881-43f6-817b-111d39d4c777", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030400Z:de09e828-4680-4527-be44-88f3c23ef442", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3cdbe791-732f-480d-b27c-03407394ed86?api-version=2023-02-01", - "x-ms-request-id" : "3cdbe791-732f-480d-b27c-03407394ed86", - "Body" : "{\r\n \"name\": \"nic44975fe1c57\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/networkInterfaces/nic44975fe1c57\",\r\n \"etag\": \"W/\\\"cabffaa7-81d8-4322-b2bf-6ac6d5ce6033\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"381e9493-82f6-4cb3-83cc-ccf57831ab87\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/networkInterfaces/nic44975fe1c57/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cabffaa7-81d8-4322-b2bf-6ac6d5ce6033\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/virtualNetworks/vnet152893c869/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\": \"pqwio4hmp0relh2ymwraol4bdd.xx.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\": \"westus2\",\r\n \"kind\": \"Regular\"\r\n}", - "x-ms-client-request-id" : "2f4b3df4-b9da-4b35-87cf-76c8b1e9508e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/virtualMachines/tlvm632959a3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a4f6220-8dc4-411e-9e69-b2e70d16b01b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2738", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 21 Nov 2022 03:04:03 GMT", - "x-ms-correlation-request-id" : "3f715a5e-a019-4304-afa0-4c35b55b7610", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030403Z:3f715a5e-a019-4304-afa0-4c35b55b7610", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "x-ms-request-id" : "c7717dfa-00fa-46d8-b439-4ad07820e43e", - "Body" : "{\r\n \"name\": \"tlvm632959a3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/virtualMachines/tlvm632959a3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\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\": \"b4477f03-eb47-46d7-86eb-da6aa94b5a83\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages/versions/0.0.1\",\r\n \"exactVersion\": \"0.0.1\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 11,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 11,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"tlvm632959a3\",\r\n \"adminUsername\": \"jvuser\",\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 \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/networkInterfaces/nic44975fe1c57\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-11-21T03:04:02.164039+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "1a4f6220-8dc4-411e-9e69-b2e70d16b01b", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "75d0d397-a89e-4ceb-946a-1c35388e61e3" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "830ab1b2-27a3-4d69-8f8d-e7817a0c5231", - "Date" : "Mon, 21 Nov 2022 03:04:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030414Z:830ab1b2-27a3-4d69-8f8d-e7817a0c5231", - "Expires" : "-1", - "x-ms-request-id" : "310a816a-c5fd-4c29-9ffa-b58bb5e03cc0", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "75d0d397-a89e-4ceb-946a-1c35388e61e3", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2bb25d0-5720-452d-b3c8-fbe47dd63fe3" - }, - "Response" : { - "content-length" : "134", - "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" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92ac2e27-7237-41db-bc0b-11b8d7b385ad", - "Date" : "Mon, 21 Nov 2022 03:05:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030504Z:92ac2e27-7237-41db-bc0b-11b8d7b385ad", - "Expires" : "-1", - "x-ms-request-id" : "acc3bd57-8f4c-4563-b805-7f811d5548dd", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "f2bb25d0-5720-452d-b3c8-fbe47dd63fe3", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea1e12d0-b1dd-4cef-a019-e6b93c7ef734" - }, - "Response" : { - "content-length" : "134", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48a29676-c629-42be-a06b-d469949e4517", - "Date" : "Mon, 21 Nov 2022 03:05:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030534Z:48a29676-c629-42be-a06b-d469949e4517", - "Expires" : "-1", - "x-ms-request-id" : "c012ca48-8218-455c-b8ed-4ee7c132bff6", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "ea1e12d0-b1dd-4cef-a019-e6b93c7ef734", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "44769227-8525-4ec0-b4a3-0d7e09d08497" - }, - "Response" : { - "content-length" : "134", - "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" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0ad1e36-63bc-4fe5-9843-4fc26809bf1b", - "Date" : "Mon, 21 Nov 2022 03:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030605Z:a0ad1e36-63bc-4fe5-9843-4fc26809bf1b", - "Expires" : "-1", - "x-ms-request-id" : "451becf4-6056-4cb1-983e-9f43f36a5005", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "44769227-8525-4ec0-b4a3-0d7e09d08497", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9e98427-737e-4588-b576-69e3b281366d" - }, - "Response" : { - "content-length" : "134", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4309b2cd-e43d-4245-9366-7453717d62c0", - "Date" : "Mon, 21 Nov 2022 03:06:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030635Z:4309b2cd-e43d-4245-9366-7453717d62c0", - "Expires" : "-1", - "x-ms-request-id" : "7c507a23-62e6-46d3-af69-f4a4f3d4801a", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "f9e98427-737e-4588-b576-69e3b281366d", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "47686d79-69c7-46b3-85f8-443efbce3f27" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b58e30d1-90d9-4416-8d33-d048c3d60676", - "Date" : "Mon, 21 Nov 2022 03:07:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030705Z:b58e30d1-90d9-4416-8d33-d048c3d60676", - "Expires" : "-1", - "x-ms-request-id" : "16604ad7-f9db-43ce-92ce-a9904ba58349", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "47686d79-69c7-46b3-85f8-443efbce3f27", - "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/westus2/operations/c7717dfa-00fa-46d8-b439-4ad07820e43e?p=05c75566-79c7-4bf4-bcdb-0638aab21249&api-version=2022-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e21e21e-94a0-4142-ae61-3428a5a51ec9" - }, - "Response" : { - "content-length" : "184", - "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" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed13b4c3-7ebe-4d0a-be5b-71d0980425ff", - "Date" : "Mon, 21 Nov 2022 03:07:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030735Z:ed13b4c3-7ebe-4d0a-be5b-71d0980425ff", - "Expires" : "-1", - "x-ms-request-id" : "5e4896bf-3710-455f-9b28-60b24dc6fd6c", - "Body" : "{\r\n \"startTime\": \"2022-11-21T03:04:02.0388185+00:00\",\r\n \"endTime\": \"2022-11-21T03:07:06.0084821+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c7717dfa-00fa-46d8-b439-4ad07820e43e\"\r\n}", - "x-ms-client-request-id" : "6e21e21e-94a0-4142-ae61-3428a5a51ec9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/virtualMachines/tlvm632959a3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bc6f08a-909e-4a1f-ad7e-366f15b593aa" - }, - "Response" : { - "content-length" : "3532", - "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" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd173df1-e323-4a86-81b4-d61baa1dcd55", - "Date" : "Mon, 21 Nov 2022 03:07:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030736Z:dd173df1-e323-4a86-81b4-d61baa1dcd55", - "Expires" : "-1", - "x-ms-request-id" : "7a75f8be-3cfe-4a0b-b2ca-105001dd1743", - "Body" : "{\r\n \"name\": \"tlvm632959a3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/virtualMachines/tlvm632959a3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\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\": \"b4477f03-eb47-46d7-86eb-da6aa94b5a83\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg0156757d9/providers/Microsoft.Compute/galleries/jsim95050b1d/images/SampleImages/versions/0.0.1\",\r\n \"exactVersion\": \"0.0.1\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"tlvm632959a3_OsDisk_1_3c454a3027d1467282175197f5aae2a2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/disks/tlvm632959a3_OsDisk_1_3c454a3027d1467282175197f5aae2a2\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"tlvm632959a3_lun_0_2_af8cd1172df640b1bf0410bafd0d5ed4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/disks/tlvm632959a3_lun_0_2_af8cd1172df640b1bf0410bafd0d5ed4\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 11,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"tlvm632959a3_lun_2_3_f5ece7f7c88744a0bb04fb8405188d8c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Compute/disks/tlvm632959a3_lun_2_3_f5ece7f7c88744a0bb04fb8405188d8c\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 11,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"tlvm632959a3\",\r\n \"adminUsername\": \"jvuser\",\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 \"securityProfile\": {\r\n \"uefiSettings\": {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305194008/providers/Microsoft.Network/networkInterfaces/nic44975fe1c57\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-11-21T03:04:02.164039+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "8bc6f08a-909e-4a1f-ad7e-366f15b593aa", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg0156757d9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "52b8f718-da0c-4cf5-aa8a-4208c00d2dbf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Mon, 21 Nov 2022 03:07:39 GMT", - "x-ms-correlation-request-id" : "7e44510e-ebb2-4361-851c-753e5d49b372", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030740Z:7e44510e-ebb2-4361-851c-753e5d49b372", - "Expires" : "-1", - "x-ms-request-id" : "7e44510e-ebb2-4361-851c-753e5d49b372", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzAxNTY3NTdEOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2021-01-01" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305194008?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.21.0-beta.1 (11.0.15.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "053e9388-83e3-4eb0-be19-332f5f8c2ab6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Mon, 21 Nov 2022 03:07:44 GMT", - "x-ms-correlation-request-id" : "a9739f13-5657-4c93-8965-c620b628c8a3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20221121T030745Z:a9739f13-5657-4c93-8965-c620b628c8a3", - "Expires" : "-1", - "x-ms-request-id" : "a9739f13-5657-4c93-8965-c620b628c8a3", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzMwNTE5NDAwOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2021-01-01" - }, - "Exception" : null - } ], - "variables" : [ "rg0156757d9", "rg305194008", "vm50336a06e", "nic5805551e7c9", "vnet93721d7add", "img87569be431c", "jsim95050b1d", "tlvm632959a3", "nic44975fe1c57", "vnet152893c869" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesInParallel.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesInParallel.json deleted file mode 100644 index 25f6519a2c7d..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesInParallel.json +++ /dev/null @@ -1,4487 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopd8069265c475?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "90dc7d8c-e229-415e-9e71-b3092bc8ed45", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "574ebe05-051b-4fb5-a4d2-9392cfaa2e4f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:574ebe05-051b-4fb5-a4d2-9392cfaa2e4f", - "Expires" : "-1", - "Content-Length" : "231", - "x-ms-request-id" : "574ebe05-051b-4fb5-a4d2-9392cfaa2e4f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475\",\"name\":\"rgcopd8069265c475\",\"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/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd399350bef?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec68570f-72d0-462a-90db-a0e4180203a8", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1193", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:12 GMT", - "x-ms-correlation-request-id" : "2f1cdcba-f078-4950-bd30-3f628264b407", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172213Z:2f1cdcba-f078-4950-bd30-3f628264b407", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "2af48351-e2a2-42d0-bd70-856d269b830b", - "Body" : "", - "x-ms-client-request-id" : "ec68570f-72d0-462a-90db-a0e4180203a8", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/2af48351-e2a2-42d0-bd70-856d269b830b?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd39952c1a5?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f44e4b0-8cd9-40e8-892b-01b3fa61785f", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1195", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "f8425100-cc56-4fe4-9138-08dd00e8b4ba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:f8425100-cc56-4fe4-9138-08dd00e8b4ba", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "d402b720-6632-4a2d-8dac-af4b63f59e55", - "Body" : "", - "x-ms-client-request-id" : "6f44e4b0-8cd9-40e8-892b-01b3fa61785f", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d402b720-6632-4a2d-8dac-af4b63f59e55?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd112707d03?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "292cae3a-2740-4b8d-aa92-01ad7ef2bb3f", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1192", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "11611e95-57da-4c1a-a34f-c3ecd9a17d25", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:11611e95-57da-4c1a-a34f-c3ecd9a17d25", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "41c6c1e5-8e09-452c-9a85-113f9e9ae147", - "Body" : "", - "x-ms-client-request-id" : "292cae3a-2740-4b8d-aa92-01ad7ef2bb3f", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/41c6c1e5-8e09-452c-9a85-113f9e9ae147?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7671876-2f2b-46c0-810e-e1abd9c49b95", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "578f46a7-8936-4f9f-8ee6-01945772228b", - "x-ms-arm-service-request-id" : "883e13ba-570c-4107-a7f9-5b003cd9e20b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:578f46a7-8936-4f9f-8ee6-01945772228b", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/989cf93b-8317-49cc-b78e-b97437c922b4?api-version=2023-02-01", - "x-ms-request-id" : "989cf93b-8317-49cc-b78e-b97437c922b4", - "Body" : "{\r\n \"name\": \"vm-08583d57-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-3\",\r\n \"etag\": \"W/\\\"68f2005d-cd7c-45bb-82fd-9e6c17370ac5\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c77254f5-e522-4114-9d71-81abd46686cb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip492889\",\r\n \"fqdn\": \"pip492889.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "a7671876-2f2b-46c0-810e-e1abd9c49b95", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a6f7d7d-d802-4f6a-b51d-ddb5683f9ffd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "822984c6-6df7-4452-b30b-67848ecd5745", - "x-ms-arm-service-request-id" : "b249a54c-5c5c-4319-9ec5-0a780ea034b4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:822984c6-6df7-4452-b30b-67848ecd5745", - "Expires" : "-1", - "Content-Length" : "1361", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/570ef0a2-3399-42ff-a2a4-74fae7c7ddb3?api-version=2023-02-01", - "x-ms-request-id" : "570ef0a2-3399-42ff-a2a4-74fae7c7ddb3", - "Body" : "{\r\n \"name\": \"vnetcopd-67414d0b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b\",\r\n \"etag\": \"W/\\\"a529c3b7-c4b0-4866-8832-dfb2aeff3515\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5dffd9e3-23db-45cb-b89f-541c044bba79\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a529c3b7-c4b0-4866-8832-dfb2aeff3515\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "9a6f7d7d-d802-4f6a-b51d-ddb5683f9ffd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d8daeb3-4614-4133-baa9-dbebb40aa53b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "87597593-f547-4b69-b23a-119521dc841a", - "x-ms-arm-service-request-id" : "71d237df-9cbf-4cbc-b383-8121dbc050b1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:87597593-f547-4b69-b23a-119521dc841a", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/90b01c23-9a43-4be8-a7ff-f019f85ce171?api-version=2023-02-01", - "x-ms-request-id" : "90b01c23-9a43-4be8-a7ff-f019f85ce171", - "Body" : "{\r\n \"name\": \"vm-08583d57-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-2\",\r\n \"etag\": \"W/\\\"1ac46b32-7048-4c32-b104-c59d8bb972f7\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"658f6fd4-2e2a-4052-95c2-d040b19197f7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip39652a\",\r\n \"fqdn\": \"pip39652a.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "3d8daeb3-4614-4133-baa9-dbebb40aa53b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9d7769b-8d4f-4c85-9269-3dc1af2909e3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "d51ec1f1-d8aa-4e0f-b3a2-612b609a1ce0", - "x-ms-arm-service-request-id" : "fe08e75d-ce19-4cd3-9d3b-67748e691e9a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:d51ec1f1-d8aa-4e0f-b3a2-612b609a1ce0", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a201fca-122c-4cf9-ac4b-0688bbbff26c?api-version=2023-02-01", - "x-ms-request-id" : "6a201fca-122c-4cf9-ac4b-0688bbbff26c", - "Body" : "{\r\n \"name\": \"vm-57884b79-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-1\",\r\n \"etag\": \"W/\\\"72a82b0e-33b8-4503-bcfd-9deda636caa7\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2ab0f6ae-7bbf-4fc3-a1ca-83ce6d1e3d69\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip107278\",\r\n \"fqdn\": \"pip107278.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "b9d7769b-8d4f-4c85-9269-3dc1af2909e3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3280b43-61ff-403b-9654-800a96a6b91d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "08a8d515-46f3-45dd-b09f-0de8b2afccc2", - "x-ms-arm-service-request-id" : "f6d1d32c-fc85-4599-bebf-338d8344a57f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:08a8d515-46f3-45dd-b09f-0de8b2afccc2", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4bfc0f29-4a08-406e-8a53-91c1117de6a1?api-version=2023-02-01", - "x-ms-request-id" : "4bfc0f29-4a08-406e-8a53-91c1117de6a1", - "Body" : "{\r\n \"name\": \"vm-54740eb8-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-2\",\r\n \"etag\": \"W/\\\"ed43ab29-fec3-4f1d-b85c-af193a24e23b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"17675909-c49c-447c-b389-4715f653b4c4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip34019f\",\r\n \"fqdn\": \"pip34019f.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "b3280b43-61ff-403b-9654-800a96a6b91d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "61512832-1624-4a9f-89ea-b4067ac636a5", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "7503dce6-b338-4d9f-b17e-4a9fa9df9dcb", - "x-ms-arm-service-request-id" : "c9d0c774-fd17-4dd4-9bc8-eb02cc587084", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:7503dce6-b338-4d9f-b17e-4a9fa9df9dcb", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e93149fe-5b13-4511-bc82-a7ffb7f0428e?api-version=2023-02-01", - "x-ms-request-id" : "e93149fe-5b13-4511-bc82-a7ffb7f0428e", - "Body" : "{\r\n \"name\": \"vm-08583d57-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-4\",\r\n \"etag\": \"W/\\\"993970ce-0ff2-4f62-80ae-0b3a4ae1abc8\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a37b7ccb-b950-4d4e-b1f6-d7abad7bf5dd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip58072a\",\r\n \"fqdn\": \"pip58072a.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "61512832-1624-4a9f-89ea-b4067ac636a5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd488744e19?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0afddb5-4fae-4304-909b-1cfaf4e4b9a0", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1192", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "3b7dbd62-9411-45f5-9690-eea281d15e8d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:3b7dbd62-9411-45f5-9690-eea281d15e8d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "a520e181-b6a2-47d2-bc1b-5eab3fb9d527", - "Body" : "", - "x-ms-client-request-id" : "c0afddb5-4fae-4304-909b-1cfaf4e4b9a0", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/a520e181-b6a2-47d2-bc1b-5eab3fb9d527?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff7f83f5-afd3-4a04-a5ec-f38a497f28bf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "58a94f3e-5b4e-4160-95dc-74f4b0264b78", - "x-ms-arm-service-request-id" : "ab685cae-7463-44a5-b834-057cae430f12", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:58a94f3e-5b4e-4160-95dc-74f4b0264b78", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/782a1b0a-c119-4411-bea8-7c1f38b0235b?api-version=2023-02-01", - "x-ms-request-id" : "782a1b0a-c119-4411-bea8-7c1f38b0235b", - "Body" : "{\r\n \"name\": \"vm-54740eb8-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-1\",\r\n \"etag\": \"W/\\\"183d4a79-50fe-401c-81ed-f0b13f18bc01\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"abd0df96-bb38-45cf-9526-1b53d38959c8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip539654\",\r\n \"fqdn\": \"pip539654.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "ff7f83f5-afd3-4a04-a5ec-f38a497f28bf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "714613ce-1c23-4e05-8061-b73cf3f5648e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "6e8c9310-f00e-4799-9b84-1f9b61c55bd5", - "x-ms-arm-service-request-id" : "63aa93b9-0a96-466c-b857-7caad6641b66", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:6e8c9310-f00e-4799-9b84-1f9b61c55bd5", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5d45a1ec-b585-4e51-b1de-f633a17f6424?api-version=2023-02-01", - "x-ms-request-id" : "5d45a1ec-b585-4e51-b1de-f633a17f6424", - "Body" : "{\r\n \"name\": \"vm-8810092c-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-1\",\r\n \"etag\": \"W/\\\"0b023719-6f4b-4128-ac74-564b105ffc68\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dd5c6a3b-972c-43de-9bca-5d98deea7532\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip08006e\",\r\n \"fqdn\": \"pip08006e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "714613ce-1c23-4e05-8061-b73cf3f5648e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cd9448d-3a8c-40ed-9cd8-2fae5fa49e51", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "2dd74f20-04da-4274-bc97-04fdfcdbbc47", - "x-ms-arm-service-request-id" : "2ffbb4e4-9c83-4c06-b334-b46164f23346", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:2dd74f20-04da-4274-bc97-04fdfcdbbc47", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/bf88e485-e480-4be4-8708-c504f13d67e2?api-version=2023-02-01", - "x-ms-request-id" : "bf88e485-e480-4be4-8708-c504f13d67e2", - "Body" : "{\r\n \"name\": \"vm-54740eb8-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-3\",\r\n \"etag\": \"W/\\\"88a7d5d9-9808-4b86-ba25-cbc018060d0b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b2ae73ad-e575-4070-8e56-7a8d7e270c49\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip047047\",\r\n \"fqdn\": \"pip047047.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "2cd9448d-3a8c-40ed-9cd8-2fae5fa49e51", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "116e1d20-6716-4cb9-9b87-b99982d3390f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "afc8e4fc-d74d-4373-8c2b-ac4e476efd22", - "x-ms-arm-service-request-id" : "830eb814-9949-4b01-818b-2d1e311c5724", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:afc8e4fc-d74d-4373-8c2b-ac4e476efd22", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/16782894-29f3-4d99-ada3-f14da42d7632?api-version=2023-02-01", - "x-ms-request-id" : "16782894-29f3-4d99-ada3-f14da42d7632", - "Body" : "{\r\n \"name\": \"vm-8810092c-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-3\",\r\n \"etag\": \"W/\\\"df232080-efc6-4f1e-bb68-34576c7ef584\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"71e8f9fb-0f63-4056-9cbe-c17268add540\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip87238f\",\r\n \"fqdn\": \"pip87238f.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "116e1d20-6716-4cb9-9b87-b99982d3390f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "be8a0e11-d981-43a3-9baa-50adf81d3326", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "41960143-d664-42eb-b439-27e9e3064dbc", - "x-ms-arm-service-request-id" : "c847ba32-7317-45da-a80a-33a8727a4c0b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:41960143-d664-42eb-b439-27e9e3064dbc", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/21619bb7-c2fd-41bd-b96d-484f619f4a79?api-version=2023-02-01", - "x-ms-request-id" : "21619bb7-c2fd-41bd-b96d-484f619f4a79", - "Body" : "{\r\n \"name\": \"vm-57884b79-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-4\",\r\n \"etag\": \"W/\\\"43ad355f-c627-40eb-9089-a74c5b616e78\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"af77b81b-4be7-4270-b36d-eb0832f464c2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip348480\",\r\n \"fqdn\": \"pip348480.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "be8a0e11-d981-43a3-9baa-50adf81d3326", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "253cc5c6-e186-43b4-af0e-4e6a949a9d18", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "7296157e-a376-4db9-9762-e084b9103e5d", - "x-ms-arm-service-request-id" : "f52dbf44-e83f-4347-8d13-add7e9d0e9be", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:7296157e-a376-4db9-9762-e084b9103e5d", - "Expires" : "-1", - "Content-Length" : "1362", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5ae7eef-12e3-4e4d-875f-42b95bc479ea?api-version=2023-02-01", - "x-ms-request-id" : "c5ae7eef-12e3-4e4d-875f-42b95bc479ea", - "Body" : "{\r\n \"name\": \"vnetcopd-88632d02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02\",\r\n \"etag\": \"W/\\\"d4ceb679-42f8-4641-9cec-cc08e4dc1b64\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a88d1ce3-c9a7-4d1f-b9f6-00a264d7bdc8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d4ceb679-42f8-4641-9cec-cc08e4dc1b64\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "253cc5c6-e186-43b4-af0e-4e6a949a9d18", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b97c9261-3609-404b-8182-6ecd05e42938", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "8be0f82f-bd06-4849-96d6-09c703f1cd5c", - "x-ms-arm-service-request-id" : "b0886a43-39a0-4aa1-a39b-128b8d4f532b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:8be0f82f-bd06-4849-96d6-09c703f1cd5c", - "Expires" : "-1", - "Content-Length" : "1362", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/6a929d5e-afbb-4160-95ae-15bdfb6aa947?api-version=2023-02-01", - "x-ms-request-id" : "6a929d5e-afbb-4160-95ae-15bdfb6aa947", - "Body" : "{\r\n \"name\": \"vnetcopd-1376459f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f\",\r\n \"etag\": \"W/\\\"a7ef1423-33ec-4830-b448-f920179e75f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e020f021-1aa1-48dd-97de-1b0c1741f0a2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a7ef1423-33ec-4830-b448-f920179e75f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "b97c9261-3609-404b-8182-6ecd05e42938", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "115e7904-8307-484f-8ac3-e9743811f563", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "13fd2bb4-637b-4f69-b891-f920ae4cb5d4", - "x-ms-arm-service-request-id" : "83985727-7957-4a84-97ac-145ca9163793", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:13fd2bb4-637b-4f69-b891-f920ae4cb5d4", - "Expires" : "-1", - "Content-Length" : "1361", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4ae05a29-8b2b-4207-add7-a6251d273de0?api-version=2023-02-01", - "x-ms-request-id" : "4ae05a29-8b2b-4207-add7-a6251d273de0", - "Body" : "{\r\n \"name\": \"vnetcopd-04629881\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881\",\r\n \"etag\": \"W/\\\"545207d8-a229-4cd7-97da-cc62f54e8565\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"db2f95d9-6d02-4c3f-a4f8-21a12fd11519\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881/subnets/subnet1\",\r\n \"etag\": \"W/\\\"545207d8-a229-4cd7-97da-cc62f54e8565\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "115e7904-8307-484f-8ac3-e9743811f563", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6e548ef-4926-4620-b5b0-a8136685aeb0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "1961800e-6a40-4148-8b18-c51fc0a0118b", - "x-ms-arm-service-request-id" : "ecc5fbbf-fc67-4d4a-8f5e-2137e5d6ea86", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:1961800e-6a40-4148-8b18-c51fc0a0118b", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/808aa2a3-683a-41cf-a2ce-85ff869b4102?api-version=2023-02-01", - "x-ms-request-id" : "808aa2a3-683a-41cf-a2ce-85ff869b4102", - "Body" : "{\r\n \"name\": \"vm-57884b79-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-3\",\r\n \"etag\": \"W/\\\"f51bb522-e52f-46ed-a78d-7b3f81f5774b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9a66e477-f733-4117-9d0a-600ecdd64e65\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip118343\",\r\n \"fqdn\": \"pip118343.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "d6e548ef-4926-4620-b5b0-a8136685aeb0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c7fb332-c6a7-4f06-8786-b7ba9f40acdd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "41a39d1f-9d0a-4a7c-a851-3b9c12e96d89", - "x-ms-arm-service-request-id" : "69adb774-6237-4d29-a4ba-a49c9c9b3be1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:41a39d1f-9d0a-4a7c-a851-3b9c12e96d89", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/b544c837-c91a-4d61-9d36-03d7e84eb138?api-version=2023-02-01", - "x-ms-request-id" : "b544c837-c91a-4d61-9d36-03d7e84eb138", - "Body" : "{\r\n \"name\": \"vm-54740eb8-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-4\",\r\n \"etag\": \"W/\\\"b7c9ab55-b872-4224-a853-a521c756c1d9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"751995d3-876e-4a12-b2c1-d2ff7f45fda5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip984498\",\r\n \"fqdn\": \"pip984498.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "7c7fb332-c6a7-4f06-8786-b7ba9f40acdd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "600f4a59-95fd-42d8-b8c9-f012415f990a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "84336537-cb73-464a-8801-84e6537b622a", - "x-ms-arm-service-request-id" : "287f7371-a15a-42e1-b614-141e0e660b2e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:84336537-cb73-464a-8801-84e6537b622a", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1478bf26-6253-4c87-b2ed-434a114af8e1?api-version=2023-02-01", - "x-ms-request-id" : "1478bf26-6253-4c87-b2ed-434a114af8e1", - "Body" : "{\r\n \"name\": \"vm-8810092c-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-4\",\r\n \"etag\": \"W/\\\"288d3276-ac95-4e12-8772-2732d06a556a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b05b1935-c3ee-4c01-ac33-c6788b816ce4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip672884\",\r\n \"fqdn\": \"pip672884.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "600f4a59-95fd-42d8-b8c9-f012415f990a", - "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/westus2/operations/989cf93b-8317-49cc-b78e-b97437c922b4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d01f32d1-7507-48b4-9050-20cf3cbdaea1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "027d2599-ad64-43e0-a84f-d0cd9d34b12d", - "x-ms-arm-service-request-id" : "5fcac268-5936-4847-a1ff-bd12363d316e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:027d2599-ad64-43e0-a84f-d0cd9d34b12d", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "114b0ded-36e3-40ed-a782-054c4dfa596e", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "d01f32d1-7507-48b4-9050-20cf3cbdaea1", - "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/westus2/operations/90b01c23-9a43-4be8-a7ff-f019f85ce171?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "30cf3cad-2c24-4efe-8c07-ac641997ed0e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "a8768c5e-17fc-4e91-954d-eb7c5be61ee6", - "x-ms-arm-service-request-id" : "0f90bc27-5d1b-4e93-bdd0-ba91b65fb711", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:a8768c5e-17fc-4e91-954d-eb7c5be61ee6", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "727331bb-d3f6-42d3-884a-900ce3fd7af9", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "30cf3cad-2c24-4efe-8c07-ac641997ed0e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "846385bd-73fe-4df0-a372-3ecd35b47d64", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "52cb8dd9-5ec3-44bc-b9a3-3003cec924d9", - "x-ms-arm-service-request-id" : "a67a8377-a715-44eb-8ffb-32fd647e76af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:52cb8dd9-5ec3-44bc-b9a3-3003cec924d9", - "Expires" : "-1", - "Content-Length" : "780", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b313c4b-6cea-4427-9479-5133c3161638?api-version=2023-02-01", - "x-ms-request-id" : "8b313c4b-6cea-4427-9479-5133c3161638", - "Body" : "{\r\n \"name\": \"vm-08583d57-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-1\",\r\n \"etag\": \"W/\\\"d0ca8333-7a1e-488f-b8af-0d1243ef0c16\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c9ccaaea-927a-41aa-8058-b1faacef8df8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip792432\",\r\n \"fqdn\": \"pip792432.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "846385bd-73fe-4df0-a372-3ecd35b47d64", - "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/6a201fca-122c-4cf9-ac4b-0688bbbff26c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf3b0180-e98d-4b78-b22a-8de83ab13e41" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "cd14130f-ef8b-4e35-a82a-1a66869f02c4", - "x-ms-arm-service-request-id" : "35e53fc6-d4b2-4d26-a8e9-adb5854fea5c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:cd14130f-ef8b-4e35-a82a-1a66869f02c4", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "ccf53a3b-8b0e-45db-aeb7-9edfccf03e10", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "cf3b0180-e98d-4b78-b22a-8de83ab13e41", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6f1b78b-8fca-4b18-9597-1763494cc8c8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "3eb19c52-295f-42f3-9f1a-2efc3c3dc19c", - "x-ms-arm-service-request-id" : "16e1a582-35da-4859-88a3-01cf22c095ce", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"727a5351-2739-4830-a146-a7021d12d950\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:3eb19c52-295f-42f3-9f1a-2efc3c3dc19c", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "1632d3d9-c9f5-4ddf-9a25-5d2fefaee944", - "Body" : "{\r\n \"name\": \"vm-08583d57-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-3\",\r\n \"etag\": \"W/\\\"727a5351-2739-4830-a146-a7021d12d950\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c77254f5-e522-4114-9d71-81abd46686cb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip492889\",\r\n \"fqdn\": \"pip492889.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "f6f1b78b-8fca-4b18-9597-1763494cc8c8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed9e679d-bb29-4ab1-9a54-eec2b4b1bfcb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "413983a5-a513-4fe1-981e-0ac2d9ae8a29", - "x-ms-arm-service-request-id" : "ed3effa3-c776-4045-a3a9-16cbf9526629", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"27a4e813-f451-4757-8760-87e3111023ce\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:413983a5-a513-4fe1-981e-0ac2d9ae8a29", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "9d04b7a4-6884-47bc-8e6c-a9a63577467d", - "Body" : "{\r\n \"name\": \"vm-08583d57-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-2\",\r\n \"etag\": \"W/\\\"27a4e813-f451-4757-8760-87e3111023ce\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"658f6fd4-2e2a-4052-95c2-d040b19197f7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip39652a\",\r\n \"fqdn\": \"pip39652a.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "ed9e679d-bb29-4ab1-9a54-eec2b4b1bfcb", - "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/eastus2/operations/4bfc0f29-4a08-406e-8a53-91c1117de6a1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "53e12adb-fbde-4f28-b47b-ca5ad1b0dd70" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "18e451e2-7567-4145-9c40-c2ea19db3d0e", - "x-ms-arm-service-request-id" : "db7105de-7052-4e57-b9b3-66d65c56858d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:18e451e2-7567-4145-9c40-c2ea19db3d0e", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "0571bbae-2a57-40c2-9b0b-8b0b6d5f5a86", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "53e12adb-fbde-4f28-b47b-ca5ad1b0dd70", - "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/westus2/operations/e93149fe-5b13-4511-bc82-a7ffb7f0428e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b7e805a-94cd-4c61-b390-3d9a34c5adc5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "9e5da67e-3192-4678-bb48-eee296f7f847", - "x-ms-arm-service-request-id" : "6f398b25-e6b1-4bbc-bc5a-39c3e1ae5409", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:9e5da67e-3192-4678-bb48-eee296f7f847", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "9b806ca5-bddf-472a-9a4d-dcb92afac5a6", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "1b7e805a-94cd-4c61-b390-3d9a34c5adc5", - "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/eastus2/operations/782a1b0a-c119-4411-bea8-7c1f38b0235b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "804fe202-1721-47a0-8e67-89cc226f1658" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "6cecf598-644c-429b-b543-42e72f80a2fb", - "x-ms-arm-service-request-id" : "f517b049-4e47-4f03-932e-f36652d9a255", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:6cecf598-644c-429b-b543-42e72f80a2fb", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "72f81232-a567-40dc-800b-7f0a245c1746", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "804fe202-1721-47a0-8e67-89cc226f1658", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e6506ed-b830-4edf-aff1-77ffe61f3317" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "cca4a73b-053e-44fc-9522-76177204b4c6", - "x-ms-arm-service-request-id" : "f4d048ce-8e03-4ce5-ada2-3a2fcc40b62c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"a0f628ee-f515-4938-b1ed-178e87bf1ea9\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:cca4a73b-053e-44fc-9522-76177204b4c6", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "ec602467-bc74-4516-80a3-d0c1b455687b", - "Body" : "{\r\n \"name\": \"vm-57884b79-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-1\",\r\n \"etag\": \"W/\\\"a0f628ee-f515-4938-b1ed-178e87bf1ea9\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ab0f6ae-7bbf-4fc3-a1ca-83ce6d1e3d69\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip107278\",\r\n \"fqdn\": \"pip107278.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "5e6506ed-b830-4edf-aff1-77ffe61f3317", - "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/eastus/operations/5d45a1ec-b585-4e51-b1de-f633a17f6424?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "130b3b11-a066-4b50-baf3-ea991f1dd5c8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "92507fa1-0092-471f-b2a7-9818ae772289", - "x-ms-arm-service-request-id" : "d440033f-1a6e-4231-97a9-683ca9b38a03", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:92507fa1-0092-471f-b2a7-9818ae772289", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "6203ba00-89ac-480d-a076-125aee8c4158", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "130b3b11-a066-4b50-baf3-ea991f1dd5c8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a5b3050-8b17-47ee-bbf9-bf2393c33d8a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "54aa9a99-fff3-4286-9744-3e8084b5ffeb", - "x-ms-arm-service-request-id" : "89e78b4f-307e-4890-9689-a1e1eb341959", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"169f4e02-501d-428c-9942-98fa86f80e8c\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:54aa9a99-fff3-4286-9744-3e8084b5ffeb", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "1885e93c-fb43-442f-946c-de5e95654fb0", - "Body" : "{\r\n \"name\": \"vm-08583d57-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-4\",\r\n \"etag\": \"W/\\\"169f4e02-501d-428c-9942-98fa86f80e8c\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a37b7ccb-b950-4d4e-b1f6-d7abad7bf5dd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip58072a\",\r\n \"fqdn\": \"pip58072a.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "0a5b3050-8b17-47ee-bbf9-bf2393c33d8a", - "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/eastus2/operations/bf88e485-e480-4be4-8708-c504f13d67e2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d6a5b95-9c17-4013-b699-7892e6df567c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "f63898a4-405e-4972-a4fd-34e50823a9f1", - "x-ms-arm-service-request-id" : "615f5341-260b-4566-9c4d-5fdc371c247f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:f63898a4-405e-4972-a4fd-34e50823a9f1", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "eb072217-0939-4eb4-9f22-eea2140b3bc1", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "1d6a5b95-9c17-4013-b699-7892e6df567c", - "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/eastus/operations/16782894-29f3-4d99-ada3-f14da42d7632?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecb52e25-c53a-4e95-aaff-f4bcee6ab0b7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "88777dc2-02a3-4ec5-bf92-e1acbd87c6c5", - "x-ms-arm-service-request-id" : "8cf99ae7-7dbc-4730-a018-43e327070038", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:88777dc2-02a3-4ec5-bf92-e1acbd87c6c5", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "3b34f821-8b26-47a2-81d2-7c9ee7ec4fb7", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "ecb52e25-c53a-4e95-aaff-f4bcee6ab0b7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f9eb5d7-11f4-4749-bb2b-afcc7fd2d23d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "20bd401d-7af4-4d24-bae1-2761f5e30d2e", - "x-ms-arm-service-request-id" : "6850c440-896f-46bf-89b8-cc111f23737f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"462694d9-81a0-42a4-839b-5f3e455f2896\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:20bd401d-7af4-4d24-bae1-2761f5e30d2e", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "92a7ac6b-c6e2-4127-8a09-7b80e730e963", - "Body" : "{\r\n \"name\": \"vm-54740eb8-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-2\",\r\n \"etag\": \"W/\\\"462694d9-81a0-42a4-839b-5f3e455f2896\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17675909-c49c-447c-b389-4715f653b4c4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip34019f\",\r\n \"fqdn\": \"pip34019f.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "9f9eb5d7-11f4-4749-bb2b-afcc7fd2d23d", - "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/21619bb7-c2fd-41bd-b96d-484f619f4a79?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0a6753d-c7fd-4347-88ab-e8609d97703a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "40572e1e-37dd-42d7-ab54-84a32efbd61e", - "x-ms-arm-service-request-id" : "72fc995b-3fdd-41e6-9e38-ca51f5c41713", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:40572e1e-37dd-42d7-ab54-84a32efbd61e", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "ad00ab55-17b2-4c5c-9a64-028158cf1c26", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "b0a6753d-c7fd-4347-88ab-e8609d97703a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad3b780b-8c0a-4f7a-809c-5d250fd48961" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "4779e627-bfe7-4e87-a307-c45ec298cbc2", - "x-ms-arm-service-request-id" : "d20d006e-5f10-4105-9682-2bbfc83d8acd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"29a4357d-7471-4b82-ab6c-6a8ed03d7e75\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:4779e627-bfe7-4e87-a307-c45ec298cbc2", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "f1435267-9536-40fb-8588-fdd7bc173166", - "Body" : "{\r\n \"name\": \"vm-54740eb8-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-1\",\r\n \"etag\": \"W/\\\"29a4357d-7471-4b82-ab6c-6a8ed03d7e75\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"abd0df96-bb38-45cf-9526-1b53d38959c8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip539654\",\r\n \"fqdn\": \"pip539654.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "ad3b780b-8c0a-4f7a-809c-5d250fd48961", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a428af7a-d30a-4e1f-87c8-4fd4fb71310b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "cd2f4cff-bed9-428d-a366-39158bd41e1b", - "x-ms-arm-service-request-id" : "161181c0-b49c-4792-a37e-ce1362bc6ab1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"be4a19fe-14bf-433a-8cec-dd429a99c72f\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:cd2f4cff-bed9-428d-a366-39158bd41e1b", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "393e1e01-3cc6-4e5f-8488-d1b6696e853a", - "Body" : "{\r\n \"name\": \"vm-54740eb8-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-3\",\r\n \"etag\": \"W/\\\"be4a19fe-14bf-433a-8cec-dd429a99c72f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2ae73ad-e575-4070-8e56-7a8d7e270c49\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip047047\",\r\n \"fqdn\": \"pip047047.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "a428af7a-d30a-4e1f-87c8-4fd4fb71310b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba3be098-308a-42f3-8d9d-c0649f2063e2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "83b90139-8340-45a0-853f-1cf80f1a59f0", - "x-ms-arm-service-request-id" : "38ea0504-4e23-4994-90d0-5363da8ad07c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"62a70136-f097-40ea-9f8b-e3ffea2e3cb6\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:83b90139-8340-45a0-853f-1cf80f1a59f0", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "8d877e26-d93f-4163-b496-1609a7a36049", - "Body" : "{\r\n \"name\": \"vm-8810092c-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-1\",\r\n \"etag\": \"W/\\\"62a70136-f097-40ea-9f8b-e3ffea2e3cb6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd5c6a3b-972c-43de-9bca-5d98deea7532\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip08006e\",\r\n \"fqdn\": \"pip08006e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "ba3be098-308a-42f3-8d9d-c0649f2063e2", - "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/808aa2a3-683a-41cf-a2ce-85ff869b4102?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d8424d5-a95d-4ae9-89d6-7c32935d4c20" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "0da4e30f-ad41-4044-87c6-72f94a054f3f", - "x-ms-arm-service-request-id" : "61aafb76-000a-4ce3-ae2d-e02945790c35", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:0da4e30f-ad41-4044-87c6-72f94a054f3f", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "4544c900-8d78-43d1-a7ed-b8e19de791ce", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "9d8424d5-a95d-4ae9-89d6-7c32935d4c20", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db436e9a-eb55-4011-94a0-7e143133e254" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "82e147b5-3228-4dba-aa29-2c3e8112a525", - "x-ms-arm-service-request-id" : "db224e5a-32ea-49d3-8d66-8a5e6069a277", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"927b4f9a-9a27-4325-bc9f-ffe1e64e0436\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:82e147b5-3228-4dba-aa29-2c3e8112a525", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "81aed198-764c-493d-baba-3f4984f33667", - "Body" : "{\r\n \"name\": \"vm-57884b79-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-4\",\r\n \"etag\": \"W/\\\"927b4f9a-9a27-4325-bc9f-ffe1e64e0436\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af77b81b-4be7-4270-b36d-eb0832f464c2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip348480\",\r\n \"fqdn\": \"pip348480.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "db436e9a-eb55-4011-94a0-7e143133e254", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c900dd91-a878-45cc-9f93-9aab66107e79" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "bb973a86-e389-40e7-881a-6183fc0caba9", - "x-ms-arm-service-request-id" : "b6a8886f-da69-46b4-a7f6-23584e145af4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"fce48663-f9f9-4e0e-bc67-8b4c7ce71a3f\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:bb973a86-e389-40e7-881a-6183fc0caba9", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "266059e2-faa5-43d5-8b79-8a021085351e", - "Body" : "{\r\n \"name\": \"vm-8810092c-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-3\",\r\n \"etag\": \"W/\\\"fce48663-f9f9-4e0e-bc67-8b4c7ce71a3f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"71e8f9fb-0f63-4056-9cbe-c17268add540\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip87238f\",\r\n \"fqdn\": \"pip87238f.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "c900dd91-a878-45cc-9f93-9aab66107e79", - "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/eastus2/operations/b544c837-c91a-4d61-9d36-03d7e84eb138?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfff864a-2e13-46bc-9b10-65d4e433e252" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "46cb2543-dfd5-41d6-8e50-7a725733dedd", - "x-ms-arm-service-request-id" : "442e88e4-7c7c-4a9e-835c-23a3f40d05e5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:46cb2543-dfd5-41d6-8e50-7a725733dedd", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "7d709c17-da28-4a6f-9ee6-dd651f442912", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "cfff864a-2e13-46bc-9b10-65d4e433e252", - "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/eastus/operations/1478bf26-6253-4c87-b2ed-434a114af8e1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad1a7eb6-fcde-4a81-bfd8-21061ad9e957" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "5734a329-66f8-4d1f-bebe-6d717d137973", - "x-ms-arm-service-request-id" : "3daae82c-2881-48e8-9b9a-48bd4344e914", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:5734a329-66f8-4d1f-bebe-6d717d137973", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "74ea8c85-0e11-45b3-9513-6cb9c3b4c778", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "ad1a7eb6-fcde-4a81-bfd8-21061ad9e957", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "80762bb4-02ac-40e1-8097-48108517ed5e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "6dd374f7-f1c3-4b16-a9b8-4cbd216feca1", - "x-ms-arm-service-request-id" : "b478cc18-8eda-4673-906c-f8d127d842bd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"0e3a3d8b-19f7-4683-a2b1-16bc39749adc\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:6dd374f7-f1c3-4b16-a9b8-4cbd216feca1", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "3dbd98e6-8198-44e0-b26f-00154f8c080c", - "Body" : "{\r\n \"name\": \"vm-57884b79-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-3\",\r\n \"etag\": \"W/\\\"0e3a3d8b-19f7-4683-a2b1-16bc39749adc\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a66e477-f733-4117-9d0a-600ecdd64e65\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip118343\",\r\n \"fqdn\": \"pip118343.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "80762bb4-02ac-40e1-8097-48108517ed5e", - "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/westus2/operations/8b313c4b-6cea-4427-9479-5133c3161638?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "52825778-e4a6-4cab-9f5a-19465d5ea0f2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "4ad320ae-d6c4-45db-925a-185da5c68775", - "x-ms-arm-service-request-id" : "77072dac-15ad-424e-957c-53c4a8104eda", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:4ad320ae-d6c4-45db-925a-185da5c68775", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "37c2eb9f-92be-474e-93ce-fbe815abae67", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "52825778-e4a6-4cab-9f5a-19465d5ea0f2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "479c7f2f-61ee-40c6-a354-a035da0d76e1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "902211a1-5194-420d-ad7e-70ae49403ee3", - "x-ms-arm-service-request-id" : "2ecb4b73-914d-4e7b-a754-3ff68e72da6e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"7782ff10-9d72-4b01-ba83-1d997efca518\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:902211a1-5194-420d-ad7e-70ae49403ee3", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "18c99518-ed2e-4a2a-b330-01bed8700ce5", - "Body" : "{\r\n \"name\": \"vm-54740eb8-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-4\",\r\n \"etag\": \"W/\\\"7782ff10-9d72-4b01-ba83-1d997efca518\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"751995d3-876e-4a12-b2c1-d2ff7f45fda5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip984498\",\r\n \"fqdn\": \"pip984498.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "479c7f2f-61ee-40c6-a354-a035da0d76e1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c30bd4e1-5b1d-4fdd-8815-d4e6709e42c5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "497ec172-63cf-4723-b84c-c968f5be670f", - "x-ms-arm-service-request-id" : "2f4a1914-d480-4c17-bde4-3549fcc6d850", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"6980f993-90fd-499f-b91e-b12b64c4cc01\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:497ec172-63cf-4723-b84c-c968f5be670f", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "0b4e77b9-99ff-4bfc-9821-d86146e5a49d", - "Body" : "{\r\n \"name\": \"vm-8810092c-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-4\",\r\n \"etag\": \"W/\\\"6980f993-90fd-499f-b91e-b12b64c4cc01\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b05b1935-c3ee-4c01-ac33-c6788b816ce4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip672884\",\r\n \"fqdn\": \"pip672884.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "c30bd4e1-5b1d-4fdd-8815-d4e6709e42c5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f45eeb1-a3c6-4566-998a-438e43200703" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "19d84f0f-5a1c-4886-abe0-b4483642e754", - "x-ms-arm-service-request-id" : "728c5785-120f-47c4-be63-dfdcde21b548", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"4ad16fad-57e9-41ee-889a-898ab8a5c4ff\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:19d84f0f-5a1c-4886-abe0-b4483642e754", - "Expires" : "-1", - "Content-Length" : "781", - "x-ms-request-id" : "50783cbd-9fdd-455b-9398-5b09998b9390", - "Body" : "{\r\n \"name\": \"vm-08583d57-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-1\",\r\n \"etag\": \"W/\\\"4ad16fad-57e9-41ee-889a-898ab8a5c4ff\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c9ccaaea-927a-41aa-8058-b1faacef8df8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip792432\",\r\n \"fqdn\": \"pip792432.westus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "6f45eeb1-a3c6-4566-998a-438e43200703", - "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/570ef0a2-3399-42ff-a2a4-74fae7c7ddb3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "285b34cd-0f31-484c-9950-6928dabf1c2f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "5d65243c-f340-49f9-bb76-547bf3190bff", - "x-ms-arm-service-request-id" : "817b463b-d060-4691-88c9-98906b31d1f3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:5d65243c-f340-49f9-bb76-547bf3190bff", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "2ee89455-186a-459c-9a52-f54e1819185a", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "285b34cd-0f31-484c-9950-6928dabf1c2f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "82d90dff-3b33-47e0-a6bb-5f4c8181484e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "8a4e3769-2b06-4906-8ba3-63c2c01f6fdd", - "x-ms-arm-service-request-id" : "5fd17fad-dc79-49a1-90d8-76197170ef79", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"bd8b6dc4-8f4d-4687-b0c0-4f679f8cc715\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:8a4e3769-2b06-4906-8ba3-63c2c01f6fdd", - "Expires" : "-1", - "Content-Length" : "1363", - "x-ms-request-id" : "864a0a0f-c109-443d-bdb7-03aece4b87bb", - "Body" : "{\r\n \"name\": \"vnetcopd-67414d0b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b\",\r\n \"etag\": \"W/\\\"bd8b6dc4-8f4d-4687-b0c0-4f679f8cc715\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5dffd9e3-23db-45cb-b89f-541c044bba79\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bd8b6dc4-8f4d-4687-b0c0-4f679f8cc715\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "82d90dff-3b33-47e0-a6bb-5f4c8181484e", - "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/westus2/operations/c5ae7eef-12e3-4e4d-875f-42b95bc479ea?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ff027d5-3dae-483a-8e9b-8db702c31c96" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "806aabf9-aac8-4c51-80f8-54b3b723ec64", - "x-ms-arm-service-request-id" : "99cc66f2-36a5-4133-82cc-bc98a8a34da8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:806aabf9-aac8-4c51-80f8-54b3b723ec64", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "a2ab2b9d-3310-4a92-ab76-e98889dc9b32", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "7ff027d5-3dae-483a-8e9b-8db702c31c96", - "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/eastus2/operations/6a929d5e-afbb-4160-95ae-15bdfb6aa947?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "69ed6f02-0a6b-4b03-b51b-90db63e32490" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "7d5884d7-0e58-4b27-8d07-ec93a590c3d9", - "x-ms-arm-service-request-id" : "5a607599-1564-417b-af47-b8bdb03b289f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:7d5884d7-0e58-4b27-8d07-ec93a590c3d9", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "02005cdf-0ba1-4ae0-80f6-39e42bc5812f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "69ed6f02-0a6b-4b03-b51b-90db63e32490", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5237bb0-694a-4640-acda-185ba4f941df" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "0e8260b9-5872-4b52-aef8-4bc8b729c35f", - "x-ms-arm-service-request-id" : "2fc582fd-da0c-408a-9ee4-130300484afd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"4d4b8f40-1906-4b45-969e-8b58604da803\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:0e8260b9-5872-4b52-aef8-4bc8b729c35f", - "Expires" : "-1", - "Content-Length" : "1364", - "x-ms-request-id" : "dc689630-8cef-4102-9570-3952cb740e08", - "Body" : "{\r\n \"name\": \"vnetcopd-88632d02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02\",\r\n \"etag\": \"W/\\\"4d4b8f40-1906-4b45-969e-8b58604da803\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a88d1ce3-c9a7-4d1f-b9f6-00a264d7bdc8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4d4b8f40-1906-4b45-969e-8b58604da803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "b5237bb0-694a-4640-acda-185ba4f941df", - "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/eastus/operations/4ae05a29-8b2b-4207-add7-a6251d273de0?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b183c6a4-901b-41f5-9174-65778fcefb69" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "7928145f-c3ef-4191-a65f-9da967eb4083", - "x-ms-arm-service-request-id" : "278b2d81-c77b-4211-9ca6-eb49aca456d4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:7928145f-c3ef-4191-a65f-9da967eb4083", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "bda86214-48eb-4044-893d-012f0388342a", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "b183c6a4-901b-41f5-9174-65778fcefb69", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "36b72950-6055-4bef-b107-4673944eb96e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "7891a4c8-4a07-4670-8256-a09d55f820b6", - "x-ms-arm-service-request-id" : "31c9e9e0-4185-4272-8df8-a50937735751", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"0408710d-183f-4b3d-9352-ca6a6c2d73f7\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:7891a4c8-4a07-4670-8256-a09d55f820b6", - "Expires" : "-1", - "Content-Length" : "1364", - "x-ms-request-id" : "f9e8ca03-76e9-4d4a-b1d8-191e775836d2", - "Body" : "{\r\n \"name\": \"vnetcopd-1376459f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f\",\r\n \"etag\": \"W/\\\"0408710d-183f-4b3d-9352-ca6a6c2d73f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e020f021-1aa1-48dd-97de-1b0c1741f0a2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0408710d-183f-4b3d-9352-ca6a6c2d73f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "36b72950-6055-4bef-b107-4673944eb96e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc73f3c1-59b9-4fcc-8b7e-7ec8baa3ee47" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "85bddc50-56ec-4e81-8efc-330ebe9642d0", - "x-ms-arm-service-request-id" : "b65717a3-480b-4613-96ff-28e27ce20a41", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"6ee31a08-6f33-4e73-a626-ba200eb16af6\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:85bddc50-56ec-4e81-8efc-330ebe9642d0", - "Expires" : "-1", - "Content-Length" : "1363", - "x-ms-request-id" : "3dbe591e-91c2-47cf-b66a-7431e916d288", - "Body" : "{\r\n \"name\": \"vnetcopd-04629881\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881\",\r\n \"etag\": \"W/\\\"6ee31a08-6f33-4e73-a626-ba200eb16af6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db2f95d9-6d02-4c3f-a4f8-21a12fd11519\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6ee31a08-6f33-4e73-a626-ba200eb16af6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "dc73f3c1-59b9-4fcc-8b7e-7ec8baa3ee47", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic18314925cd8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9230948-395c-4a35-87ee-f82b53b2760f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:21 GMT", - "x-ms-correlation-request-id" : "eb8eda09-957f-4d47-9f39-90a0acbfe859", - "x-ms-arm-service-request-id" : "2b7d5a3d-9b80-492c-96ef-9074dfe01a90", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:eb8eda09-957f-4d47-9f39-90a0acbfe859", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb569aed-27de-46ed-8b97-390812182db7?api-version=2023-02-01", - "x-ms-request-id" : "bb569aed-27de-46ed-8b97-390812182db7", - "Body" : "{\r\n \"name\": \"nic18314925cd8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic18314925cd8\",\r\n \"etag\": \"W/\\\"2aef9164-5476-4b3a-9739-9f5f3167a5c0\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04dc97fc-abf7-4f75-834e-6a0158cd8e1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic18314925cd8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2aef9164-5476-4b3a-9739-9f5f3167a5c0\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b/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\": \"2pm54xo1epfuloe5kqoais30pb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "b9230948-395c-4a35-87ee-f82b53b2760f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic575147d7392?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1e4f0e1-e909-462c-9584-116e485756cf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:21 GMT", - "x-ms-correlation-request-id" : "7e32e1d9-c479-4c74-b252-f86033d72b48", - "x-ms-arm-service-request-id" : "33f1f1f9-9ea5-43e6-9253-da0503650863", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:7e32e1d9-c479-4c74-b252-f86033d72b48", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bfd25d66-743f-4730-b7d2-5c9ba0e882e1?api-version=2023-02-01", - "x-ms-request-id" : "bfd25d66-743f-4730-b7d2-5c9ba0e882e1", - "Body" : "{\r\n \"name\": \"nic575147d7392\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic575147d7392\",\r\n \"etag\": \"W/\\\"1145ef93-1e9b-42d5-8f75-36efd324bdcd\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51fe67ef-9b90-430f-a4d8-76f38e11fadd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic575147d7392/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1145ef93-1e9b-42d5-8f75-36efd324bdcd\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02/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\": \"2moi1kfhzepu1opwacrgjv33za.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "f1e4f0e1-e909-462c-9584-116e485756cf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7489229d97a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "54ca6948-079b-4e39-a15b-c19b412c5695", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "15cc2dd9-8557-470c-a19a-155e03663122", - "x-ms-arm-service-request-id" : "8dcec097-640a-4bd7-bb63-76c24a1b58ee", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:15cc2dd9-8557-470c-a19a-155e03663122", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/42145f24-3c8b-479b-8712-c95bc1cf88cf?api-version=2023-02-01", - "x-ms-request-id" : "42145f24-3c8b-479b-8712-c95bc1cf88cf", - "Body" : "{\r\n \"name\": \"nic7489229d97a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7489229d97a\",\r\n \"etag\": \"W/\\\"49418002-ad36-4421-af76-987d9920b80d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5893dad-cd65-4662-9e84-12914aafee36\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7489229d97a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"49418002-ad36-4421-af76-987d9920b80d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b/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\": \"2pm54xo1epfuloe5kqoais30pb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "54ca6948-079b-4e39-a15b-c19b412c5695", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic344954b0af2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c891676-de8e-4186-8620-01c6d47e6d81", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "c4c043d4-8137-4d42-b23b-c88479fc7906", - "x-ms-arm-service-request-id" : "373ce06b-e4cf-4d30-86cd-dc51b145e06f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:c4c043d4-8137-4d42-b23b-c88479fc7906", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d48ef333-8824-4cde-a147-9d2ec0cf0762?api-version=2023-02-01", - "x-ms-request-id" : "d48ef333-8824-4cde-a147-9d2ec0cf0762", - "Body" : "{\r\n \"name\": \"nic344954b0af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic344954b0af2\",\r\n \"etag\": \"W/\\\"e69e99ca-d830-4bf6-b0fb-832da3c28150\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"463346e0-1da1-44f6-91d4-6af41254a866\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic344954b0af2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e69e99ca-d830-4bf6-b0fb-832da3c28150\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02/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\": \"2moi1kfhzepu1opwacrgjv33za.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "0c891676-de8e-4186-8620-01c6d47e6d81", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic9175206265c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fcbb2b2-f286-4f5c-a435-f37d39184019", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "21794382-d899-4198-ba3b-056471113aed", - "x-ms-arm-service-request-id" : "355047a1-fa87-4e22-8a02-8ca447830458", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:21794382-d899-4198-ba3b-056471113aed", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/542c245d-80c4-4269-b300-0b93184d509e?api-version=2023-02-01", - "x-ms-request-id" : "542c245d-80c4-4269-b300-0b93184d509e", - "Body" : "{\r\n \"name\": \"nic9175206265c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic9175206265c\",\r\n \"etag\": \"W/\\\"c7f26a2e-325c-4f2b-9866-075db70a0542\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c9c16184-1bb7-49d0-a9cb-c468420210e0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic9175206265c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c7f26a2e-325c-4f2b-9866-075db70a0542\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881/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\": \"1gks5wycnu5uzjhyegqs5uivdb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "6fcbb2b2-f286-4f5c-a435-f37d39184019", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic88220ae02b7?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "60147954-8384-44fa-bc93-81a4c2fd0e64", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "51e6822e-8046-40c9-ad37-680d2445cd94", - "x-ms-arm-service-request-id" : "5d488f06-1563-4ae1-9c5e-b72b5d51ed3c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:51e6822e-8046-40c9-ad37-680d2445cd94", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e5cbf03a-e16a-4bcf-859d-4220c3785cbc?api-version=2023-02-01", - "x-ms-request-id" : "e5cbf03a-e16a-4bcf-859d-4220c3785cbc", - "Body" : "{\r\n \"name\": \"nic88220ae02b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic88220ae02b7\",\r\n \"etag\": \"W/\\\"20a24385-66ca-4601-9d98-4984141b8338\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"54d2cfa9-d46a-4e3b-b95d-341398c6b2ab\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic88220ae02b7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"20a24385-66ca-4601-9d98-4984141b8338\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881/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\": \"1gks5wycnu5uzjhyegqs5uivdb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "60147954-8384-44fa-bc93-81a4c2fd0e64", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7097018e5ea?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f04c5bd0-faf1-4306-bcbf-b1039c9a0b55", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "5fff8428-0d86-4c35-9d40-77733fa793f4", - "x-ms-arm-service-request-id" : "ff438f61-4ea6-47c9-b870-ccc034b3c27b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:5fff8428-0d86-4c35-9d40-77733fa793f4", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cecad29c-5f82-4c57-b92f-f3ba8651e0cd?api-version=2023-02-01", - "x-ms-request-id" : "cecad29c-5f82-4c57-b92f-f3ba8651e0cd", - "Body" : "{\r\n \"name\": \"nic7097018e5ea\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7097018e5ea\",\r\n \"etag\": \"W/\\\"e7576b67-6d0c-47c2-9d12-fe2771fd82f1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ee87ab3-3e5b-4fdb-bb0f-eacf05b409c5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7097018e5ea/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e7576b67-6d0c-47c2-9d12-fe2771fd82f1\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b/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\": \"2pm54xo1epfuloe5kqoais30pb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "f04c5bd0-faf1-4306-bcbf-b1039c9a0b55", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic95436bc842e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c179bad2-82d3-4d49-81a0-ef3121858d86", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "85348a42-4ecb-49f6-8c1d-39b8c4641bdc", - "x-ms-arm-service-request-id" : "8578e19e-86ae-42ab-aa29-56e357720bd5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:85348a42-4ecb-49f6-8c1d-39b8c4641bdc", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/f44ebb10-c53b-457d-b1bb-0af2ae9331e4?api-version=2023-02-01", - "x-ms-request-id" : "f44ebb10-c53b-457d-b1bb-0af2ae9331e4", - "Body" : "{\r\n \"name\": \"nic95436bc842e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic95436bc842e\",\r\n \"etag\": \"W/\\\"4c1f3cdb-27aa-4182-9c67-fc2a0e848fd9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40b3b2fa-808d-4a06-ae2c-dc963b53f36a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic95436bc842e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4c1f3cdb-27aa-4182-9c67-fc2a0e848fd9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f/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\": \"ehycbyfbdlourf44dmgboqpquc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "c179bad2-82d3-4d49-81a0-ef3121858d86", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic57546933fa6?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9a7a7be-22da-4dde-98ef-eb7eaa74debf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "d49dfac2-e219-4937-9153-61aee5cf651e", - "x-ms-arm-service-request-id" : "887fc684-bf27-4159-b84e-2a83d7117f9f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:d49dfac2-e219-4937-9153-61aee5cf651e", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5feede18-96fe-4e02-8cf6-818bddb934b3?api-version=2023-02-01", - "x-ms-request-id" : "5feede18-96fe-4e02-8cf6-818bddb934b3", - "Body" : "{\r\n \"name\": \"nic57546933fa6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic57546933fa6\",\r\n \"etag\": \"W/\\\"74dec847-5679-4194-ac01-39336b1ca943\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"731d38ef-5cab-4356-bef6-21190a5ba233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic57546933fa6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"74dec847-5679-4194-ac01-39336b1ca943\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f/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\": \"ehycbyfbdlourf44dmgboqpquc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "d9a7a7be-22da-4dde-98ef-eb7eaa74debf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic45090d22b53?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0365405-f805-41ab-a7c0-4eb645c0f3e3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "efe08e9c-471d-4db9-82f7-1c28af21cd1d", - "x-ms-arm-service-request-id" : "12db8c85-3aa8-40d5-b368-50bd82d9094a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:efe08e9c-471d-4db9-82f7-1c28af21cd1d", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/44a82629-5759-4537-8619-d67021fef2af?api-version=2023-02-01", - "x-ms-request-id" : "44a82629-5759-4537-8619-d67021fef2af", - "Body" : "{\r\n \"name\": \"nic45090d22b53\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic45090d22b53\",\r\n \"etag\": \"W/\\\"854448a1-4e5a-482e-b4a3-046d60762258\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2739b38c-f5da-4720-8843-323006697cd9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic45090d22b53/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"854448a1-4e5a-482e-b4a3-046d60762258\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f/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\": \"ehycbyfbdlourf44dmgboqpquc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "c0365405-f805-41ab-a7c0-4eb645c0f3e3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic182247be0f2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9762b41-9dac-43c7-ba52-f11009bdcd4d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "3a8604c0-93df-4b7c-9a4e-fe8f7294a15a", - "x-ms-arm-service-request-id" : "985b842d-6a96-46d3-9437-026c61b36971", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:3a8604c0-93df-4b7c-9a4e-fe8f7294a15a", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/10a4227d-a070-4c4d-ad18-bacfa113f8b0?api-version=2023-02-01", - "x-ms-request-id" : "10a4227d-a070-4c4d-ad18-bacfa113f8b0", - "Body" : "{\r\n \"name\": \"nic182247be0f2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic182247be0f2\",\r\n \"etag\": \"W/\\\"ef08721a-de88-4b64-bf6e-e4d8acbd107e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b092deb-fdf4-4ac6-90c4-b057065ce494\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic182247be0f2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ef08721a-de88-4b64-bf6e-e4d8acbd107e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881/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\": \"1gks5wycnu5uzjhyegqs5uivdb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "a9762b41-9dac-43c7-ba52-f11009bdcd4d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic67174639621?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a087096-6cad-4f67-bb5d-78aaea1aa4bb", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:27 GMT", - "x-ms-correlation-request-id" : "96ac748b-fa48-4ff9-b144-85820bfc975d", - "x-ms-arm-service-request-id" : "158e6ddd-fae1-4bbf-8944-a52abcfc9133", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:96ac748b-fa48-4ff9-b144-85820bfc975d", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b8a88193-4acd-4b91-b1cb-2fe3ed75cdec?api-version=2023-02-01", - "x-ms-request-id" : "b8a88193-4acd-4b91-b1cb-2fe3ed75cdec", - "Body" : "{\r\n \"name\": \"nic67174639621\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic67174639621\",\r\n \"etag\": \"W/\\\"68b4a8eb-5bdd-4773-9678-222dd2bee05b\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2bfff916-2dfa-446c-811d-f4f1c18c13c3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic67174639621/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"68b4a8eb-5bdd-4773-9678-222dd2bee05b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02/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\": \"2moi1kfhzepu1opwacrgjv33za.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "4a087096-6cad-4f67-bb5d-78aaea1aa4bb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic4437624fcb3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e4459f9-3221-46e5-9b8a-42189f466211", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "3205cccd-5c5e-4423-85a9-b3270788bee6", - "x-ms-arm-service-request-id" : "87b16470-6b60-4361-bd9e-7d5cf71c9ac0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:3205cccd-5c5e-4423-85a9-b3270788bee6", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3f75f84d-3665-4ee5-812f-8824a6c437c5?api-version=2023-02-01", - "x-ms-request-id" : "3f75f84d-3665-4ee5-812f-8824a6c437c5", - "Body" : "{\r\n \"name\": \"nic4437624fcb3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic4437624fcb3\",\r\n \"etag\": \"W/\\\"d726a85c-1b8e-48de-bf4c-d1649909d02c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06589d59-bd17-4316-8d84-d630993f3ba6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic4437624fcb3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d726a85c-1b8e-48de-bf4c-d1649909d02c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-54740eb8-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-1376459f/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\": \"ehycbyfbdlourf44dmgboqpquc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "1e4459f9-3221-46e5-9b8a-42189f466211", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic748123efe21?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "afdb2624-a6d1-418b-9815-12fdc5bc7248", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:25 GMT", - "x-ms-correlation-request-id" : "0e13c6b9-58bc-42ac-bfa6-8e902526b540", - "x-ms-arm-service-request-id" : "25bade0c-7545-44d3-a79c-68358eb3d21e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172225Z:0e13c6b9-58bc-42ac-bfa6-8e902526b540", - "Expires" : "-1", - "Content-Length" : "1890", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/991466fb-3a07-45f3-96d1-fc3d73424344?api-version=2023-02-01", - "x-ms-request-id" : "991466fb-3a07-45f3-96d1-fc3d73424344", - "Body" : "{\r\n \"name\": \"nic748123efe21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic748123efe21\",\r\n \"etag\": \"W/\\\"2b4705f1-53bc-4c3e-9c5b-59d637d35569\\\"\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2db670a0-b292-497d-b574-2218b559cb07\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic748123efe21/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2b4705f1-53bc-4c3e-9c5b-59d637d35569\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-08583d57-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-88632d02/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\": \"2moi1kfhzepu1opwacrgjv33za.xx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "afdb2624-a6d1-418b-9815-12fdc5bc7248", - "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/2af48351-e2a2-42d0-bd70-856d269b830b?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c97b696b-9576-49d9-83ba-0fe962296fb5" - }, - "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" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:30 GMT", - "x-ms-correlation-request-id" : "d78b1201-6614-4391-9163-62d592d3d933", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172230Z:d78b1201-6614-4391-9163-62d592d3d933", - "Expires" : "-1", - "Content-Length" : "1195", - "x-ms-request-id" : "58318262-6ee2-4c59-90ed-2161fc360752", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd399350bef\",\"name\":\"stgcopd399350bef\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.1582235Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.1582235Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:13.0176046Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd399350bef.blob.core.windows.net/\",\"queue\":\"https://stgcopd399350bef.queue.core.windows.net/\",\"table\":\"https://stgcopd399350bef.table.core.windows.net/\",\"file\":\"https://stgcopd399350bef.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "c97b696b-9576-49d9-83ba-0fe962296fb5", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd399350bef?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0aaffacf-803e-405a-9ed4-d0a9deda3c1f", - "Content-Type" : "application/json" - }, - "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" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:30 GMT", - "x-ms-correlation-request-id" : "947ed9ac-09e9-4892-8a76-3feb93bd1345", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172231Z:947ed9ac-09e9-4892-8a76-3feb93bd1345", - "Expires" : "-1", - "Content-Length" : "1195", - "x-ms-request-id" : "b817993a-b039-4d08-8cbb-2b7781d0593f", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd399350bef\",\"name\":\"stgcopd399350bef\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.1582235Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.1582235Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:13.0176046Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd399350bef.blob.core.windows.net/\",\"queue\":\"https://stgcopd399350bef.queue.core.windows.net/\",\"table\":\"https://stgcopd399350bef.table.core.windows.net/\",\"file\":\"https://stgcopd399350bef.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "0aaffacf-803e-405a-9ed4-d0a9deda3c1f", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d402b720-6632-4a2d-8dac-af4b63f59e55?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a473f444-067b-4b6b-aba2-8ebd41e5b771" - }, - "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" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:31 GMT", - "x-ms-correlation-request-id" : "d68af640-9fd6-4a20-9745-9bee71b1f7fd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172231Z:d68af640-9fd6-4a20-9745-9bee71b1f7fd", - "Expires" : "-1", - "Content-Length" : "1195", - "x-ms-request-id" : "9788aa95-22ab-4f69-9237-8a8afbff8b4c", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd39952c1a5\",\"name\":\"stgcopd39952c1a5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8665710Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8665710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:13.7728292Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd39952c1a5.blob.core.windows.net/\",\"queue\":\"https://stgcopd39952c1a5.queue.core.windows.net/\",\"table\":\"https://stgcopd39952c1a5.table.core.windows.net/\",\"file\":\"https://stgcopd39952c1a5.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "a473f444-067b-4b6b-aba2-8ebd41e5b771", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd39952c1a5?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "48d9dfc0-4b48-4aee-997c-3a456b9d7fdf", - "Content-Type" : "application/json" - }, - "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" : "11977", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:31 GMT", - "x-ms-correlation-request-id" : "002827e8-998e-4e78-8792-6c73d823deb2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172232Z:002827e8-998e-4e78-8792-6c73d823deb2", - "Expires" : "-1", - "Content-Length" : "1195", - "x-ms-request-id" : "6074707f-e6bf-4a8b-9e3e-7b42e568f1c6", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd39952c1a5\",\"name\":\"stgcopd39952c1a5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8665710Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8665710Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:13.7728292Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd39952c1a5.blob.core.windows.net/\",\"queue\":\"https://stgcopd39952c1a5.queue.core.windows.net/\",\"table\":\"https://stgcopd39952c1a5.table.core.windows.net/\",\"file\":\"https://stgcopd39952c1a5.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "48d9dfc0-4b48-4aee-997c-3a456b9d7fdf", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/41c6c1e5-8e09-452c-9a85-113f9e9ae147?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6291c7c5-68ae-4737-b4ef-8975907895e1" - }, - "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" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:31 GMT", - "x-ms-correlation-request-id" : "3608661a-4a8f-45d2-87cc-98cda9e37217", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172232Z:3608661a-4a8f-45d2-87cc-98cda9e37217", - "Expires" : "-1", - "Content-Length" : "1200", - "x-ms-request-id" : "6a533cc3-059e-40b9-abcb-b92db3b12da7", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd112707d03\",\"name\":\"stgcopd112707d03\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.2292758Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.2292758Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:14.1198934Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd112707d03.blob.core.windows.net/\",\"queue\":\"https://stgcopd112707d03.queue.core.windows.net/\",\"table\":\"https://stgcopd112707d03.table.core.windows.net/\",\"file\":\"https://stgcopd112707d03.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "6291c7c5-68ae-4737-b4ef-8975907895e1", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/a520e181-b6a2-47d2-bc1b-5eab3fb9d527?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c7e8553-4c59-4011-9aaa-dbefcd2926cc" - }, - "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" : "11990", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "89f7c8ae-39f4-4559-8d25-ea5202783d3c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:89f7c8ae-39f4-4559-8d25-ea5202783d3c", - "Expires" : "-1", - "Content-Length" : "1204", - "x-ms-request-id" : "cfe87d0a-42c2-4490-a122-6b619a64902f", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd488744e19\",\"name\":\"stgcopd488744e19\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.3388100Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.3388100Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:14.2762744Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd488744e19.blob.core.windows.net/\",\"queue\":\"https://stgcopd488744e19.queue.core.windows.net/\",\"table\":\"https://stgcopd488744e19.table.core.windows.net/\",\"file\":\"https://stgcopd488744e19.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westcentralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "7c7e8553-4c59-4011-9aaa-dbefcd2926cc", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd488744e19?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3806054-2cf4-4dd7-8747-392e3fa3e6fd", - "Content-Type" : "application/json" - }, - "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" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "014399e8-22ea-4c4b-a653-022364dc816f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:014399e8-22ea-4c4b-a653-022364dc816f", - "Expires" : "-1", - "Content-Length" : "1204", - "x-ms-request-id" : "a0ab8e44-16ed-4c27-bcd5-57bbc6608412", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd488744e19\",\"name\":\"stgcopd488744e19\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.3388100Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.3388100Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:14.2762744Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd488744e19.blob.core.windows.net/\",\"queue\":\"https://stgcopd488744e19.queue.core.windows.net/\",\"table\":\"https://stgcopd488744e19.table.core.windows.net/\",\"file\":\"https://stgcopd488744e19.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westcentralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "a3806054-2cf4-4dd7-8747-392e3fa3e6fd", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd112707d03?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec1c970f-7d06-4ce6-8a3e-71dc153b2f0a", - "Content-Type" : "application/json" - }, - "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" : "11976", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "3273b943-b4fa-44f8-a6b2-3f745783a137", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:3273b943-b4fa-44f8-a6b2-3f745783a137", - "Expires" : "-1", - "Content-Length" : "1200", - "x-ms-request-id" : "318206e0-5192-4bd3-8012-6c2b2a98de00", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Storage/storageAccounts/stgcopd112707d03\",\"name\":\"stgcopd112707d03\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.2292758Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:14.2292758Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:14.1198934Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd112707d03.blob.core.windows.net/\",\"queue\":\"https://stgcopd112707d03.queue.core.windows.net/\",\"table\":\"https://stgcopd112707d03.table.core.windows.net/\",\"file\":\"https://stgcopd112707d03.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "ec1c970f-7d06-4ce6-8a3e-71dc153b2f0a", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e76ac635-cc49-4283-a531-be48132bc72c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:34 GMT", - "x-ms-correlation-request-id" : "106e63db-f4f3-49bb-80bc-2697b66fcc55", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;742,Microsoft.Compute/PutVM30Min;3718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172234Z:106e63db-f4f3-49bb-80bc-2697b66fcc55", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc3d646c-8a1d-4b01-b39d-eb89cad9e346?api-version=2021-11-01", - "x-ms-request-id" : "fc3d646c-8a1d-4b01-b39d-eb89cad9e346", - "Body" : "{\r\n \"name\": \"vm-8810092c-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"84e5b03b-d5aa-42b5-9efa-7a3f290b52df\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic9175206265c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "e76ac635-cc49-4283-a531-be48132bc72c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec8ebc09-07d5-454e-860b-3f54a2914ee4", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:34 GMT", - "x-ms-correlation-request-id" : "7f49bbe5-9b00-4061-8af9-7d64057a3e00", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;741,Microsoft.Compute/PutVM30Min;3717", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172235Z:7f49bbe5-9b00-4061-8af9-7d64057a3e00", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7030498b-e43b-4334-853d-95449f70921f?api-version=2021-11-01", - "x-ms-request-id" : "7030498b-e43b-4334-853d-95449f70921f", - "Body" : "{\r\n \"name\": \"vm-8810092c-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2f908ce6-901e-40ad-b844-7c8a61a73fec\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic182247be0f2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "ec8ebc09-07d5-454e-860b-3f54a2914ee4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "220465c0-d063-48b3-b3af-47a34cbd88b9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:34 GMT", - "x-ms-correlation-request-id" : "7d23441f-db34-427f-8702-0d157c01f101", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;739,Microsoft.Compute/PutVM30Min;3714", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172235Z:7d23441f-db34-427f-8702-0d157c01f101", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/47f45257-5ec0-4013-9753-95aa048e4e88?api-version=2021-11-01", - "x-ms-request-id" : "47f45257-5ec0-4013-9753-95aa048e4e88", - "Body" : "{\r\n \"name\": \"vm-8810092c-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b45b4002-e34b-4b11-8b12-5fce5b431024\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic88220ae02b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "220465c0-d063-48b3-b3af-47a34cbd88b9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b76a2ae4-d28f-4774-ba0f-8d43c4d21736", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:35 GMT", - "x-ms-correlation-request-id" : "21402f6d-8d36-49f8-800b-28f3f480ec1b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1188", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172235Z:21402f6d-8d36-49f8-800b-28f3f480ec1b", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9a3b8d01-19ab-4b78-bfc3-bf31f993cce7?api-version=2021-11-01", - "x-ms-request-id" : "9a3b8d01-19ab-4b78-bfc3-bf31f993cce7", - "Body" : "{\r\n \"name\": \"vm-57884b79-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"afdfc339-4a6b-4dd3-93f0-8630154058c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7489229d97a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "b76a2ae4-d28f-4774-ba0f-8d43c4d21736", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7e27509-8daf-487e-a4d6-2721b6d222f7", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:35 GMT", - "x-ms-correlation-request-id" : "928e1756-1553-4ab7-a1df-e36bc832371e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1187", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:928e1756-1553-4ab7-a1df-e36bc832371e", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9503108b-24cd-4b38-a3ee-62473bc59e55?api-version=2021-11-01", - "x-ms-request-id" : "9503108b-24cd-4b38-a3ee-62473bc59e55", - "Body" : "{\r\n \"name\": \"vm-57884b79-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7ac04eb8-d7a5-4ebf-a39a-a873208b6ee4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7097018e5ea\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "b7e27509-8daf-487e-a4d6-2721b6d222f7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "11d2b39a-3eb0-4f2a-a256-39bf31907409", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "e8df12d7-54d8-4d2f-ba08-65a2703c828a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1186", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:e8df12d7-54d8-4d2f-ba08-65a2703c828a", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/51b52a5e-cb37-4191-a99f-dcd882c9516f?api-version=2021-11-01", - "x-ms-request-id" : "51b52a5e-cb37-4191-a99f-dcd882c9516f", - "Body" : "{\r\n \"name\": \"vm-57884b79-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"15d8a0ae-b5b5-4e55-b105-b614b8987652\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic18314925cd8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "11d2b39a-3eb0-4f2a-a256-39bf31907409", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b537794-7c10-410e-90d0-dd5c83a963b2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "4127b78a-4f1b-4d88-9650-6a384407b425", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:4127b78a-4f1b-4d88-9650-6a384407b425", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/f0666ab1-011b-4ee8-b154-d48472ef85c4?api-version=2021-11-01", - "x-ms-request-id" : "f0666ab1-011b-4ee8-b154-d48472ef85c4", - "Body" : "{\r\n \"name\": \"vm-08583d57-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0d14bc94-7c0c-4617-8174-70bb07b66e9c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic748123efe21\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "7b537794-7c10-410e-90d0-dd5c83a963b2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f902f958-1c77-4574-93bc-98677c92da98", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "3896db09-c2ef-468f-822d-3323594332b4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;722,Microsoft.Compute/PutVM30Min;3616", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:3896db09-c2ef-468f-822d-3323594332b4", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f26d87aa-9f6c-4fac-979a-9ee0a37eee21?api-version=2021-11-01", - "x-ms-request-id" : "f26d87aa-9f6c-4fac-979a-9ee0a37eee21", - "Body" : "{\r\n \"name\": \"vm-54740eb8-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3abd9c75-b590-4932-8b08-dce73879c88f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic57546933fa6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "f902f958-1c77-4574-93bc-98677c92da98", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f88d348-10f7-4d0e-b863-a0c82e689c37", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "b3858255-8ed3-48e3-906e-dc5ce2639fc5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:b3858255-8ed3-48e3-906e-dc5ce2639fc5", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/2020b51b-2f68-4745-8529-e3269b275458?api-version=2021-11-01", - "x-ms-request-id" : "2020b51b-2f68-4745-8529-e3269b275458", - "Body" : "{\r\n \"name\": \"vm-08583d57-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bb163020-e826-4d22-8a0d-e5b17705a482\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic575147d7392\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "7f88d348-10f7-4d0e-b863-a0c82e689c37", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "53e42f41-2ba2-4735-889e-fd001d01b844", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "8a85ae61-4123-4af7-af65-8bfec3d86410", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:8a85ae61-4123-4af7-af65-8bfec3d86410", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/079668be-2cd5-4e5c-980b-451ec0de2604?api-version=2021-11-01", - "x-ms-request-id" : "079668be-2cd5-4e5c-980b-451ec0de2604", - "Body" : "{\r\n \"name\": \"vm-08583d57-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e5a4ce19-c516-442a-857b-21ffcc309ee6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic67174639621\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "53e42f41-2ba2-4735-889e-fd001d01b844", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2af3d4c-b2ce-42f2-ac0a-3f610569138c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "77951dfc-e019-4ae6-9115-499a25626e15", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:77951dfc-e019-4ae6-9115-499a25626e15", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/34e8e9ac-0f6e-4744-b4db-359358e9c020?api-version=2021-11-01", - "x-ms-request-id" : "34e8e9ac-0f6e-4744-b4db-359358e9c020", - "Body" : "{\r\n \"name\": \"vm-08583d57-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"77189562-8dcc-4ce7-8c5d-fde0136e7865\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic344954b0af2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "f2af3d4c-b2ce-42f2-ac0a-3f610569138c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6c3588b-e42a-4133-9029-cec24ddf7243", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "f460c0fc-00a3-44c5-a4e4-55f185cfc952", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;721,Microsoft.Compute/PutVM30Min;3613", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:f460c0fc-00a3-44c5-a4e4-55f185cfc952", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/abb26931-732b-48a8-94c9-35968826729c?api-version=2021-11-01", - "x-ms-request-id" : "abb26931-732b-48a8-94c9-35968826729c", - "Body" : "{\r\n \"name\": \"vm-54740eb8-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"72a56ca7-aa90-41d1-9f95-4001999177da\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic95436bc842e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "f6c3588b-e42a-4133-9029-cec24ddf7243", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a554d7e-ac6e-4c27-9f90-29a1526d0154", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "132bb814-cc39-4982-bec6-9f74a748b1e8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;720,Microsoft.Compute/PutVM30Min;3612", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172238Z:132bb814-cc39-4982-bec6-9f74a748b1e8", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/28671210-68d3-42be-9c0f-b78997a40c87?api-version=2021-11-01", - "x-ms-request-id" : "28671210-68d3-42be-9c0f-b78997a40c87", - "Body" : "{\r\n \"name\": \"vm-54740eb8-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1c0ca052-6e2f-4376-b7bc-5b000f038b41\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic45090d22b53\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "9a554d7e-ac6e-4c27-9f90-29a1526d0154", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "84a2fd19-fc2b-4d96-9e5a-ee05c2e7d02a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "7ee1a5f1-b19b-4ac2-bccc-77a7a43b504c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;719,Microsoft.Compute/PutVM30Min;3611", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172238Z:7ee1a5f1-b19b-4ac2-bccc-77a7a43b504c", - "Expires" : "-1", - "Content-Length" : "2204", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/3ba4765d-27b2-4f7d-ba68-52af6201de85?api-version=2021-11-01", - "x-ms-request-id" : "3ba4765d-27b2-4f7d-ba68-52af6201de85", - "Body" : "{\r\n \"name\": \"vm-54740eb8-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8b355653-481e-40e2-9075-2f8d1ce6b090\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic4437624fcb3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "84a2fd19-fc2b-4d96-9e5a-ee05c2e7d02a", - "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/fc3d646c-8a1d-4b01-b39d-eb89cad9e346?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5267274d-87f3-45ec-9d48-fdbe2041daa7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:44 GMT", - "x-ms-correlation-request-id" : "103e5bb4-d5ce-4f04-b693-c149f11de0aa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172245Z:103e5bb4-d5ce-4f04-b693-c149f11de0aa", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "028cb14f-7e00-47df-bc55-dbf0930acf21", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:33.262182+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc3d646c-8a1d-4b01-b39d-eb89cad9e346\"\r\n}", - "x-ms-client-request-id" : "5267274d-87f3-45ec-9d48-fdbe2041daa7", - "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/7030498b-e43b-4334-853d-95449f70921f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "98d4a83d-5a77-43df-9e8d-e71d79d61eb1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:45 GMT", - "x-ms-correlation-request-id" : "c6b4aaac-2682-45a9-b824-099155ee6b55", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172245Z:c6b4aaac-2682-45a9-b824-099155ee6b55", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "643e0f42-03d1-49aa-be36-6d8d59abb4ed", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:33.4965548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7030498b-e43b-4334-853d-95449f70921f\"\r\n}", - "x-ms-client-request-id" : "98d4a83d-5a77-43df-9e8d-e71d79d61eb1", - "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/47f45257-5ec0-4013-9753-95aa048e4e88?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "188e95e8-4e47-4b84-9381-23298e090cfd" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:45 GMT", - "x-ms-correlation-request-id" : "c14bde82-24fa-4e04-a3f7-a8e56871417e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172245Z:c14bde82-24fa-4e04-a3f7-a8e56871417e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "82992f25-39c8-4630-bd41-6af7ddb69062", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.1684465+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"47f45257-5ec0-4013-9753-95aa048e4e88\"\r\n}", - "x-ms-client-request-id" : "188e95e8-4e47-4b84-9381-23298e090cfd", - "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/9a3b8d01-19ab-4b78-bfc3-bf31f993cce7?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9ff506c-6c4f-474a-a3aa-fec14054cb37" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "32707aab-3473-4e7f-adac-2e402e0691ee", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172246Z:32707aab-3473-4e7f-adac-2e402e0691ee", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "e409f906-7a5f-42b7-a8ce-ab5c3bd708f5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.2562497+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a3b8d01-19ab-4b78-bfc3-bf31f993cce7\"\r\n}", - "x-ms-client-request-id" : "f9ff506c-6c4f-474a-a3aa-fec14054cb37", - "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/9503108b-24cd-4b38-a3ee-62473bc59e55?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "19a84160-d6e0-4ac3-90cb-237e52cba3f1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:45 GMT", - "x-ms-correlation-request-id" : "f2af412c-78d8-49da-a9bd-d218198ab0a9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172246Z:f2af412c-78d8-49da-a9bd-d218198ab0a9", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "1647fb77-1a56-46c8-ad92-b360960efd32", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.600007+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9503108b-24cd-4b38-a3ee-62473bc59e55\"\r\n}", - "x-ms-client-request-id" : "19a84160-d6e0-4ac3-90cb-237e52cba3f1", - "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/51b52a5e-cb37-4191-a99f-dcd882c9516f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "82daac2b-a3e0-40c3-ba2e-c76a273813e5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:45 GMT", - "x-ms-correlation-request-id" : "784fb163-c896-4da7-964c-cd016a4ba975", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172246Z:784fb163-c896-4da7-964c-cd016a4ba975", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "4fd2cdb5-bfc3-437e-a664-2e29b5d4cbad", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.7874907+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51b52a5e-cb37-4191-a99f-dcd882c9516f\"\r\n}", - "x-ms-client-request-id" : "82daac2b-a3e0-40c3-ba2e-c76a273813e5", - "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/westus2/operations/f0666ab1-011b-4ee8-b154-d48472ef85c4?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6f065fb-4eb2-4cc9-995f-54f64e6a8c1e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "60f23e04-d8f0-4526-a19e-bc473836732e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:60f23e04-d8f0-4526-a19e-bc473836732e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "09ca3fd6-0d3a-4448-a066-28c08dcb31ad", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.4143696+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0666ab1-011b-4ee8-b154-d48472ef85c4\"\r\n}", - "x-ms-client-request-id" : "c6f065fb-4eb2-4cc9-995f-54f64e6a8c1e", - "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/westus2/operations/2020b51b-2f68-4745-8529-e3269b275458?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ee9ca7f-8e19-4f4e-8fa5-f8ffbb890dab" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "6e0c5b9f-f9b3-438c-ac04-98ddf398bbfd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:6e0c5b9f-f9b3-438c-ac04-98ddf398bbfd", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "06564d46-9276-4095-a260-21d5a0f35e08", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.7737687+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2020b51b-2f68-4745-8529-e3269b275458\"\r\n}", - "x-ms-client-request-id" : "1ee9ca7f-8e19-4f4e-8fa5-f8ffbb890dab", - "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/eastus2/operations/f26d87aa-9f6c-4fac-979a-9ee0a37eee21?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b40ef809-b81f-4baa-b282-f380382f7e73" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "f256e6ac-b9a8-4fb5-90ab-d5252922d486", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:f256e6ac-b9a8-4fb5-90ab-d5252922d486", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "5f403b22-08a2-4a6c-8e4d-a3db54cf86ef", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6594808+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f26d87aa-9f6c-4fac-979a-9ee0a37eee21\"\r\n}", - "x-ms-client-request-id" : "b40ef809-b81f-4baa-b282-f380382f7e73", - "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/westus2/operations/079668be-2cd5-4e5c-980b-451ec0de2604?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "26fe9c0c-6254-478f-af9b-9d8c42fd6230" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "36ea68f6-36ce-4f12-8228-2c0343a8b5b7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:36ea68f6-36ce-4f12-8228-2c0343a8b5b7", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "315eca6a-4ff1-47c4-b1b5-365dbb650bc8", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.7893816+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"079668be-2cd5-4e5c-980b-451ec0de2604\"\r\n}", - "x-ms-client-request-id" : "26fe9c0c-6254-478f-af9b-9d8c42fd6230", - "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/westus2/operations/34e8e9ac-0f6e-4744-b4db-359358e9c020?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0aba5407-be79-4949-9d23-980a57cf6090" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "aeda2924-3187-4509-8550-d3662d228e39", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:aeda2924-3187-4509-8550-d3662d228e39", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "fc34b8f5-aba2-4bed-8896-2607cb15a3d6", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.1174872+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"34e8e9ac-0f6e-4744-b4db-359358e9c020\"\r\n}", - "x-ms-client-request-id" : "0aba5407-be79-4949-9d23-980a57cf6090", - "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/eastus2/operations/abb26931-732b-48a8-94c9-35968826729c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e673a477-6540-4c24-a601-9a4ee5b68577" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "8fade6de-92a7-400a-b6bd-62cb487d616d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172248Z:8fade6de-92a7-400a-b6bd-62cb487d616d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "8a5dff31-a521-433f-8d6f-2c908232a718", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.1907647+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"abb26931-732b-48a8-94c9-35968826729c\"\r\n}", - "x-ms-client-request-id" : "e673a477-6540-4c24-a601-9a4ee5b68577", - "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/eastus2/operations/28671210-68d3-42be-9c0f-b78997a40c87?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "709ae236-87bb-4ed9-9fae-71fc507a41c1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "e8103af6-cb64-451e-8611-a20e1ed4c1fe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172248Z:e8103af6-cb64-451e-8611-a20e1ed4c1fe", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "0a38c8e0-49a7-444b-a79a-0da63a0e379c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.5189118+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"28671210-68d3-42be-9c0f-b78997a40c87\"\r\n}", - "x-ms-client-request-id" : "709ae236-87bb-4ed9-9fae-71fc507a41c1", - "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/eastus2/operations/3ba4765d-27b2-4f7d-ba68-52af6201de85?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1dd3193-da41-451e-a6dc-974e7e3b279b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:48 GMT", - "x-ms-correlation-request-id" : "19ff710b-7e4b-447d-bb56-026009e42807", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172248Z:19ff710b-7e4b-447d-bb56-026009e42807", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "1b3153f7-7144-4af0-92c0-d4c2e42dd7ac", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.6907953+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ba4765d-27b2-4f7d-ba68-52af6201de85\"\r\n}", - "x-ms-client-request-id" : "d1dd3193-da41-451e-a6dc-974e7e3b279b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db5039f1-d967-4aa7-b132-c85bffb7809b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:57 GMT", - "x-ms-correlation-request-id" : "9a15b8e4-bac5-482c-a7c2-d8eed229206a", - "x-ms-arm-service-request-id" : "9f61db3b-9935-49b4-aa06-fce504be0123", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172257Z:9a15b8e4-bac5-482c-a7c2-d8eed229206a", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0ea05c62-6060-4760-b804-3d3debae27a4?api-version=2023-02-01", - "x-ms-request-id" : "0ea05c62-6060-4760-b804-3d3debae27a4", - "Body" : "{\r\n \"name\": \"vm-57884b79-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-2\",\r\n \"etag\": \"W/\\\"8a05dbbf-d656-444e-a72e-245188fb5bed\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"05fe60b5-cf8f-402b-816c-e211000be89e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip70546d\",\r\n \"fqdn\": \"pip70546d.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "db5039f1-d967-4aa7-b132-c85bffb7809b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f375509-3b26-4e1a-b1fe-e88ee610b1d9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:57 GMT", - "x-ms-correlation-request-id" : "03d038bb-1cb4-410b-9d55-952b61db3c37", - "x-ms-arm-service-request-id" : "eaf6983e-c349-4e43-b2d7-706614cf6540", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172258Z:03d038bb-1cb4-410b-9d55-952b61db3c37", - "Expires" : "-1", - "Content-Length" : "778", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a995b204-f659-4b6f-84e4-86d3bdb0bd76?api-version=2023-02-01", - "x-ms-request-id" : "a995b204-f659-4b6f-84e4-86d3bdb0bd76", - "Body" : "{\r\n \"name\": \"vm-8810092c-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-2\",\r\n \"etag\": \"W/\\\"379ef79e-07fe-4a56-8d9a-199eec849c2c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d3389cac-caee-4953-8018-947a5a06269e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip98484b\",\r\n \"fqdn\": \"pip98484b.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "8f375509-3b26-4e1a-b1fe-e88ee610b1d9", - "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/0ea05c62-6060-4760-b804-3d3debae27a4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "671bfc06-2d1d-4986-b766-4feba307a7f7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:58 GMT", - "x-ms-correlation-request-id" : "87d2666d-6281-4212-98f4-85a0135e33c3", - "x-ms-arm-service-request-id" : "40b58907-6ce5-4e8e-949a-eec0d0137e63", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172258Z:87d2666d-6281-4212-98f4-85a0135e33c3", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "40e63cb5-a66d-4dd5-94d9-005fbaa1a38c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "671bfc06-2d1d-4986-b766-4feba307a7f7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "baeebc25-9bb5-4c66-bddd-6ee562f52aa3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:58 GMT", - "x-ms-correlation-request-id" : "73a58095-8e88-43c1-ad1a-a16a457d3665", - "x-ms-arm-service-request-id" : "4569ab16-7a92-4161-a74f-7d56ad73686b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"a1741629-d7b2-49d7-99ba-b5bbdc89f7ae\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172258Z:73a58095-8e88-43c1-ad1a-a16a457d3665", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "0f2ea209-cace-4357-8bc7-de35079cf602", - "Body" : "{\r\n \"name\": \"vm-57884b79-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-2\",\r\n \"etag\": \"W/\\\"a1741629-d7b2-49d7-99ba-b5bbdc89f7ae\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05fe60b5-cf8f-402b-816c-e211000be89e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip70546d\",\r\n \"fqdn\": \"pip70546d.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "baeebc25-9bb5-4c66-bddd-6ee562f52aa3", - "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/eastus/operations/a995b204-f659-4b6f-84e4-86d3bdb0bd76?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b64f3d85-aaad-4327-819e-db9d22108d44" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:58 GMT", - "x-ms-correlation-request-id" : "8b1f2e6d-1b0e-4565-901a-de9abdb3dca1", - "x-ms-arm-service-request-id" : "50453cd9-8c1d-49dd-93f4-19fc235f8546", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172259Z:8b1f2e6d-1b0e-4565-901a-de9abdb3dca1", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "af4a8b79-deba-47cf-9de5-7c772459682c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "b64f3d85-aaad-4327-819e-db9d22108d44", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c380a728-9ab8-44ac-9824-180372841e5f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:59 GMT", - "x-ms-correlation-request-id" : "93ff9b45-de80-48d8-89eb-77b06941d43e", - "x-ms-arm-service-request-id" : "1141d862-d717-4270-a7b7-097f3ff1f5f4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"a167a1a9-df69-4a44-9e6e-3ee01b2abd54\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172259Z:93ff9b45-de80-48d8-89eb-77b06941d43e", - "Expires" : "-1", - "Content-Length" : "779", - "x-ms-request-id" : "f596c344-00bf-479a-983f-ac4394d1c053", - "Body" : "{\r\n \"name\": \"vm-8810092c-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-2\",\r\n \"etag\": \"W/\\\"a167a1a9-df69-4a44-9e6e-3ee01b2abd54\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d3389cac-caee-4953-8018-947a5a06269e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip98484b\",\r\n \"fqdn\": \"pip98484b.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "c380a728-9ab8-44ac-9824-180372841e5f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic47073d94e1a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c4b282d-2861-456b-ba8e-a2d9c754b2d0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:01 GMT", - "x-ms-correlation-request-id" : "ffcb97bc-ebd1-409b-8e29-5325a83de936", - "x-ms-arm-service-request-id" : "26f2befd-1f4b-4801-999c-57d3cc855a1d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172302Z:ffcb97bc-ebd1-409b-8e29-5325a83de936", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dfb49c6a-b989-4aae-bf3b-f8305ae4fa61?api-version=2023-02-01", - "x-ms-request-id" : "dfb49c6a-b989-4aae-bf3b-f8305ae4fa61", - "Body" : "{\r\n \"name\": \"nic47073d94e1a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic47073d94e1a\",\r\n \"etag\": \"W/\\\"26ab0f1a-a2c2-4728-93ae-5f43a1be13fa\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c69ea97-711c-498d-87a2-1a9601baa6bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic47073d94e1a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"26ab0f1a-a2c2-4728-93ae-5f43a1be13fa\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-57884b79-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-67414d0b/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\": \"2pm54xo1epfuloe5kqoais30pb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "8c4b282d-2861-456b-ba8e-a2d9c754b2d0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic512247d4ed4?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "35fbcb85-1a2a-4051-9140-24990a16f650", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:03 GMT", - "x-ms-correlation-request-id" : "c0f1698d-aad4-4633-a58e-1e637bdcda58", - "x-ms-arm-service-request-id" : "78218669-7ffd-42f3-8bdb-bf1ff5d842e0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172303Z:c0f1698d-aad4-4633-a58e-1e637bdcda58", - "Expires" : "-1", - "Content-Length" : "1889", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d887393a-bfee-4e8a-9d5f-a0453401a31c?api-version=2023-02-01", - "x-ms-request-id" : "d887393a-bfee-4e8a-9d5f-a0453401a31c", - "Body" : "{\r\n \"name\": \"nic512247d4ed4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic512247d4ed4\",\r\n \"etag\": \"W/\\\"e3b19f8c-2dd5-409d-8e5e-f4ee80800506\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b9a58813-ede3-4a5a-b9a4-113b3757182e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic512247d4ed4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e3b19f8c-2dd5-409d-8e5e-f4ee80800506\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/publicIPAddresses/vm-8810092c-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Network/virtualNetworks/vnetcopd-04629881/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\": \"1gks5wycnu5uzjhyegqs5uivdb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "35fbcb85-1a2a-4051-9140-24990a16f650", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f4490fa-a753-4773-806a-95d2a078b07e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:06 GMT", - "x-ms-correlation-request-id" : "e480f66e-344e-43d6-979e-a69cb0ff0a51", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;738,Microsoft.Compute/PutVM30Min;3713", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172307Z:e480f66e-344e-43d6-979e-a69cb0ff0a51", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9d6a848-b6f3-461e-bdc4-659bb75b8584?api-version=2021-11-01", - "x-ms-request-id" : "d9d6a848-b6f3-461e-bdc4-659bb75b8584", - "Body" : "{\r\n \"name\": \"vm-8810092c-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"14d5b5e5-3540-4f93-92b5-74336c6689c6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic512247d4ed4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3f4490fa-a753-4773-806a-95d2a078b07e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b91a8a4c-31f1-4d63-be9b-e7ba9781174b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:09 GMT", - "x-ms-correlation-request-id" : "3261c391-804e-419f-8915-24ddc3a8560e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1184", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172310Z:3261c391-804e-419f-8915-24ddc3a8560e", - "Expires" : "-1", - "Content-Length" : "2203", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b4a3d6d8-2681-4144-87e5-d20808ec4edc?api-version=2021-11-01", - "x-ms-request-id" : "b4a3d6d8-2681-4144-87e5-d20808ec4edc", - "Body" : "{\r\n \"name\": \"vm-57884b79-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d4ac45c3-f2f8-46a7-9e19-ff0389b93c9e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic47073d94e1a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "b91a8a4c-31f1-4d63-be9b-e7ba9781174b", - "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/d9d6a848-b6f3-461e-bdc4-659bb75b8584?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5173cce-4642-469d-aba4-2ed07b11a63a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:17 GMT", - "x-ms-correlation-request-id" : "82ba5a8c-d0f4-42cb-9e8e-9b1ec93b9813", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172317Z:82ba5a8c-d0f4-42cb-9e8e-9b1ec93b9813", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "34544bbf-c9b8-41a8-9cb8-dda810d1094e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:05.965243+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d9d6a848-b6f3-461e-bdc4-659bb75b8584\"\r\n}", - "x-ms-client-request-id" : "a5173cce-4642-469d-aba4-2ed07b11a63a", - "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/b4a3d6d8-2681-4144-87e5-d20808ec4edc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eee1538f-5660-4ccb-ab6c-2e9f8eb471cb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "1b4dac1b-d14c-44d9-a5b5-8131a7b0a8a9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172320Z:1b4dac1b-d14c-44d9-a5b5-8131a7b0a8a9", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "9fa2eb73-a788-498a-a9f9-431f5ddc8266", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:08.6482442+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4a3d6d8-2681-4144-87e5-d20808ec4edc\"\r\n}", - "x-ms-client-request-id" : "eee1538f-5660-4ccb-ab6c-2e9f8eb471cb", - "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/fc3d646c-8a1d-4b01-b39d-eb89cad9e346?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "46286372-6104-4767-985f-d93f78d6296f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "0dfc75ef-e15d-4a43-8ac8-010f4f29a15e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172320Z:0dfc75ef-e15d-4a43-8ac8-010f4f29a15e", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "8ac82634-9224-43c0-a0c8-88bb44357ad2", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:33.262182+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:00.6371448+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc3d646c-8a1d-4b01-b39d-eb89cad9e346\"\r\n}", - "x-ms-client-request-id" : "46286372-6104-4767-985f-d93f78d6296f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "95ebec51-3a02-4371-ad10-beda7cf6eb61" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "937502c3-762d-4861-96db-c19f59de5802", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172320Z:937502c3-762d-4861-96db-c19f59de5802", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "fb40f3cc-6f1b-4783-b20a-ab5d5764713d", - "Body" : "{\r\n \"name\": \"vm-8810092c-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"84e5b03b-d5aa-42b5-9efa-7a3f290b52df\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-8810092c-4_OsDisk_1_f8c95999071d41c7aafe7a4c93e67c49\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-8810092c-4_OsDisk_1_f8c95999071d41c7aafe7a4c93e67c49\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic9175206265c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "95ebec51-3a02-4371-ad10-beda7cf6eb61", - "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/7030498b-e43b-4334-853d-95449f70921f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "873e97f7-9a9b-4def-8b59-235404a5a37f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "c510bccd-4f97-4afa-8abd-95b0274828d0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:c510bccd-4f97-4afa-8abd-95b0274828d0", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "8bb8487d-8174-4795-a760-75ff6c52f99e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:33.4965548+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:58.527799+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7030498b-e43b-4334-853d-95449f70921f\"\r\n}", - "x-ms-client-request-id" : "873e97f7-9a9b-4def-8b59-235404a5a37f", - "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/47f45257-5ec0-4013-9753-95aa048e4e88?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "448e4fc0-bc48-4aa7-8d2e-f4a3e66110eb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "0d45dbb6-a78f-47b7-8c7a-86c9d6e55e8c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:0d45dbb6-a78f-47b7-8c7a-86c9d6e55e8c", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4dd71b2f-6095-412a-bae4-f92e60e00551", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.1684465+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:57.5278064+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"47f45257-5ec0-4013-9753-95aa048e4e88\"\r\n}", - "x-ms-client-request-id" : "448e4fc0-bc48-4aa7-8d2e-f4a3e66110eb", - "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/9a3b8d01-19ab-4b78-bfc3-bf31f993cce7?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d601b68f-d6b1-4f21-b90d-da1aba21b1fd" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "9bc07d8d-1f05-4772-a010-1d0e2751f0cc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:9bc07d8d-1f05-4772-a010-1d0e2751f0cc", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e19de8fd-d267-477f-9f45-82a2dda7913f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.2562497+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:08.8200966+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9a3b8d01-19ab-4b78-bfc3-bf31f993cce7\"\r\n}", - "x-ms-client-request-id" : "d601b68f-d6b1-4f21-b90d-da1aba21b1fd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8efb25e-be2b-4447-9076-3bbc84d5692a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "78a17a85-fd7c-41fd-9264-f8b5bb571ca4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:78a17a85-fd7c-41fd-9264-f8b5bb571ca4", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "9440516e-5b94-4073-b775-a73c327a3a2f", - "Body" : "{\r\n \"name\": \"vm-8810092c-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2f908ce6-901e-40ad-b844-7c8a61a73fec\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-8810092c-1_OsDisk_1_771b0f97af2846c79092a56e55168e0c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-8810092c-1_OsDisk_1_771b0f97af2846c79092a56e55168e0c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic182247be0f2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "b8efb25e-be2b-4447-9076-3bbc84d5692a", - "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/9503108b-24cd-4b38-a3ee-62473bc59e55?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "30d4d0b9-4e94-48db-9f09-67c4a6981d64" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "c11432b8-4520-4ddc-87f5-8a56b38c4b07", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:c11432b8-4520-4ddc-87f5-8a56b38c4b07", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "f410368c-608e-40c5-bf3c-7c0597abe811", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.600007+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:58.3197038+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9503108b-24cd-4b38-a3ee-62473bc59e55\"\r\n}", - "x-ms-client-request-id" : "30d4d0b9-4e94-48db-9f09-67c4a6981d64", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "40e95ce9-83da-41a2-b4eb-74982345aacd" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "3d68dd7e-eb8a-4721-b875-674078493c8f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:3d68dd7e-eb8a-4721-b875-674078493c8f", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "2becd9b6-cd3c-4be2-a103-8d262edd4db5", - "Body" : "{\r\n \"name\": \"vm-57884b79-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"afdfc339-4a6b-4dd3-93f0-8630154058c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-57884b79-3_OsDisk_1_92b53c236c074b3d9b01ed7a1d1ced43\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-57884b79-3_OsDisk_1_92b53c236c074b3d9b01ed7a1d1ced43\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7489229d97a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "40e95ce9-83da-41a2-b4eb-74982345aacd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea2a934c-ca22-44f5-94bb-c3f9e4a93a04" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "2a12df88-12ad-4bb3-84cc-b9fbfaf24315", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:2a12df88-12ad-4bb3-84cc-b9fbfaf24315", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "1bbff717-f75f-43a3-aec3-a65b3a08a981", - "Body" : "{\r\n \"name\": \"vm-8810092c-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b45b4002-e34b-4b11-8b12-5fce5b431024\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-8810092c-3_OsDisk_1_a6d5e8e583f94be8a20f5adf85dc7627\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-8810092c-3_OsDisk_1_a6d5e8e583f94be8a20f5adf85dc7627\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic88220ae02b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "ea2a934c-ca22-44f5-94bb-c3f9e4a93a04", - "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/51b52a5e-cb37-4191-a99f-dcd882c9516f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2e12185-1704-4426-8513-a748882b2101" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "a07b62b8-79bc-4585-b718-6a2de1e6bbd1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:a07b62b8-79bc-4585-b718-6a2de1e6bbd1", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "bb609eb4-f4b3-4878-b36e-1493a2cdb540", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.7874907+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:03.7261689+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"51b52a5e-cb37-4191-a99f-dcd882c9516f\"\r\n}", - "x-ms-client-request-id" : "f2e12185-1704-4426-8513-a748882b2101", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "600c4419-f152-4966-8283-3995bb322a0c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "4f96efd5-835b-4f4b-850d-db226b724443", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172321Z:4f96efd5-835b-4f4b-850d-db226b724443", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "01330acd-051c-4ed8-9a67-682dc0dfeeb9", - "Body" : "{\r\n \"name\": \"vm-57884b79-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7ac04eb8-d7a5-4ebf-a39a-a873208b6ee4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-57884b79-4_OsDisk_1_5513d7f9cf1044b3b12f48e6c037a993\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-57884b79-4_OsDisk_1_5513d7f9cf1044b3b12f48e6c037a993\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic7097018e5ea\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "600c4419-f152-4966-8283-3995bb322a0c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "75f19e0d-f372-485a-8b81-e82be3f47f99" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "4f59b7bd-1439-4b32-b0fa-9df4df1bee96", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:4f59b7bd-1439-4b32-b0fa-9df4df1bee96", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "8446b095-f6dc-4fd2-be0c-ca0da5324b42", - "Body" : "{\r\n \"name\": \"vm-57884b79-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"15d8a0ae-b5b5-4e55-b105-b614b8987652\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-57884b79-1_OsDisk_1_6997a429a236420cadd51d1e3c57ed39\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-57884b79-1_OsDisk_1_6997a429a236420cadd51d1e3c57ed39\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic18314925cd8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "75f19e0d-f372-485a-8b81-e82be3f47f99", - "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/westus2/operations/f0666ab1-011b-4ee8-b154-d48472ef85c4?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "56379645-14e5-4810-bad0-cb66d16cfab7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "92a3f004-f9a7-4f33-8507-827b23cd11bc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:92a3f004-f9a7-4f33-8507-827b23cd11bc", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e069d721-ecfb-46d1-9250-ba4d7996a5cc", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.4143696+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:05.7893349+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0666ab1-011b-4ee8-b154-d48472ef85c4\"\r\n}", - "x-ms-client-request-id" : "56379645-14e5-4810-bad0-cb66d16cfab7", - "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/westus2/operations/2020b51b-2f68-4745-8529-e3269b275458?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2680380b-9bcb-4c72-9ea4-cfe8e6726972" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "6d95a323-7cb7-47ee-8461-bbee5727031d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:6d95a323-7cb7-47ee-8461-bbee5727031d", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "1f48a431-b9f2-43b2-b571-bf7bbaeaf7bb", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.7737687+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:09.8674432+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2020b51b-2f68-4745-8529-e3269b275458\"\r\n}", - "x-ms-client-request-id" : "2680380b-9bcb-4c72-9ea4-cfe8e6726972", - "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/westus2/operations/079668be-2cd5-4e5c-980b-451ec0de2604?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a739c8d7-1753-44a5-b171-6637ad898dc6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "e0eea82c-aeef-4357-a310-46c9591dea7d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:e0eea82c-aeef-4357-a310-46c9591dea7d", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "11b247c9-f22f-4f40-ab64-b64361f5a66a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.7893816+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:10.8518202+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"079668be-2cd5-4e5c-980b-451ec0de2604\"\r\n}", - "x-ms-client-request-id" : "a739c8d7-1753-44a5-b171-6637ad898dc6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1e2656e-e606-4f09-8656-016ebd8ac1bf" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "36f71edc-528d-4da7-bab4-a72feaff952a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:36f71edc-528d-4da7-bab4-a72feaff952a", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "2bee3e1e-8db6-4932-a560-5ef67ec8bdf9", - "Body" : "{\r\n \"name\": \"vm-08583d57-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0d14bc94-7c0c-4617-8174-70bb07b66e9c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-08583d57-3_OsDisk_1_a6438dff5a0748389e035cb4829ed1a3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-08583d57-3_OsDisk_1_a6438dff5a0748389e035cb4829ed1a3\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic748123efe21\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "e1e2656e-e606-4f09-8656-016ebd8ac1bf", - "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/eastus2/operations/f26d87aa-9f6c-4fac-979a-9ee0a37eee21?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "261de832-b1e6-4271-ab79-9e0b2e89d08b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "702c534f-89fc-4671-8b60-c7bbfd780e6c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:702c534f-89fc-4671-8b60-c7bbfd780e6c", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "c8049329-5291-4265-be86-858393015f81", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6594808+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:01.6923766+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f26d87aa-9f6c-4fac-979a-9ee0a37eee21\"\r\n}", - "x-ms-client-request-id" : "261de832-b1e6-4271-ab79-9e0b2e89d08b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "818886f9-3177-4b48-a793-058ee50b0608" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "a2c90c82-8405-4241-9236-15148d09efee", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:a2c90c82-8405-4241-9236-15148d09efee", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "26642732-4540-48cb-bded-6a965535d2f8", - "Body" : "{\r\n \"name\": \"vm-08583d57-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bb163020-e826-4d22-8a0d-e5b17705a482\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-08583d57-1_OsDisk_1_9005433f7f9949a89c7f61ecb8df4a47\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-08583d57-1_OsDisk_1_9005433f7f9949a89c7f61ecb8df4a47\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic575147d7392\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "818886f9-3177-4b48-a793-058ee50b0608", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fed0783-56a4-49d1-b0d3-ea5369c2693a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "ef6c86b4-309b-4653-ae59-b13270086fa5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:ef6c86b4-309b-4653-ae59-b13270086fa5", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "35e05927-13cc-4427-ad2b-b54d953c0ab8", - "Body" : "{\r\n \"name\": \"vm-08583d57-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e5a4ce19-c516-442a-857b-21ffcc309ee6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-08583d57-2_OsDisk_1_8e1804daf0f64a7193c3973a9e5dfca7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-08583d57-2_OsDisk_1_8e1804daf0f64a7193c3973a9e5dfca7\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic67174639621\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "3fed0783-56a4-49d1-b0d3-ea5369c2693a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "450a8e2a-20d2-4c50-b827-33202b29c18b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "f5f7d254-2306-47af-a01d-0aaaa7aaa0d8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:f5f7d254-2306-47af-a01d-0aaaa7aaa0d8", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "4838cdc8-5c86-43f8-b611-449ca777d88b", - "Body" : "{\r\n \"name\": \"vm-54740eb8-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3abd9c75-b590-4932-8b08-dce73879c88f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-54740eb8-3_OsDisk_1_05ec040187b04b5a8fbb12c33b1c2eec\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-54740eb8-3_OsDisk_1_05ec040187b04b5a8fbb12c33b1c2eec\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic57546933fa6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "450a8e2a-20d2-4c50-b827-33202b29c18b", - "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/westus2/operations/34e8e9ac-0f6e-4744-b4db-359358e9c020?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "244b67ff-2fab-403c-aa0f-767e49d60f62" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "1033cd6d-7209-4462-a0e6-983bcaea4b80", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:1033cd6d-7209-4462-a0e6-983bcaea4b80", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "c88fc409-a906-484b-bdc7-09c9acdb6c0e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.1174872+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:05.7737087+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"34e8e9ac-0f6e-4744-b4db-359358e9c020\"\r\n}", - "x-ms-client-request-id" : "244b67ff-2fab-403c-aa0f-767e49d60f62", - "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/eastus2/operations/abb26931-732b-48a8-94c9-35968826729c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcb283c5-e0b7-421a-8128-fce293594733" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "4c982736-e60f-43a1-a823-a74a1bf95523", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:4c982736-e60f-43a1-a823-a74a1bf95523", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "d56d4ba2-2606-4be6-93bf-086edf31a62b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.1907647+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:00.395443+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"abb26931-732b-48a8-94c9-35968826729c\"\r\n}", - "x-ms-client-request-id" : "fcb283c5-e0b7-421a-8128-fce293594733", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9118f61-0e9d-48da-ae6e-dc40dc64c4f3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "1c5de88e-f50b-4fd6-ac3f-7499c9f25191", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:1c5de88e-f50b-4fd6-ac3f-7499c9f25191", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "9bc91efd-dddf-4bd8-b2d4-37c6679f5ba6", - "Body" : "{\r\n \"name\": \"vm-08583d57-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-08583d57-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"77189562-8dcc-4ce7-8c5d-fde0136e7865\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-08583d57-4_OsDisk_1_71090e6364ae441d8819d4dfaaea91d4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-08583d57-4_OsDisk_1_71090e6364ae441d8819d4dfaaea91d4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08583d57-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic344954b0af2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "e9118f61-0e9d-48da-ae6e-dc40dc64c4f3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3279b6bf-5e79-40d8-bdbc-3cee272d2d12" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "e79f8649-e399-4d32-a8ae-201db496d624", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:e79f8649-e399-4d32-a8ae-201db496d624", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "8167b1d8-c6a9-4e5f-a109-b5466e86feb7", - "Body" : "{\r\n \"name\": \"vm-54740eb8-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"72a56ca7-aa90-41d1-9f95-4001999177da\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-54740eb8-2_OsDisk_1_62575be53a254a828af622e277fa7b59\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-54740eb8-2_OsDisk_1_62575be53a254a828af622e277fa7b59\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic95436bc842e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "3279b6bf-5e79-40d8-bdbc-3cee272d2d12", - "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/eastus2/operations/28671210-68d3-42be-9c0f-b78997a40c87?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "46b07f47-364b-4edf-8d9a-acf41f86f862" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "02b13cd7-bf93-40b4-b3cb-7e2a79e8a7df", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:02b13cd7-bf93-40b4-b3cb-7e2a79e8a7df", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4da61df8-bb49-4d01-8a5f-e2e62afb779f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.5189118+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:59.6766263+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"28671210-68d3-42be-9c0f-b78997a40c87\"\r\n}", - "x-ms-client-request-id" : "46b07f47-364b-4edf-8d9a-acf41f86f862", - "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/eastus2/operations/3ba4765d-27b2-4f7d-ba68-52af6201de85?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "32fa57f4-a94d-4a76-b49e-4246a73c6356" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "2879b423-0881-4276-8875-a55aec7dded0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:2879b423-0881-4276-8875-a55aec7dded0", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "53d9f621-cef6-4865-9045-25a0036bacc5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.6907953+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:00.6767125+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3ba4765d-27b2-4f7d-ba68-52af6201de85\"\r\n}", - "x-ms-client-request-id" : "32fa57f4-a94d-4a76-b49e-4246a73c6356", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fae514f-7e0b-405e-b78b-144c911234e2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "3c4b6473-b629-4979-80fb-b1e298b1c28b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172324Z:3c4b6473-b629-4979-80fb-b1e298b1c28b", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "b33cccfc-2be6-4030-812a-0203c3a96f67", - "Body" : "{\r\n \"name\": \"vm-54740eb8-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1c0ca052-6e2f-4376-b7bc-5b000f038b41\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-54740eb8-4_OsDisk_1_9d24a3c2c60548a6ad38f955efe8679a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-54740eb8-4_OsDisk_1_9d24a3c2c60548a6ad38f955efe8679a\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic45090d22b53\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "7fae514f-7e0b-405e-b78b-144c911234e2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "088d7aa4-8212-4c51-9e19-8fd19a311eba" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "b3921904-5e9b-439a-a2bb-812e0db3c13a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172324Z:b3921904-5e9b-439a-a2bb-812e0db3c13a", - "Expires" : "-1", - "Content-Length" : "2476", - "x-ms-request-id" : "7e9ed367-8e93-4bdf-b9e2-6e80c2b3e5b0", - "Body" : "{\r\n \"name\": \"vm-54740eb8-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-54740eb8-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8b355653-481e-40e2-9075-2f8d1ce6b090\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-54740eb8-1_OsDisk_1_cf69ad589363493d9a9d4e582906b6b6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-54740eb8-1_OsDisk_1_cf69ad589363493d9a9d4e582906b6b6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-54740eb8-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic4437624fcb3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "088d7aa4-8212-4c51-9e19-8fd19a311eba", - "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/d9d6a848-b6f3-461e-bdc4-659bb75b8584?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cedab3d-2c0b-4d60-893e-da9a48af26a6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:52 GMT", - "x-ms-correlation-request-id" : "ed900323-2716-4fa6-a973-de3bc3053a58", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172353Z:ed900323-2716-4fa6-a973-de3bc3053a58", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "e95e7efa-136c-4b63-8591-42922242d446", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:05.965243+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:29.0434368+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d9d6a848-b6f3-461e-bdc4-659bb75b8584\"\r\n}", - "x-ms-client-request-id" : "6cedab3d-2c0b-4d60-893e-da9a48af26a6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9c6f293-7ff0-4765-b55f-daf12d75a957" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:53 GMT", - "x-ms-correlation-request-id" : "07240932-ca94-4601-9310-0a2e8ef50359", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172353Z:07240932-ca94-4601-9310-0a2e8ef50359", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "726520ce-b484-41f2-8932-c7798f2f131b", - "Body" : "{\r\n \"name\": \"vm-8810092c-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-8810092c-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"14d5b5e5-3540-4f93-92b5-74336c6689c6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-8810092c-2_OsDisk_1_0f1e0472acfd44b788b4fe64d7d3a732\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-8810092c-2_OsDisk_1_0f1e0472acfd44b788b4fe64d7d3a732\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-8810092c-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic512247d4ed4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "c9c6f293-7ff0-4765-b55f-daf12d75a957", - "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/b4a3d6d8-2681-4144-87e5-d20808ec4edc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7c21569-3b10-4339-8eae-9a0536abd4ba" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:55 GMT", - "x-ms-correlation-request-id" : "9a8e95c1-766e-454f-b8b4-be6db33b157f", - "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:20210129T172355Z:9a8e95c1-766e-454f-b8b4-be6db33b157f", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "990b5bce-5919-41f6-b9df-e84f6fcf8aec", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:08.6482442+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:35.1804433+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b4a3d6d8-2681-4144-87e5-d20808ec4edc\"\r\n}", - "x-ms-client-request-id" : "c7c21569-3b10-4339-8eae-9a0536abd4ba", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "51693117-81e4-46da-906e-8384a4f098ea" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:55 GMT", - "x-ms-correlation-request-id" : "52d94f7d-0b58-4dc6-bd39-577a68d55a88", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3969,Microsoft.Compute/LowCostGet30Min;31969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172356Z:52d94f7d-0b58-4dc6-bd39-577a68d55a88", - "Expires" : "-1", - "Content-Length" : "2475", - "x-ms-request-id" : "5798e063-719a-4e49-afe2-e7f44502f4f0", - "Body" : "{\r\n \"name\": \"vm-57884b79-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/virtualMachines/vm-57884b79-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d4ac45c3-f2f8-46a7-9e19-ff0389b93c9e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-57884b79-2_OsDisk_1_8acd00431c65430cb9dd77c6e0c3d73e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd8069265c475/providers/Microsoft.Compute/disks/vm-57884b79-2_OsDisk_1_8acd00431c65430cb9dd77c6e0c3d73e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-57884b79-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopd8069265c475/providers/Microsoft.Network/networkInterfaces/nic47073d94e1a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "51693117-81e4-46da-906e-8384a4f098ea", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopd8069265c475?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9ee405f-a526-4ed2-839c-34555d7b7b5a", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:23:59 GMT", - "x-ms-correlation-request-id" : "94443566-e4eb-4c84-ab78-03165d489367", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172400Z:94443566-e4eb-4c84-ab78-03165d489367", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "94443566-e4eb-4c84-ab78-03165d489367", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQ4MDY5MjY1QzQ3NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcopd8069265c475", "vnetcopd-1376459f", "stgcopd112707d03", "vm-54740eb8", "pip539654", "nic4437624fcb3", "pip34019f", "nic95436bc842e", "pip047047", "nic57546933fa6", "pip984498", "nic45090d22b53", "vnetcopd-67414d0b", "stgcopd39952c1a5", "vm-57884b79", "pip107278", "nic18314925cd8", "pip70546d", "nic47073d94e1a", "pip118343", "nic7489229d97a", "pip348480", "nic7097018e5ea", "vnetcopd-04629881", "stgcopd399350bef", "vm-8810092c", "pip08006e", "nic182247be0f2", "pip98484b", "nic512247d4ed4", "pip87238f", "nic88220ae02b7", "pip672884", "nic9175206265c", "vnetcopd-88632d02", "stgcopd488744e19", "vm-08583d57", "pip792432", "nic575147d7392", "pip39652a", "nic67174639621", "pip492889", "nic748123efe21", "pip58072a", "nic344954b0af2" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json deleted file mode 100644 index e50a9007be2c..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json +++ /dev/null @@ -1,1438 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0074061?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "71995cdf-5630-45a7-9a5a-6b46b67e2e02", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "0f50e2b5-bb3e-4b10-8dc0-4e850e7af2d8", - "Date" : "Mon, 19 Apr 2021 07:35:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073537Z:0f50e2b5-bb3e-4b10-8dc0-4e850e7af2d8", - "Expires" : "-1", - "x-ms-request-id" : "0f50e2b5-bb3e-4b10-8dc0-4e850e7af2d8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061\",\"name\":\"rgcomv0074061\",\"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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "69050a6c-fc47-4776-a593-c006a5d98e35", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "7a8b0a2b-4ed4-487c-86dd-d08217e4afad", - "Date" : "Mon, 19 Apr 2021 07:35:43 GMT", - "x-ms-arm-service-request-id" : "38419e4b-3af8-433a-83e0-81f8dfbdd6c8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073543Z:7a8b0a2b-4ed4-487c-86dd-d08217e4afad", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/eb42dd44-a72a-433a-ba1f-f50818be75b1?api-version=2023-02-01", - "x-ms-request-id" : "eb42dd44-a72a-433a-ba1f-f50818be75b1", - "Body" : "{\r\n \"name\": \"vnet301703aa88\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88\",\r\n \"etag\": \"W/\\\"c04b864b-4c0c-4638-b969-763047d28a6e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"748bb4c7-5dc9-4094-9fb0-3a136ece0b62\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c04b864b-4c0c-4638-b969-763047d28a6e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "69050a6c-fc47-4776-a593-c006a5d98e35", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Storage/storageAccounts/stg10559c120d35d?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "42224e84-83a4-47e2-b698-da1076b21a84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "a7a495b7-775d-4d58-8ef6-0c279a576f46", - "Date" : "Mon, 19 Apr 2021 07:35:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073544Z:a7a495b7-775d-4d58-8ef6-0c279a576f46", - "Expires" : "-1", - "x-ms-request-id" : "ce72a475-5a9f-4c04-a125-72e695073845", - "Body" : "", - "x-ms-client-request-id" : "42224e84-83a4-47e2-b698-da1076b21a84", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/ce72a475-5a9f-4c04-a125-72e695073845?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/publicIPAddresses/pip19234e11?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "16752c4a-9b53-492c-a756-8d0a13df5054", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "a98985dd-e63f-46f6-9a3f-598c5dde5f5b", - "Date" : "Mon, 19 Apr 2021 07:35:43 GMT", - "x-ms-arm-service-request-id" : "a0718b99-047c-4922-a8c6-fdff234c973b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073544Z:a98985dd-e63f-46f6-9a3f-598c5dde5f5b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4167d3f5-7b68-4390-89e9-d8f1f2c1b116?api-version=2023-02-01", - "x-ms-request-id" : "4167d3f5-7b68-4390-89e9-d8f1f2c1b116", - "Body" : "{\r\n \"name\": \"pip19234e11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/publicIPAddresses/pip19234e11\",\r\n \"etag\": \"W/\\\"ed5aeed6-461b-43af-96ce-ccf6b10b9f81\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f79b98e6-845e-4fb1-9332-c71945e56d16\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip77516b00\",\r\n \"fqdn\": \"pip77516b00.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "16752c4a-9b53-492c-a756-8d0a13df5054", - "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/eastus/operations/4167d3f5-7b68-4390-89e9-d8f1f2c1b116?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "28cf89d1-699b-4053-8d6e-ed075beda420" - }, - "Response" : { - "content-length" : "29", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2714a4f-99bb-4226-a17b-50b7488201d0", - "Date" : "Mon, 19 Apr 2021 07:35:46 GMT", - "x-ms-arm-service-request-id" : "99e15cd9-ee6c-4954-9f40-4afb2db3b419", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073546Z:b2714a4f-99bb-4226-a17b-50b7488201d0", - "Expires" : "-1", - "x-ms-request-id" : "2384a38f-b0c2-479a-bcf9-3226957cae44", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "28cf89d1-699b-4053-8d6e-ed075beda420", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/publicIPAddresses/pip19234e11?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8503b543-558b-4960-9a5d-15dbff6ab705" - }, - "Response" : { - "content-length" : "775", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38729c20-6828-4e4a-b160-7c838c385bd2", - "Date" : "Mon, 19 Apr 2021 07:35:46 GMT", - "x-ms-arm-service-request-id" : "381cf026-04c8-4b4b-8f81-0f1c84bdce1b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"82743365-f323-4a29-b868-2c9e8579cf94\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073547Z:38729c20-6828-4e4a-b160-7c838c385bd2", - "Expires" : "-1", - "x-ms-request-id" : "97155960-d09b-40d5-9642-2733ad9574f4", - "Body" : "{\r\n \"name\": \"pip19234e11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/publicIPAddresses/pip19234e11\",\r\n \"etag\": \"W/\\\"82743365-f323-4a29-b868-2c9e8579cf94\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f79b98e6-845e-4fb1-9332-c71945e56d16\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip77516b00\",\r\n \"fqdn\": \"pip77516b00.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "8503b543-558b-4960-9a5d-15dbff6ab705", - "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/eastus/operations/eb42dd44-a72a-433a-ba1f-f50818be75b1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b2eca6a-ae3f-4644-8647-5cfb1c84b0e4" - }, - "Response" : { - "content-length" : "29", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dde6f341-e45a-4f80-a479-ff9fceedbb44", - "Date" : "Mon, 19 Apr 2021 07:35:46 GMT", - "x-ms-arm-service-request-id" : "f435adb6-2795-4879-ae96-41d6de955e49", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073547Z:dde6f341-e45a-4f80-a479-ff9fceedbb44", - "Expires" : "-1", - "x-ms-request-id" : "d571776f-6ecc-4917-a501-86f7e986b0df", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "2b2eca6a-ae3f-4644-8647-5cfb1c84b0e4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "74bd13e1-0d23-41b7-9191-4afdc6fc247b" - }, - "Response" : { - "content-length" : "1308", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d975f4c2-d6f3-46bd-aec9-9669c424bf3b", - "Date" : "Mon, 19 Apr 2021 07:35:47 GMT", - "x-ms-arm-service-request-id" : "2a854ddc-5767-412f-9d0f-47ae023ce5e3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"77a5f88d-7072-49de-89f4-5a60c90a13a7\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073547Z:d975f4c2-d6f3-46bd-aec9-9669c424bf3b", - "Expires" : "-1", - "x-ms-request-id" : "c6776357-6484-46de-9b16-e438b2314217", - "Body" : "{\r\n \"name\": \"vnet301703aa88\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88\",\r\n \"etag\": \"W/\\\"77a5f88d-7072-49de-89f4-5a60c90a13a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"748bb4c7-5dc9-4094-9fb0-3a136ece0b62\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88/subnets/subnet1\",\r\n \"etag\": \"W/\\\"77a5f88d-7072-49de-89f4-5a60c90a13a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "74bd13e1-0d23-41b7-9191-4afdc6fc247b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b438772f-178e-471b-ab1b-9d70e236c7f0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "bcde6556-768d-44a9-8352-389fca14f95b", - "Date" : "Mon, 19 Apr 2021 07:35:52 GMT", - "x-ms-arm-service-request-id" : "3cf27b35-61e7-4324-ae43-d9166440ea1d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073552Z:bcde6556-768d-44a9-8352-389fca14f95b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdf9b0e1-d834-4a34-82e2-eba97920ffb3?api-version=2023-02-01", - "x-ms-request-id" : "cdf9b0e1-d834-4a34-82e2-eba97920ffb3", - "Body" : "{\r\n \"name\": \"nic7200553879b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b\",\r\n \"etag\": \"W/\\\"8ee1d1ef-58ba-4e6d-9f0a-d24d87fe6ae0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"651609ec-1df3-473a-ac8a-3bec2e099e0f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8ee1d1ef-58ba-4e6d-9f0a-d24d87fe6ae0\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/publicIPAddresses/pip19234e11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet301703aa88/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\": \"y40iw3gjlwkebh3qhijw3tqlmc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "b438772f-178e-471b-ab1b-9d70e236c7f0", - "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/ce72a475-5a9f-4c04-a125-72e695073845?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8ded290-be75-45ff-a0e5-f2bd02fc7e42" - }, - "Response" : { - "content-length" : "1815", - "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" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d53103e-d87a-44a8-9859-70d3db82549b", - "Date" : "Mon, 19 Apr 2021 07:36:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073602Z:3d53103e-d87a-44a8-9859-70d3db82549b", - "Expires" : "-1", - "x-ms-request-id" : "455cd1c5-5690-4b32-8098-aab54ac84df7", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Storage/storageAccounts/stg10559c120d35d\",\"name\":\"stg10559c120d35d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:35:43.2969224Z\",\"key2\":\"2021-04-19T07:35:43.2969224Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:35:43.3125474Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:35:43.3125474Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:35:43.1719232Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg10559c120d35d.dfs.core.windows.net/\",\"web\":\"https://stg10559c120d35d.z13.web.core.windows.net/\",\"blob\":\"https://stg10559c120d35d.blob.core.windows.net/\",\"queue\":\"https://stg10559c120d35d.queue.core.windows.net/\",\"table\":\"https://stg10559c120d35d.table.core.windows.net/\",\"file\":\"https://stg10559c120d35d.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg10559c120d35d-secondary.dfs.core.windows.net/\",\"web\":\"https://stg10559c120d35d-secondary.z13.web.core.windows.net/\",\"blob\":\"https://stg10559c120d35d-secondary.blob.core.windows.net/\",\"queue\":\"https://stg10559c120d35d-secondary.queue.core.windows.net/\",\"table\":\"https://stg10559c120d35d-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "a8ded290-be75-45ff-a0e5-f2bd02fc7e42", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Storage/storageAccounts/stg10559c120d35d?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c869b540-b7ce-448a-af24-b5945c101000", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1815", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9297ffa7-cf30-43d5-9484-a1ac4ae4ca37", - "Date" : "Mon, 19 Apr 2021 07:36:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073602Z:9297ffa7-cf30-43d5-9484-a1ac4ae4ca37", - "Expires" : "-1", - "x-ms-request-id" : "f30318c5-4a7a-4707-9cb8-5b1225e0a0a6", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Storage/storageAccounts/stg10559c120d35d\",\"name\":\"stg10559c120d35d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:35:43.2969224Z\",\"key2\":\"2021-04-19T07:35:43.2969224Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:35:43.3125474Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:35:43.3125474Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:35:43.1719232Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg10559c120d35d.dfs.core.windows.net/\",\"web\":\"https://stg10559c120d35d.z13.web.core.windows.net/\",\"blob\":\"https://stg10559c120d35d.blob.core.windows.net/\",\"queue\":\"https://stg10559c120d35d.queue.core.windows.net/\",\"table\":\"https://stg10559c120d35d.table.core.windows.net/\",\"file\":\"https://stg10559c120d35d.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg10559c120d35d-secondary.dfs.core.windows.net/\",\"web\":\"https://stg10559c120d35d-secondary.z13.web.core.windows.net/\",\"blob\":\"https://stg10559c120d35d-secondary.blob.core.windows.net/\",\"queue\":\"https://stg10559c120d35d-secondary.queue.core.windows.net/\",\"table\":\"https://stg10559c120d35d-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "c869b540-b7ce-448a-af24-b5945c101000", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eda13acb-8531-45dd-b7df-fa0194b2fe1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "14398268-0326-425c-9773-3739f174ef44", - "Date" : "Mon, 19 Apr 2021 07:36:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;699,Microsoft.Compute/PutVM30Min;3503", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073606Z:14398268-0326-425c-9773-3739f174ef44", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/86a947aa-c8de-4063-8c2e-679c28ea8e39?api-version=2021-11-01", - "x-ms-request-id" : "86a947aa-c8de-4063-8c2e-679c28ea8e39", - "Body" : "{\r\n \"name\": \"vm17140120a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"64650247-b702-46d2-8f8d-1a1f490eaa76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm17140120a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm17140120a-os-disk-f85817c0-bcc9-463b-8add-7525995d23c0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm17140120a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "eda13acb-8531-45dd-b7df-fa0194b2fe1d", - "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/86a947aa-c8de-4063-8c2e-679c28ea8e39?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "16aac197-9710-442c-8990-d4433c1c0552" - }, - "Response" : { - "content-length" : "133", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44a38c59-4a55-4be7-a8ba-ee0be500d16d", - "Date" : "Mon, 19 Apr 2021 07:36:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073616Z:44a38c59-4a55-4be7-a8ba-ee0be500d16d", - "Expires" : "-1", - "x-ms-request-id" : "5043508d-9c82-4b07-b5db-d7cc1b45a337", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:36:04.789402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"86a947aa-c8de-4063-8c2e-679c28ea8e39\"\r\n}", - "x-ms-client-request-id" : "16aac197-9710-442c-8990-d4433c1c0552", - "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/86a947aa-c8de-4063-8c2e-679c28ea8e39?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b547e626-3386-4240-baf0-add191a43826" - }, - "Response" : { - "content-length" : "183", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebf5701f-35a2-4c3d-8fb1-e978c5830ae1", - "Date" : "Mon, 19 Apr 2021 07:36:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073652Z:ebf5701f-35a2-4c3d-8fb1-e978c5830ae1", - "Expires" : "-1", - "x-ms-request-id" : "cf24142c-06c4-426e-ba53-23cf6a354305", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:36:04.789402+00:00\",\r\n \"endTime\": \"2021-04-19T07:36:27.8989065+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"86a947aa-c8de-4063-8c2e-679c28ea8e39\"\r\n}", - "x-ms-client-request-id" : "b547e626-3386-4240-baf0-add191a43826", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3266f1c9-9829-40b9-88bf-1634db759449" - }, - "Response" : { - "content-length" : "1716", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39d9444d-a2bf-4a1c-bc45-385472acb2b0", - "Date" : "Mon, 19 Apr 2021 07:36:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073652Z:39d9444d-a2bf-4a1c-bc45-385472acb2b0", - "Expires" : "-1", - "x-ms-request-id" : "a543c214-4951-4082-8efa-9c24cc61b894", - "Body" : "{\r\n \"name\": \"vm17140120a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"64650247-b702-46d2-8f8d-1a1f490eaa76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm17140120a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm17140120a-os-disk-f85817c0-bcc9-463b-8add-7525995d23c0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm17140120a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "3266f1c9-9829-40b9-88bf-1634db759449", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "84858254-2c6b-4f1d-a627-949d08021e91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "752", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "5e474d98-4213-47c6-80e6-c413fa0f428f", - "Date" : "Mon, 19 Apr 2021 07:36:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073659Z:5e474d98-4213-47c6-80e6-c413fa0f428f", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/77c4156e-2f0b-4f3f-b41e-13245bdce154?api-version=2021-11-01", - "x-ms-request-id" : "77c4156e-2f0b-4f3f-b41e-13245bdce154", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "84858254-2c6b-4f1d-a627-949d08021e91", - "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/77c4156e-2f0b-4f3f-b41e-13245bdce154?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd2dae78-bdde-4d03-86fd-67b1b6c9253d" - }, - "Response" : { - "content-length" : "134", - "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" : "00e124ad-475a-4bcc-935c-8cb0b7744e84", - "Date" : "Mon, 19 Apr 2021 07:37:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073729Z:00e124ad-475a-4bcc-935c-8cb0b7744e84", - "Expires" : "-1", - "x-ms-request-id" : "e83c6103-067d-4987-9557-a7ec60768eef", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:36:57.1646704+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"77c4156e-2f0b-4f3f-b41e-13245bdce154\"\r\n}", - "x-ms-client-request-id" : "fd2dae78-bdde-4d03-86fd-67b1b6c9253d", - "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/77c4156e-2f0b-4f3f-b41e-13245bdce154?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b26795e5-cff9-4c31-89aa-a745bc50c62e" - }, - "Response" : { - "content-length" : "184", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0e7015a-6822-4dba-a73d-a1bd88392d6c", - "Date" : "Mon, 19 Apr 2021 07:37:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073800Z:d0e7015a-6822-4dba-a73d-a1bd88392d6c", - "Expires" : "-1", - "x-ms-request-id" : "5195ca34-5357-4a6c-ab06-7ba75783c4af", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:36:57.1646704+00:00\",\r\n \"endTime\": \"2021-04-19T07:37:43.5712028+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"77c4156e-2f0b-4f3f-b41e-13245bdce154\"\r\n}", - "x-ms-client-request-id" : "b26795e5-cff9-4c31-89aa-a745bc50c62e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e0f2343-f8cc-42f1-a5e5-cc0a5055e2db" - }, - "Response" : { - "content-length" : "753", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c442d64c-83e2-41a1-a832-b49b0d9d4418", - "Date" : "Mon, 19 Apr 2021 07:37:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073800Z:c442d64c-83e2-41a1-a832-b49b0d9d4418", - "Expires" : "-1", - "x-ms-request-id" : "e80981b6-fd67-44d5-90c8-257296740a9d", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n}", - "x-ms-client-request-id" : "3e0f2343-f8cc-42f1-a5e5-cc0a5055e2db", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6d58f33-22de-43ce-a97a-acd428e7d462", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2551", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a07c81b7-2dbb-40f9-ad92-029f10c5b8d2", - "Date" : "Mon, 19 Apr 2021 07:38:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073800Z:a07c81b7-2dbb-40f9-ad92-029f10c5b8d2", - "Expires" : "-1", - "x-ms-request-id" : "5b3f3e06-1a8e-49ac-9c27-d86eef066ce3", - "Body" : "{\r\n \"name\": \"vm17140120a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"64650247-b702-46d2-8f8d-1a1f490eaa76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm17140120a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm17140120a-os-disk-f85817c0-bcc9-463b-8add-7525995d23c0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm17140120a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "b6d58f33-22de-43ce-a97a-acd428e7d462", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e371cb4-429a-41ba-a0b8-9be5b30150ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "81966f11-96a5-476f-952b-fccdceb13bae", - "Date" : "Mon, 19 Apr 2021 07:38:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073801Z:81966f11-96a5-476f-952b-fccdceb13bae", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a7bd5e7-8817-41c4-b88e-174aaf473841?api-version=2021-11-01", - "x-ms-request-id" : "9a7bd5e7-8817-41c4-b88e-174aaf473841", - "x-ms-client-request-id" : "5e371cb4-429a-41ba-a0b8-9be5b30150ba", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a7bd5e7-8817-41c4-b88e-174aaf473841?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7444075d-4db5-4e90-aca5-9e42eb794a16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "3c9c91eb-7c9e-40b0-a372-bbb4568fe910", - "Date" : "Mon, 19 Apr 2021 07:39:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073901Z:3c9c91eb-7c9e-40b0-a372-bbb4568fe910", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/39e2cf5b-fbde-4374-a5ed-fd8b98c22495?api-version=2021-11-01", - "x-ms-request-id" : "39e2cf5b-fbde-4374-a5ed-fd8b98c22495", - "x-ms-client-request-id" : "7444075d-4db5-4e90-aca5-9e42eb794a16", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/39e2cf5b-fbde-4374-a5ed-fd8b98c22495?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/39e2cf5b-fbde-4374-a5ed-fd8b98c22495?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e0610ef-d7c9-4159-9b30-eca1c4fd534f" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b78017b3-ff79-4a8a-8e2f-89ed316c4a66", - "Date" : "Mon, 19 Apr 2021 07:39:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073911Z:b78017b3-ff79-4a8a-8e2f-89ed316c4a66", - "Expires" : "-1", - "x-ms-request-id" : "86543dae-2443-4b29-939b-0ec29f22d1e7", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:39:01.4310422+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39e2cf5b-fbde-4374-a5ed-fd8b98c22495\"\r\n}", - "x-ms-client-request-id" : "3e0610ef-d7c9-4159-9b30-eca1c4fd534f", - "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/39e2cf5b-fbde-4374-a5ed-fd8b98c22495?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25eee5ae-dd85-4911-a7d8-8697183fb830" - }, - "Response" : { - "content-length" : "184", - "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" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "931c6c51-3f95-4395-aad5-0f962b57e12a", - "Date" : "Mon, 19 Apr 2021 07:39:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073948Z:931c6c51-3f95-4395-aad5-0f962b57e12a", - "Expires" : "-1", - "x-ms-request-id" : "29f79b5d-54cf-4e16-8633-bafa41ddedba", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:39:01.4310422+00:00\",\r\n \"endTime\": \"2021-04-19T07:39:29.1967295+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"39e2cf5b-fbde-4374-a5ed-fd8b98c22495\"\r\n}", - "x-ms-client-request-id" : "25eee5ae-dd85-4911-a7d8-8697183fb830", - "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/39e2cf5b-fbde-4374-a5ed-fd8b98c22495?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "abb2ec52-d286-4155-9486-d9bbfd0fefbb" - }, - "Response" : { - "content-length" : "0", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1811e898-1cdf-4ac4-928b-8a8ac6b40e63", - "Date" : "Mon, 19 Apr 2021 07:39:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073948Z:1811e898-1cdf-4ac4-928b-8a8ac6b40e63", - "Expires" : "-1", - "x-ms-request-id" : "8a708f64-323a-4e64-8055-2d0e714ac940", - "x-ms-client-request-id" : "abb2ec52-d286-4155-9486-d9bbfd0fefbb" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ffdb71a2-a520-4e43-9d4a-a8f1e4f2396f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3357", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eedae5d1-6ace-49c0-b062-aa2647c9ba2b", - "Date" : "Mon, 19 Apr 2021 07:39:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073948Z:eedae5d1-6ace-49c0-b062-aa2647c9ba2b", - "Expires" : "-1", - "x-ms-request-id" : "d030f9aa-b58a-4ece-8478-7c24d6351a08", - "Body" : "{\r\n \"name\": \"vm17140120a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"64650247-b702-46d2-8f8d-1a1f490eaa76\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm17140120a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm17140120a-os-disk-f85817c0-bcc9-463b-8add-7525995d23c0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm17140120a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic7200553879b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm17140120a-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:39:27.1185871+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\": \"2021-04-19T07:39:27.1342461+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "ffdb71a2-a520-4e43-9d4a-a8f1e4f2396f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/generalize?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9bc4c8a-6410-4885-8c41-4291d5de4952", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25f099cc-0e72-4be3-b788-89e4218f5e66", - "Date" : "Mon, 19 Apr 2021 07:39:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073949Z:25f099cc-0e72-4be3-b788-89e4218f5e66", - "Expires" : "-1", - "x-ms-request-id" : "e413c242-1793-4f06-9648-1a08b8769900", - "x-ms-client-request-id" : "c9bc4c8a-6410-4885-8c41-4291d5de4952" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm17140120a/capture?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "53336c6e-a16b-4e73-a56e-4cbacbab63d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "0d0b0fd2-c7b6-4ea6-8af2-93f3d2c33f2a", - "Date" : "Mon, 19 Apr 2021 07:39:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T073950Z:0d0b0fd2-c7b6-4ea6-8af2-93f3d2c33f2a", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/751f9043-a675-4018-818a-472eded5e792?api-version=2021-11-01", - "x-ms-request-id" : "751f9043-a675-4018-818a-472eded5e792", - "x-ms-client-request-id" : "53336c6e-a16b-4e73-a56e-4cbacbab63d9", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/751f9043-a675-4018-818a-472eded5e792?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/751f9043-a675-4018-818a-472eded5e792?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f0bb252-9aaf-4314-ac6b-9530d31c7c60" - }, - "Response" : { - "content-length" : "1494", - "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" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad239164-f5e1-4523-8e40-da0d03e870fe", - "Date" : "Mon, 19 Apr 2021 07:40:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074020Z:ad239164-f5e1-4523-8e40-da0d03e870fe", - "Expires" : "-1", - "x-ms-request-id" : "903d5193-fd81-4f0d-9805-d238b2329cc6", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:39:50.1187492+00:00\",\r\n \"endTime\": \"2021-04-19T07:39:50.5249944+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"vmSize\":{\"type\":\"string\",\"defaultValue\":\"Standard_D2a_v4\"},\"adminUserName\":{\"type\":\"string\"},\"adminPassword\":{\"type\":\"securestring\"},\"networkInterfaceId\":{\"type\":\"string\"}},\"resources\":[{\"name\":\"[parameters('vmName')]\",\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"eastus\",\"apiVersion\":\"2020-12-01\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('vmSize')]\"},\"storageProfile\":{\"osDisk\":{\"osType\":\"Linux\",\"name\":\"img-osDisk.64650247-b702-46d2-8f8d-1a1f490eaa76.vhd\",\"createOption\":\"FromImage\",\"image\":{\"uri\":\"https://stg10559c120d35d.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.64650247-b702-46d2-8f8d-1a1f490eaa76.vhd\"},\"vhd\":{\"uri\":\"https://stg10559c120d35d.blob.core.windows.net/vmcontainer54a61f11-67c4-4b81-96da-b94bc7995c3a/osDisk.54a61f11-67c4-4b81-96da-b94bc7995c3a.vhd\"},\"caching\":\"ReadWrite\"}},\"osProfile\":{\"computerName\":\"[parameters('vmName')]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\"provisioningState\":0}}]}\r\n },\r\n \"name\": \"751f9043-a675-4018-818a-472eded5e792\"\r\n}", - "x-ms-client-request-id" : "1f0bb252-9aaf-4314-ac6b-9530d31c7c60", - "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/751f9043-a675-4018-818a-472eded5e792?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3911307f-b481-424f-9318-ca9ccd22b384" - }, - "Response" : { - "content-length" : "1269", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce516ad6-adec-4d23-a969-5043b837d776", - "Date" : "Mon, 19 Apr 2021 07:40:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074021Z:ce516ad6-adec-4d23-a969-5043b837d776", - "Expires" : "-1", - "x-ms-request-id" : "88763621-e33d-4d7b-b025-1a1c193f7bc5", - "Body" : "{\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"vmSize\":{\"type\":\"string\",\"defaultValue\":\"Standard_D2a_v4\"},\"adminUserName\":{\"type\":\"string\"},\"adminPassword\":{\"type\":\"securestring\"},\"networkInterfaceId\":{\"type\":\"string\"}},\"resources\":[{\"name\":\"[parameters('vmName')]\",\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"eastus\",\"apiVersion\":\"2020-12-01\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('vmSize')]\"},\"storageProfile\":{\"osDisk\":{\"osType\":\"Linux\",\"name\":\"img-osDisk.64650247-b702-46d2-8f8d-1a1f490eaa76.vhd\",\"createOption\":\"FromImage\",\"image\":{\"uri\":\"https://stg10559c120d35d.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.64650247-b702-46d2-8f8d-1a1f490eaa76.vhd\"},\"vhd\":{\"uri\":\"https://stg10559c120d35d.blob.core.windows.net/vmcontainer54a61f11-67c4-4b81-96da-b94bc7995c3a/osDisk.54a61f11-67c4-4b81-96da-b94bc7995c3a.vhd\"},\"caching\":\"ReadWrite\"}},\"osProfile\":{\"computerName\":\"[parameters('vmName')]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\"provisioningState\":0}}]}", - "x-ms-client-request-id" : "3911307f-b481-424f-9318-ca9ccd22b384", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "99972302-b49f-4f4f-aa62-89a32e57b2a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "1da48b24-02f6-4c64-9a31-901f566c899b", - "Date" : "Mon, 19 Apr 2021 07:40:28 GMT", - "x-ms-arm-service-request-id" : "50916c5e-cf1f-442c-b12d-20770b78e399", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074028Z:1da48b24-02f6-4c64-9a31-901f566c899b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2375e339-e31b-46ec-af60-3ed1c8fe858c?api-version=2023-02-01", - "x-ms-request-id" : "2375e339-e31b-46ec-af60-3ed1c8fe858c", - "Body" : "{\r\n \"name\": \"vnet12359dc51a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a\",\r\n \"etag\": \"W/\\\"61350acb-dec0-41c1-8639-d4dc5f50b764\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"91a2e797-7480-41c4-8ce5-d5bf5908ead6\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"61350acb-dec0-41c1-8639-d4dc5f50b764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "99972302-b49f-4f4f-aa62-89a32e57b2a4", - "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/eastus/operations/2375e339-e31b-46ec-af60-3ed1c8fe858c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f4b32b1-de09-43d8-ac35-1bc9424f2f53" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "377b99b5-4a2a-41e5-890d-caca3bee2161", - "Date" : "Mon, 19 Apr 2021 07:40:31 GMT", - "x-ms-arm-service-request-id" : "ce98c7d3-527b-482d-b844-681fc529327d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074031Z:377b99b5-4a2a-41e5-890d-caca3bee2161", - "Expires" : "-1", - "x-ms-request-id" : "ea38582d-ded6-43a4-a04c-95064dbb2dbe", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "2f4b32b1-de09-43d8-ac35-1bc9424f2f53", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "69280e62-2d14-4f68-b0b5-2b53eb1c5126" - }, - "Response" : { - "content-length" : "1308", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0c54576-4b36-4342-a3bb-7fe59a7453b5", - "Date" : "Mon, 19 Apr 2021 07:40:31 GMT", - "x-ms-arm-service-request-id" : "651b9b95-03b5-4516-8923-5980ffa8ac63", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"08ac31f9-8147-441f-bae2-95f490de0796\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074032Z:e0c54576-4b36-4342-a3bb-7fe59a7453b5", - "Expires" : "-1", - "x-ms-request-id" : "a7ea109a-c8fa-4f15-8c21-ae752726f30c", - "Body" : "{\r\n \"name\": \"vnet12359dc51a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a\",\r\n \"etag\": \"W/\\\"08ac31f9-8147-441f-bae2-95f490de0796\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"91a2e797-7480-41c4-8ce5-d5bf5908ead6\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"08ac31f9-8147-441f-bae2-95f490de0796\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "69280e62-2d14-4f68-b0b5-2b53eb1c5126", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14060ab7e1e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eefc58bf-b21f-4f63-a8d8-129bc69c8309", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1660", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "12010480-5bca-4215-bb32-b3ca1aa10491", - "Date" : "Mon, 19 Apr 2021 07:40:35 GMT", - "x-ms-arm-service-request-id" : "5976cd34-b5b9-4d98-ab77-c7acee091735", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074035Z:12010480-5bca-4215-bb32-b3ca1aa10491", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c1b2d1e3-989d-4f65-866d-d5efa5175327?api-version=2023-02-01", - "x-ms-request-id" : "c1b2d1e3-989d-4f65-866d-d5efa5175327", - "Body" : "{\r\n \"name\": \"nic14060ab7e1e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14060ab7e1e\",\r\n \"etag\": \"W/\\\"55b37b3f-a1c3-4181-9999-f69c76a153ba\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce589bd7-c799-4acc-a6fe-9cf90f1db1bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14060ab7e1e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"55b37b3f-a1c3-4181-9999-f69c76a153ba\\\"\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet12359dc51a/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\": \"s5t0femaotceddhf0w5vschk0g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "eefc58bf-b21f-4f63-a8d8-129bc69c8309", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm259248bb3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "21dadd5c-147a-4729-be08-d629c6a04d2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1674", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "6407f344-1f35-494b-afe9-85cddd76bcfd", - "Date" : "Mon, 19 Apr 2021 07:40:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;708,Microsoft.Compute/PutVM30Min;3549", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074043Z:6407f344-1f35-494b-afe9-85cddd76bcfd", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1d76ea52-cdf3-4c13-9225-b07add900ba8?api-version=2021-11-01", - "x-ms-request-id" : "1d76ea52-cdf3-4c13-9225-b07add900ba8", - "Body" : "{\r\n \"name\": \"vm259248bb3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm259248bb3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fb829b06-e79e-455d-870a-7b4a12855b35\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm259248bb3-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.64650247-b702-46d2-8f8d-1a1f490eaa76.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm259248bb3-os-disk-32dcf884-8a48-4439-ae51-6ddeb3592f3c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm259248bb3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14060ab7e1e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "21dadd5c-147a-4729-be08-d629c6a04d2d", - "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/1d76ea52-cdf3-4c13-9225-b07add900ba8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2715002-0183-4f26-98df-0a5a7a03e313" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "81354e95-cec4-4fa2-a145-a75535c1b2a0", - "Date" : "Mon, 19 Apr 2021 07:40:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074053Z:81354e95-cec4-4fa2-a145-a75535c1b2a0", - "Expires" : "-1", - "x-ms-request-id" : "267bd83e-a51c-4739-8125-bcc1fbe8bcee", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:40:41.1189976+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1d76ea52-cdf3-4c13-9225-b07add900ba8\"\r\n}", - "x-ms-client-request-id" : "d2715002-0183-4f26-98df-0a5a7a03e313", - "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/1d76ea52-cdf3-4c13-9225-b07add900ba8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "638a30de-6fef-4700-976c-36bf98800c6c" - }, - "Response" : { - "content-length" : "183", - "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" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15ab0ead-2927-4802-ac5a-5d6e5709f429", - "Date" : "Mon, 19 Apr 2021 07:41:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074128Z:15ab0ead-2927-4802-ac5a-5d6e5709f429", - "Expires" : "-1", - "x-ms-request-id" : "cfb0190d-451b-4147-a269-2bd54361e681", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:40:41.1189976+00:00\",\r\n \"endTime\": \"2021-04-19T07:41:07.337889+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1d76ea52-cdf3-4c13-9225-b07add900ba8\"\r\n}", - "x-ms-client-request-id" : "638a30de-6fef-4700-976c-36bf98800c6c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm259248bb3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ace098f-a79f-4101-a90a-58cc7a1ec060" - }, - "Response" : { - "content-length" : "1702", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "486bc700-7c31-4860-beb4-012e5f6af131", - "Date" : "Mon, 19 Apr 2021 07:41:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074128Z:486bc700-7c31-4860-beb4-012e5f6af131", - "Expires" : "-1", - "x-ms-request-id" : "eaba172f-07b3-4620-a142-15667cae2a93", - "Body" : "{\r\n \"name\": \"vm259248bb3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm259248bb3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fb829b06-e79e-455d-870a-7b4a12855b35\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm259248bb3-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.64650247-b702-46d2-8f8d-1a1f490eaa76.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm259248bb3-os-disk-32dcf884-8a48-4439-ae51-6ddeb3592f3c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm259248bb3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14060ab7e1e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "6ace098f-a79f-4101-a90a-58cc7a1ec060", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm259248bb3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e553693d-516c-438b-bc16-029aa090413c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "ba4a306d-3e57-4923-b05f-3c8710079b69", - "Date" : "Mon, 19 Apr 2021 07:41:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074129Z:ba4a306d-3e57-4923-b05f-3c8710079b69", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8faa56dd-9540-4792-a586-441760e3b353?api-version=2021-11-01", - "x-ms-request-id" : "8faa56dd-9540-4792-a586-441760e3b353", - "x-ms-client-request-id" : "e553693d-516c-438b-bc16-029aa090413c", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8faa56dd-9540-4792-a586-441760e3b353?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8faa56dd-9540-4792-a586-441760e3b353?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "172eeffe-b21d-4a7f-b21c-93a795816f1d" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "429ff394-fb0c-4311-8908-1a2a78464662", - "Date" : "Mon, 19 Apr 2021 07:41:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074139Z:429ff394-fb0c-4311-8908-1a2a78464662", - "Expires" : "-1", - "x-ms-request-id" : "bbcdde5b-9882-43ae-ae39-fc52cfb26464", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:41:29.4160777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8faa56dd-9540-4792-a586-441760e3b353\"\r\n}", - "x-ms-client-request-id" : "172eeffe-b21d-4a7f-b21c-93a795816f1d", - "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/8faa56dd-9540-4792-a586-441760e3b353?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4bd7c01-2539-48ef-95ba-87b625f18cdb" - }, - "Response" : { - "content-length" : "184", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a580ceaa-8626-4c7c-a802-f11f0d7fc0c4", - "Date" : "Mon, 19 Apr 2021 07:42:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074210Z:a580ceaa-8626-4c7c-a802-f11f0d7fc0c4", - "Expires" : "-1", - "x-ms-request-id" : "9ec0e77f-2435-4301-b179-449c3754f5dc", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:41:29.4160777+00:00\",\r\n \"endTime\": \"2021-04-19T07:42:02.7287652+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8faa56dd-9540-4792-a586-441760e3b353\"\r\n}", - "x-ms-client-request-id" : "b4bd7c01-2539-48ef-95ba-87b625f18cdb", - "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/8faa56dd-9540-4792-a586-441760e3b353?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "07a11b07-87d0-4425-b4a7-5440ced0b9eb" - }, - "Response" : { - "content-length" : "0", - "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" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f9f2165-2551-41a2-9447-df50449a0145", - "Date" : "Mon, 19 Apr 2021 07:42:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074210Z:2f9f2165-2551-41a2-9447-df50449a0145", - "Expires" : "-1", - "x-ms-request-id" : "e82b25aa-9496-4c06-a1aa-8726e61c3bcd", - "x-ms-client-request-id" : "07a11b07-87d0-4425-b4a7-5440ced0b9eb" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9561f2f-8097-45b5-9cd3-b965613e6837", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "a351c85c-691e-45dc-8b8b-91d926fc31f9", - "Date" : "Mon, 19 Apr 2021 07:42:15 GMT", - "x-ms-arm-service-request-id" : "e5dbade7-f194-4e53-ac79-8a012d6a6235", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074216Z:a351c85c-691e-45dc-8b8b-91d926fc31f9", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1690d3d2-51f4-4176-8396-77521b474a6f?api-version=2023-02-01", - "x-ms-request-id" : "1690d3d2-51f4-4176-8396-77521b474a6f", - "Body" : "{\r\n \"name\": \"vnet19355cc3b8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8\",\r\n \"etag\": \"W/\\\"ed452ec5-a434-43af-9e45-2e3d100db2bd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cf87829f-4320-4fab-adad-10861e37da34\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ed452ec5-a434-43af-9e45-2e3d100db2bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "b9561f2f-8097-45b5-9cd3-b965613e6837", - "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/eastus/operations/1690d3d2-51f4-4176-8396-77521b474a6f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "57ef3999-0fed-43c1-b9cb-f7b20bbe98fc" - }, - "Response" : { - "content-length" : "29", - "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" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba2fe10f-d7cf-4cee-8cdc-fb51e1b358ec", - "Date" : "Mon, 19 Apr 2021 07:42:19 GMT", - "x-ms-arm-service-request-id" : "ef6bf580-a230-481a-a3b2-beec916eae9c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074219Z:ba2fe10f-d7cf-4cee-8cdc-fb51e1b358ec", - "Expires" : "-1", - "x-ms-request-id" : "5897292f-149b-411c-b72e-ef18ba8c244c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "57ef3999-0fed-43c1-b9cb-f7b20bbe98fc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2c6c506-10df-4682-87b9-b2b061f2b235" - }, - "Response" : { - "content-length" : "1308", - "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" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db0c0827-7479-4d28-9b06-3ff2a3d0b485", - "Date" : "Mon, 19 Apr 2021 07:42:19 GMT", - "x-ms-arm-service-request-id" : "b40ce25e-3397-489c-a66b-34be585c0342", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"8b17da28-b9c9-4fdd-9e30-cfed3bd17da7\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074220Z:db0c0827-7479-4d28-9b06-3ff2a3d0b485", - "Expires" : "-1", - "x-ms-request-id" : "eaefd393-0e7a-481a-9045-2dbe97db59fd", - "Body" : "{\r\n \"name\": \"vnet19355cc3b8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8\",\r\n \"etag\": \"W/\\\"8b17da28-b9c9-4fdd-9e30-cfed3bd17da7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cf87829f-4320-4fab-adad-10861e37da34\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8b17da28-b9c9-4fdd-9e30-cfed3bd17da7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "d2c6c506-10df-4682-87b9-b2b061f2b235", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14783913928?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2a2a4c9-4742-4191-80a2-f901199a4b42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1660", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "a4c5e167-9417-44d3-94b5-b27fd356ce4f", - "Date" : "Mon, 19 Apr 2021 07:42:24 GMT", - "x-ms-arm-service-request-id" : "2df032e9-af56-46f0-b728-3a1189834972", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074225Z:a4c5e167-9417-44d3-94b5-b27fd356ce4f", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/674e995c-8978-4bc4-a938-e125cd2d02a4?api-version=2023-02-01", - "x-ms-request-id" : "674e995c-8978-4bc4-a938-e125cd2d02a4", - "Body" : "{\r\n \"name\": \"nic14783913928\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14783913928\",\r\n \"etag\": \"W/\\\"62787eb0-2b1f-49f9-ab81-f67ba2bd11ab\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"535b4b8d-6cef-4963-8ea4-5a8ec952ce6f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14783913928/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"62787eb0-2b1f-49f9-ab81-f67ba2bd11ab\\\"\",\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/rgcomv0074061/providers/Microsoft.Network/virtualNetworks/vnet19355cc3b8/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\": \"t4biptzaiovu5lnnccdb2n40ge.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "b2a2a4c9-4742-4191-80a2-f901199a4b42", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm31163088d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9961bba0-a4b5-4027-900a-fccf8c260408", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "8d4c2a7b-f9c6-40d7-b8e3-611f9173bdc4", - "Date" : "Mon, 19 Apr 2021 07:42:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;707,Microsoft.Compute/PutVM30Min;3548", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074232Z:8d4c2a7b-f9c6-40d7-b8e3-611f9173bdc4", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2bdc2f14-b5e8-4336-b3d0-c174a91934a0?api-version=2021-11-01", - "x-ms-request-id" : "2bdc2f14-b5e8-4336-b3d0-c174a91934a0", - "Body" : "{\r\n \"name\": \"vm31163088d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm31163088d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c25f30bb-2483-4bf7-a877-279100929f90\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm31163088d-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm259248bb3-os-disk-32dcf884-8a48-4439-ae51-6ddeb3592f3c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14783913928\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "9961bba0-a4b5-4027-900a-fccf8c260408", - "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/2bdc2f14-b5e8-4336-b3d0-c174a91934a0?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b946b50c-a39d-4978-9620-9e4887293f14" - }, - "Response" : { - "content-length" : "184", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cc9037e-6e98-43b1-9c1d-6cab79d753c7", - "Date" : "Mon, 19 Apr 2021 07:42:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074242Z:5cc9037e-6e98-43b1-9c1d-6cab79d753c7", - "Expires" : "-1", - "x-ms-request-id" : "243fc6c6-d186-4f8f-b234-d5a5df8366eb", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:42:29.8226696+00:00\",\r\n \"endTime\": \"2021-04-19T07:42:38.6664479+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2bdc2f14-b5e8-4336-b3d0-c174a91934a0\"\r\n}", - "x-ms-client-request-id" : "b946b50c-a39d-4978-9620-9e4887293f14", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm31163088d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c50e129-8337-4c92-bcc2-61026c1cd87f" - }, - "Response" : { - "content-length" : "1090", - "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" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0ef0892-6e60-4d82-ae1b-4ffd5a379237", - "Date" : "Mon, 19 Apr 2021 07:42:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074242Z:c0ef0892-6e60-4d82-ae1b-4ffd5a379237", - "Expires" : "-1", - "x-ms-request-id" : "951b4ac0-4dd7-4f31-9c36-934e497cc3a8", - "Body" : "{\r\n \"name\": \"vm31163088d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Compute/virtualMachines/vm31163088d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c25f30bb-2483-4bf7-a877-279100929f90\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm31163088d-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10559c120d35d.blob.core.windows.net/vhds/vm259248bb3-os-disk-32dcf884-8a48-4439-ae51-6ddeb3592f3c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0074061/providers/Microsoft.Network/networkInterfaces/nic14783913928\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "1c50e129-8337-4c92-bcc2-61026c1cd87f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0074061?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b1fca191-9193-446c-a8f5-431d9767f51f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "1a636a3d-f23a-46c8-829a-526cd61c4d1f", - "Date" : "Mon, 19 Apr 2021 07:42:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074247Z:1a636a3d-f23a-46c8-829a-526cd61c4d1f", - "Expires" : "-1", - "x-ms-request-id" : "1a636a3d-f23a-46c8-829a-526cd61c4d1f", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDc0MDYxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm17140120a", "vm259248bb3", "vm31163088d", "rgcomv0074061", "pip77516b00", "nic7200553879b", "vnet301703aa88", "pip19234e11", "stg10559c120d35d", "nic14060ab7e1e", "vnet12359dc51a", "nic14783913928", "vnet19355cc3b8" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineExtensionImages.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineExtensionImages.json deleted file mode 100644 index dbf230847909..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineExtensionImages.json +++ /dev/null @@ -1,4143 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0b4da4d-ec8d-418d-843c-da2464b048b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "427463", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "dc6e1bca-88e5-4ce1-bcd2-2b0ffc55dba0_132975581118113597", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "385f0a96-6562-4442-b0cd-c6edf2735536", - "Date" : "Tue, 24 May 2022 13:00:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130001Z:385f0a96-6562-4442-b0cd-c6edf2735536", - "Expires" : "-1", - "x-ms-request-id" : "38afc3fd-9b3a-4b53-9bd4-0f732261133f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"acronis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/acronis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"askforcloudllc1651766049149\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/askforcloudllc1651766049149\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.ManagedServices.TestExtPublisher00\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.ManagedServices.TestExtPublisher00\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bitnami\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitnami\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"erockyenterprisesoftwarefoundationinc1653071250513\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/erockyenterprisesoftwarefoundationinc1653071250513\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iguaziosystemsinc1642090150854\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iguaziosystemsinc1642090150854\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Batch.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Batch.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.HardwareHealthService\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.HardwareHealthService\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.RecoveryServices.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.RecoveryServices.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltsecurity1650441978315\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltsecurity1650441978315\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.WindowsExtension.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Spektra.Cloudlabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Spektra.Cloudlabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zultysinc1596831546163\"\r\n }\r\n]", - "x-ms-client-request-id" : "d0b4da4d-ec8d-418d-843c-da2464b048b9", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3743b922-104a-46b5-9908-48bb5d88cf14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b0fad43-ddfb-4407-8806-b46fade87685", - "Date" : "Tue, 24 May 2022 13:00:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130002Z:2b0fad43-ddfb-4407-8806-b46fade87685", - "Expires" : "-1", - "x-ms-request-id" : "5babe7b7-6f07-409a-a46e-768d14a2ea58", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CustomScript\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"DockerExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"FixEmulatedIO\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/FixEmulatedIO\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"FixLinuxDiagnostic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/FixLinuxDiagnostic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"GuestActionForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/GuestActionForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"GuestActionForWindows\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/GuestActionForWindows\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"LinuxAsm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm\"\r\n }\r\n]", - "x-ms-client-request-id" : "3743b922-104a-46b5-9908-48bb5d88cf14", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a48f03e2-2bd3-463b-b08c-38c5a4affd4c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3387", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e032a53-866d-45c4-9c83-a6cd1b1fc8ae", - "Date" : "Tue, 24 May 2022 13:00:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130002Z:5e032a53-866d-45c4-9c83-a6cd1b1fc8ae", - "Expires" : "-1", - "x-ms-request-id" : "61ae43a3-6aa1-44c4-8e07-317c29ebf86d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.6\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.6\"\r\n }\r\n]", - "x-ms-client-request-id" : "a48f03e2-2bd3-463b-b08c-38c5a4affd4c", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12a01e87-4515-443b-b132-a486bef2a215", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2eba5352-c17e-46ed-adec-d5463274975b", - "Date" : "Tue, 24 May 2022 13:00:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9999,Microsoft.Compute/GetVMExtension30Min;21999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130002Z:2eba5352-c17e-46ed-adec-d5463274975b", - "Expires" : "-1", - "x-ms-request-id" : "fba43742-8b3d-40e4-8f3c-f19fd9b33722", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.0\"\r\n}", - "x-ms-client-request-id" : "12a01e87-4515-443b-b132-a486bef2a215", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "65b1b169-000b-4e4e-a022-d0f36404d590", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b54aa3a0-f7d9-4e7a-a461-9303e482d155", - "Date" : "Tue, 24 May 2022 13:00:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9998,Microsoft.Compute/GetVMExtension30Min;21998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130003Z:b54aa3a0-f7d9-4e7a-a461-9303e482d155", - "Expires" : "-1", - "x-ms-request-id" : "7ed05d60-fa5c-4cba-bebf-7166901be527", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.1\"\r\n}", - "x-ms-client-request-id" : "65b1b169-000b-4e4e-a022-d0f36404d590", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c527582a-cc0f-4aa4-8fcc-c869d807a9e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e57933fd-cd2d-4cd7-b229-997fff837cfb", - "Date" : "Tue, 24 May 2022 13:00:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9997,Microsoft.Compute/GetVMExtension30Min;21997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130003Z:e57933fd-cd2d-4cd7-b229-997fff837cfb", - "Expires" : "-1", - "x-ms-request-id" : "dfc88db0-caa6-483c-857b-0e6f372fe45f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.2\"\r\n}", - "x-ms-client-request-id" : "c527582a-cc0f-4aa4-8fcc-c869d807a9e9", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed086d44-d86a-4706-878f-504745d282f0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "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" : "b1423ac1-0e97-4bd7-a137-b8076355e54b", - "Date" : "Tue, 24 May 2022 13:00:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9996,Microsoft.Compute/GetVMExtension30Min;21996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130003Z:b1423ac1-0e97-4bd7-a137-b8076355e54b", - "Expires" : "-1", - "x-ms-request-id" : "55eed90c-3e2a-4245-b143-953c1b935e66", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.3\"\r\n}", - "x-ms-client-request-id" : "ed086d44-d86a-4706-878f-504745d282f0", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88ba3c04-e079-47e0-9ccd-ebf132977654", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dfd2f233-1de9-4964-b613-c060fc75c4f6", - "Date" : "Tue, 24 May 2022 13:00:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9995,Microsoft.Compute/GetVMExtension30Min;21995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130004Z:dfd2f233-1de9-4964-b613-c060fc75c4f6", - "Expires" : "-1", - "x-ms-request-id" : "aac3e710-0351-463a-87be-ea070230ec05", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.4\"\r\n}", - "x-ms-client-request-id" : "88ba3c04-e079-47e0-9ccd-ebf132977654", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b0d023a-780a-4d8a-935a-657557760262", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "441bd055-c9a2-4918-91b8-5473f8a0c631", - "Date" : "Tue, 24 May 2022 13:00:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9994,Microsoft.Compute/GetVMExtension30Min;21994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130004Z:441bd055-c9a2-4918-91b8-5473f8a0c631", - "Expires" : "-1", - "x-ms-request-id" : "b8c1387d-bf52-4d41-b4fd-50b3fb649fff", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.5\"\r\n}", - "x-ms-client-request-id" : "8b0d023a-780a-4d8a-935a-657557760262", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.6?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3ef70a0-2d82-46d0-a0b8-d7c7c9e3730b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f230a9b-8a2c-4597-963a-fa161faf6518", - "Date" : "Tue, 24 May 2022 13:00:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9993,Microsoft.Compute/GetVMExtension30Min;21993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130004Z:4f230a9b-8a2c-4597-963a-fa161faf6518", - "Expires" : "-1", - "x-ms-request-id" : "ea9f9333-01d3-4738-9b74-c6b7e3049475", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.6\"\r\n}", - "x-ms-client-request-id" : "e3ef70a0-2d82-46d0-a0b8-d7c7c9e3730b", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.7?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7100bd5b-a87f-4594-8b79-2cbde61aece9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1d3b939-fd4a-4782-825a-2df1b0e5c931", - "Date" : "Tue, 24 May 2022 13:00:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9992,Microsoft.Compute/GetVMExtension30Min;21992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130005Z:a1d3b939-fd4a-4782-825a-2df1b0e5c931", - "Expires" : "-1", - "x-ms-request-id" : "92068d79-1de0-4f73-93b5-2fc4c4cd0906", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.7\"\r\n}", - "x-ms-client-request-id" : "7100bd5b-a87f-4594-8b79-2cbde61aece9", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.1.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afc5eeae-c31d-413b-b25d-4350fd93e128", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05043b1c-96dc-4380-94d5-38f869f40afc", - "Date" : "Tue, 24 May 2022 13:00:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9991,Microsoft.Compute/GetVMExtension30Min;21991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130005Z:05043b1c-96dc-4380-94d5-38f869f40afc", - "Expires" : "-1", - "x-ms-request-id" : "ecd3ff5f-cf31-485e-a8b9-6ebb86264f95", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.1\"\r\n}", - "x-ms-client-request-id" : "afc5eeae-c31d-413b-b25d-4350fd93e128", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.1.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acdf0814-e03d-4dcf-bbf9-54cc2b9e3a94", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8088f790-5f68-4468-9ef9-ab9e10176963", - "Date" : "Tue, 24 May 2022 13:00:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9990,Microsoft.Compute/GetVMExtension30Min;21990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130005Z:8088f790-5f68-4468-9ef9-ab9e10176963", - "Expires" : "-1", - "x-ms-request-id" : "7b37cc51-c1a1-44f7-94e1-20a7f96e5d4f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.2\"\r\n}", - "x-ms-client-request-id" : "acdf0814-e03d-4dcf-bbf9-54cc2b9e3a94", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.1.3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03340bd0-4c2e-41fb-a067-107cea12cb94", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af8d508f-6c2d-4ec6-9ad4-9dd257acaefc", - "Date" : "Tue, 24 May 2022 13:00:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9989,Microsoft.Compute/GetVMExtension30Min;21989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130005Z:af8d508f-6c2d-4ec6-9ad4-9dd257acaefc", - "Expires" : "-1", - "x-ms-request-id" : "95e36930-6ff7-4b08-8516-5f1af6aad09f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.3\"\r\n}", - "x-ms-client-request-id" : "03340bd0-4c2e-41fb-a067-107cea12cb94", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.1.6?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "58f50559-81b4-47e1-8a08-d746bc867c78", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59ccd887-84ee-42fe-8329-c00f9232903d", - "Date" : "Tue, 24 May 2022 13:00:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9988,Microsoft.Compute/GetVMExtension30Min;21988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130006Z:59ccd887-84ee-42fe-8329-c00f9232903d", - "Expires" : "-1", - "x-ms-request-id" : "ec4839fa-18d4-47d5-bf3d-094f07272df9", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.1.6\"\r\n}", - "x-ms-client-request-id" : "58f50559-81b4-47e1-8a08-d746bc867c78", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93fa4d9a-6322-4af0-bac2-cd2e2dc41841", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2997", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d59c7cbf-b0c5-4f77-aa10-eec6e068d638", - "Date" : "Tue, 24 May 2022 13:00:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9998,Microsoft.Compute/ListVMExtensions30Min;21998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130006Z:d59c7cbf-b0c5-4f77-aa10-eec6e068d638", - "Expires" : "-1", - "x-ms-request-id" : "fb519d6d-760f-4fd5-b55e-194bea6e2b0e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1512030601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.0.1512030601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512090359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512090359\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512180541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512180541\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601070410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601070410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601140348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601140348\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1602270800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1602270800\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1604142300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1604142300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1606092330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1606092330\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.2\"\r\n }\r\n]", - "x-ms-client-request-id" : "93fa4d9a-6322-4af0-bac2-cd2e2dc41841", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.0.1512030601?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69a05e97-64b4-491d-942f-42d4798e7918", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e25794ac-df9e-4693-ae72-124456d2c457", - "Date" : "Tue, 24 May 2022 13:00:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9987,Microsoft.Compute/GetVMExtension30Min;21987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130006Z:e25794ac-df9e-4693-ae72-124456d2c457", - "Expires" : "-1", - "x-ms-request-id" : "cab20fbe-2e65-4e1a-a3bf-5cfd3ad99383", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1512030601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.0.1512030601\"\r\n}", - "x-ms-client-request-id" : "69a05e97-64b4-491d-942f-42d4798e7918", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1512090359?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54ed4822-a014-41eb-a484-fb9ac7f69fdd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4de7e47a-45fe-49ef-9445-cf8ffeb6c5e2", - "Date" : "Tue, 24 May 2022 13:00:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9986,Microsoft.Compute/GetVMExtension30Min;21986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130007Z:4de7e47a-45fe-49ef-9445-cf8ffeb6c5e2", - "Expires" : "-1", - "x-ms-request-id" : "1c2ed692-50c6-4eec-b75e-e762165088d3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512090359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512090359\"\r\n}", - "x-ms-client-request-id" : "54ed4822-a014-41eb-a484-fb9ac7f69fdd", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1512180541?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e79a8596-e019-43da-8fe7-eb59c13f3d8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc811af2-14a5-46c7-8d1b-a23f3152afa6", - "Date" : "Tue, 24 May 2022 13:00:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9985,Microsoft.Compute/GetVMExtension30Min;21985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130007Z:fc811af2-14a5-46c7-8d1b-a23f3152afa6", - "Expires" : "-1", - "x-ms-request-id" : "198db325-88a0-4645-8405-40e34f361f1d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512180541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512180541\"\r\n}", - "x-ms-client-request-id" : "e79a8596-e019-43da-8fe7-eb59c13f3d8a", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1601070410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14b27d13-9f9c-4b2b-b762-dc0cb8959319", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "979f4506-93ca-4e4c-bc88-64778792b4d8", - "Date" : "Tue, 24 May 2022 13:00:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9984,Microsoft.Compute/GetVMExtension30Min;21984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130007Z:979f4506-93ca-4e4c-bc88-64778792b4d8", - "Expires" : "-1", - "x-ms-request-id" : "bf85caef-61f9-4780-833d-a8f854b3a6a6", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601070410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601070410\"\r\n}", - "x-ms-client-request-id" : "14b27d13-9f9c-4b2b-b762-dc0cb8959319", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1601140348?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d8cc532-0c77-4c24-8c67-95a75551573e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7dbc6dea-98ed-408a-82af-2de27a223045", - "Date" : "Tue, 24 May 2022 13:00:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9983,Microsoft.Compute/GetVMExtension30Min;21983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130008Z:7dbc6dea-98ed-408a-82af-2de27a223045", - "Expires" : "-1", - "x-ms-request-id" : "f36831b3-17f1-4df5-8fcc-d262e87608f9", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601140348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601140348\"\r\n}", - "x-ms-client-request-id" : "6d8cc532-0c77-4c24-8c67-95a75551573e", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1602270800?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8de63ac1-014e-48da-ac30-ed1e0fed3ec9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6f54031-4f6f-4c86-befc-c606da9985aa", - "Date" : "Tue, 24 May 2022 13:00:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9982,Microsoft.Compute/GetVMExtension30Min;21982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130008Z:f6f54031-4f6f-4c86-befc-c606da9985aa", - "Expires" : "-1", - "x-ms-request-id" : "513e0500-dc2c-450c-a950-0e4a9615c50b", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1602270800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1602270800\"\r\n}", - "x-ms-client-request-id" : "8de63ac1-014e-48da-ac30-ed1e0fed3ec9", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1604142300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97c17de0-110f-4e6c-91c7-f0d8389af398", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27c2f420-215f-40e8-b8ce-0bd4d44dc0f4", - "Date" : "Tue, 24 May 2022 13:00:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9981,Microsoft.Compute/GetVMExtension30Min;21981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130008Z:27c2f420-215f-40e8-b8ce-0bd4d44dc0f4", - "Expires" : "-1", - "x-ms-request-id" : "9685d60c-a453-4e3f-bd40-5a963a2a5efb", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1604142300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1604142300\"\r\n}", - "x-ms-client-request-id" : "97c17de0-110f-4e6c-91c7-f0d8389af398", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1606092330?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42d970b1-e062-4a73-bf7d-28a8cec873cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "670", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5dec85a7-03c7-4186-aa64-b3450d2f72e8", - "Date" : "Tue, 24 May 2022 13:00:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9980,Microsoft.Compute/GetVMExtension30Min;21980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130008Z:5dec85a7-03c7-4186-aa64-b3450d2f72e8", - "Expires" : "-1", - "x-ms-request-id" : "d9e3c109-7210-48f1-be05-453e9d2f6d4f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1606092330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1606092330\"\r\n}", - "x-ms-client-request-id" : "42d970b1-e062-4a73-bf7d-28a8cec873cb", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.2.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "086339fa-67f1-43a9-ba32-5a7cbfebe8f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "652", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc2f5fd8-1f8d-4697-a621-b3e258dcb12e", - "Date" : "Tue, 24 May 2022 13:00:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9979,Microsoft.Compute/GetVMExtension30Min;21979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130009Z:fc2f5fd8-1f8d-4697-a621-b3e258dcb12e", - "Expires" : "-1", - "x-ms-request-id" : "2a036a04-6c90-4e9d-af64-6ad444e2f8f5", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.0\"\r\n}", - "x-ms-client-request-id" : "086339fa-67f1-43a9-ba32-5a7cbfebe8f7", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.2.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b686bfc-2354-4d38-8606-1aa415127999", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "650", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f5af6cf-2f5e-4ca4-b944-317d11894392", - "Date" : "Tue, 24 May 2022 13:00:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9978,Microsoft.Compute/GetVMExtension30Min;21978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130009Z:0f5af6cf-2f5e-4ca4-b944-317d11894392", - "Expires" : "-1", - "x-ms-request-id" : "7c268732-c195-47c1-b170-5c0aabeb85be", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.2\"\r\n}", - "x-ms-client-request-id" : "6b686bfc-2354-4d38-8606-1aa415127999", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/FixEmulatedIO/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "733ec3d8-e6bd-47c3-afb6-d49961d7c206", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "286", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac177a7e-d458-44c6-8a31-d3d5b21511a9", - "Date" : "Tue, 24 May 2022 13:00:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9997,Microsoft.Compute/ListVMExtensions30Min;21997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130009Z:ac177a7e-d458-44c6-8a31-d3d5b21511a9", - "Expires" : "-1", - "x-ms-request-id" : "d455b586-2fab-410d-b397-ffda5e1aaa98", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/FixEmulatedIO/Versions/1.0.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "733ec3d8-e6bd-47c3-afb6-d49961d7c206", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/FixEmulatedIO/versions/1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c18033b-130b-49ba-933d-13ae54a1f81a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "650", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb31349c-afcb-4346-9835-48c87498e77c", - "Date" : "Tue, 24 May 2022 13:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9977,Microsoft.Compute/GetVMExtension30Min;21977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130010Z:cb31349c-afcb-4346-9835-48c87498e77c", - "Expires" : "-1", - "x-ms-request-id" : "163a1137-1c88-4664-8045-a251c30215d0", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/FixEmulatedIO/Versions/1.0.0\"\r\n}", - "x-ms-client-request-id" : "0c18033b-130b-49ba-933d-13ae54a1f81a", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/FixLinuxDiagnostic/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "30997ca1-0727-4e49-8f15-4b66caf7fcdd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "291", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1458e338-3d29-4226-afa7-de9afdc6b3d9", - "Date" : "Tue, 24 May 2022 13:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9996,Microsoft.Compute/ListVMExtensions30Min;21996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130010Z:1458e338-3d29-4226-afa7-de9afdc6b3d9", - "Expires" : "-1", - "x-ms-request-id" : "5e2f17dd-1e9d-4e56-a32c-7e47a2fdbf39", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/FixLinuxDiagnostic/Versions/1.0.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "30997ca1-0727-4e49-8f15-4b66caf7fcdd", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/FixLinuxDiagnostic/versions/1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50869cfd-0a17-4282-b8b4-734f96c1c6aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "655", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9389b0a2-c8ba-400e-a610-c61ad3861695", - "Date" : "Tue, 24 May 2022 13:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9976,Microsoft.Compute/GetVMExtension30Min;21976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130010Z:9389b0a2-c8ba-400e-a610-c61ad3861695", - "Expires" : "-1", - "x-ms-request-id" : "2828ee30-a2dd-494d-9b75-6e5876468416", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/FixLinuxDiagnostic/Versions/1.0.0\"\r\n}", - "x-ms-client-request-id" : "50869cfd-0a17-4282-b8b4-734f96c1c6aa", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/GuestActionForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43232dfe-447a-4dbc-bd4a-c96a531d434d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "292", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc985eb7-924e-41c4-abbe-ecdefeb109f9", - "Date" : "Tue, 24 May 2022 13:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9995,Microsoft.Compute/ListVMExtensions30Min;21995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130010Z:bc985eb7-924e-41c4-abbe-ecdefeb109f9", - "Expires" : "-1", - "x-ms-request-id" : "49c8f02e-8c52-4f0b-90a4-fbba081c0566", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/GuestActionForLinux/Versions/1.0.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "43232dfe-447a-4dbc-bd4a-c96a531d434d", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/GuestActionForLinux/versions/1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e29f7077-f5b1-4331-9bcd-9adbdaae3085", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e5a5d3e-2898-49e3-9afd-ed9d37a77c7e", - "Date" : "Tue, 24 May 2022 13:00:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9975,Microsoft.Compute/GetVMExtension30Min;21975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130011Z:0e5a5d3e-2898-49e3-9afd-ed9d37a77c7e", - "Expires" : "-1", - "x-ms-request-id" : "41f89244-ad51-4c45-adf5-86f00d4a368c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/GuestActionForLinux/Versions/1.0.0\"\r\n}", - "x-ms-client-request-id" : "e29f7077-f5b1-4331-9bcd-9adbdaae3085", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/GuestActionForWindows/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f21e2c6-792d-4aab-82c0-ccdbb1996fe6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "294", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "90757116-d127-42cd-8f51-5bb0d97e4dbf", - "Date" : "Tue, 24 May 2022 13:00:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9994,Microsoft.Compute/ListVMExtensions30Min;21994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130011Z:90757116-d127-42cd-8f51-5bb0d97e4dbf", - "Expires" : "-1", - "x-ms-request-id" : "7b09249e-a502-49c1-b7df-308ef357af4e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/GuestActionForWindows/Versions/1.0.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "5f21e2c6-792d-4aab-82c0-ccdbb1996fe6", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/GuestActionForWindows/versions/1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d92cc89-7db1-4a2a-8b7d-b6823b869cd3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "580", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57cb000d-78f2-499a-b982-5affdb10d2d7", - "Date" : "Tue, 24 May 2022 13:00:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9974,Microsoft.Compute/GetVMExtension30Min;21974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130011Z:57cb000d-78f2-499a-b982-5affdb10d2d7", - "Expires" : "-1", - "x-ms-request-id" : "5934eb31-fa4b-4125-8a0c-508199b0d657", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/GuestActionForWindows/Versions/1.0.0\"\r\n}", - "x-ms-client-request-id" : "1d92cc89-7db1-4a2a-8b7d-b6823b869cd3", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80faa28e-e7ef-445e-b121-daeaf9bb172f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2505", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1af902c-770e-4eba-bcc2-8cea0fa06984", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9993,Microsoft.Compute/ListVMExtensions30Min;21993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130012Z:e1af902c-770e-4eba-bcc2-8cea0fa06984", - "Expires" : "-1", - "x-ms-request-id" : "0a717f6a-ab80-4318-bdb2-02c237ec2a53", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.5\"\r\n }\r\n]", - "x-ms-client-request-id" : "80faa28e-e7ef-445e-b121-daeaf9bb172f", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c49d67f-270d-486c-9e87-495d6e6177e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4cd3b7d2-6f0d-4ab8-bcb8-e89145190369", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9973,Microsoft.Compute/GetVMExtension30Min;21973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130012Z:4cd3b7d2-6f0d-4ab8-bcb8-e89145190369", - "Expires" : "-1", - "x-ms-request-id" : "75af189d-afa4-449d-aaaf-8d07e7ae9628", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.0.1\"\r\n}", - "x-ms-client-request-id" : "0c49d67f-270d-486c-9e87-495d6e6177e4", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "804a160a-548d-433e-b310-4a6c05aefe38", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9acb86cd-82d4-469d-a694-c9a455d76bde", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9972,Microsoft.Compute/GetVMExtension30Min;21972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130012Z:9acb86cd-82d4-469d-a694-c9a455d76bde", - "Expires" : "-1", - "x-ms-request-id" : "0cce1321-6511-4a08-82f2-c05d19582fd0", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.0\"\r\n}", - "x-ms-client-request-id" : "804a160a-548d-433e-b310-4a6c05aefe38", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.1.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c43cdd6-c32c-4939-8b93-69d345abac44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "235764e3-cc2b-4792-b7e2-77b7d2ceda13", - "Date" : "Tue, 24 May 2022 13:00:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9971,Microsoft.Compute/GetVMExtension30Min;21971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:235764e3-cc2b-4792-b7e2-77b7d2ceda13", - "Expires" : "-1", - "x-ms-request-id" : "f63d538b-180f-4381-8fc8-e6c73ba3d473", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.1\"\r\n}", - "x-ms-client-request-id" : "1c43cdd6-c32c-4939-8b93-69d345abac44", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "597481cc-75e5-4baa-9162-af500474a57c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6a1a908-7279-4002-b728-c5dd1c5ec503", - "Date" : "Tue, 24 May 2022 13:00:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9970,Microsoft.Compute/GetVMExtension30Min;21970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:e6a1a908-7279-4002-b728-c5dd1c5ec503", - "Expires" : "-1", - "x-ms-request-id" : "06a08658-65c9-4033-9120-1eb7bdf1f14e", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.0\"\r\n}", - "x-ms-client-request-id" : "597481cc-75e5-4baa-9162-af500474a57c", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d612e7a5-38ec-4aa5-8d98-f2769872b0cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96b72fff-7b7b-4f38-a421-e58af172e46c", - "Date" : "Tue, 24 May 2022 13:00:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9969,Microsoft.Compute/GetVMExtension30Min;21969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:96b72fff-7b7b-4f38-a421-e58af172e46c", - "Expires" : "-1", - "x-ms-request-id" : "49e55a9c-6f62-47e8-974a-4a2097928c0a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.1\"\r\n}", - "x-ms-client-request-id" : "d612e7a5-38ec-4aa5-8d98-f2769872b0cf", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8bdc9bf-e635-46f0-b3d4-f05ba5c21bcf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db7f297d-9c92-4bbf-9b5b-6529ce9aa5f1", - "Date" : "Tue, 24 May 2022 13:00:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9968,Microsoft.Compute/GetVMExtension30Min;21968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:db7f297d-9c92-4bbf-9b5b-6529ce9aa5f1", - "Expires" : "-1", - "x-ms-request-id" : "43aa04ee-5e8e-4241-a8be-b5d89ee92fe6", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.2\"\r\n}", - "x-ms-client-request-id" : "b8bdc9bf-e635-46f0-b3d4-f05ba5c21bcf", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1de8c217-3f46-4750-a73c-714570994833", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15bdb882-3dc3-4654-8e81-3a2067ef2afd", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9967,Microsoft.Compute/GetVMExtension30Min;21967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130014Z:15bdb882-3dc3-4654-8e81-3a2067ef2afd", - "Expires" : "-1", - "x-ms-request-id" : "8de1e7a5-ee33-4590-b053-8bd74171dbb2", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.3\"\r\n}", - "x-ms-client-request-id" : "1de8c217-3f46-4750-a73c-714570994833", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77641e45-2130-4f78-a390-0b0758a52a96", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "babfcabe-d66b-46a8-964d-9014e0d72afa", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9966,Microsoft.Compute/GetVMExtension30Min;21966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130014Z:babfcabe-d66b-46a8-964d-9014e0d72afa", - "Expires" : "-1", - "x-ms-request-id" : "014193cf-c80e-4caf-b4f6-987433aa37a1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.4\"\r\n}", - "x-ms-client-request-id" : "77641e45-2130-4f78-a390-0b0758a52a96", - "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/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fdf7205-788b-452a-a0f3-c3fda785635e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "600", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_132966356271781222", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6d87e49-0d23-4704-8e2d-2e66a4c9a60a", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9965,Microsoft.Compute/GetVMExtension30Min;21965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130014Z:f6d87e49-0d23-4704-8e2d-2e66a4c9a60a", - "Expires" : "-1", - "x-ms-request-id" : "ff7352ab-1b16-4d43-8448-37d510f4a3d1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.5\"\r\n}", - "x-ms-client-request-id" : "8fdf7205-788b-452a-a0f3-c3fda785635e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4dbf95e2-8ad9-4068-a07c-efff44595b19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2847", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74542a79-f331-4fe7-8783-581dc49335be", - "Date" : "Tue, 24 May 2022 13:00:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensionTypes3Min;17999,Microsoft.Compute/ListVMExtensionTypes30Min;22499", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130015Z:74542a79-f331-4fe7-8783-581dc49335be", - "Expires" : "-1", - "x-ms-request-id" : "41dd810b-33c8-483c-8f4c-fb32b6927969", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureDiskEncryptionForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"DSCForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Null\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OSPatchingForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RDMAUpdateForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"VMBackupForLinuxExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension\"\r\n }\r\n]", - "x-ms-client-request-id" : "4dbf95e2-8ad9-4068-a07c-efff44595b19", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureDiskEncryptionForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72974340-8fca-4b4f-8d31-e5c3f588edca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "312", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89cb01cd-073b-444b-95f8-533ca75a296d", - "Date" : "Tue, 24 May 2022 13:00:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9999,Microsoft.Compute/ListVMExtensions30Min;21999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130015Z:89cb01cd-073b-444b-95f8-533ca75a296d", - "Expires" : "-1", - "x-ms-request-id" : "7717d9e2-1a62-4ae7-ad53-b2c294bc7133", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.999105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux/Versions/0.1.0.999105\"\r\n }\r\n]", - "x-ms-client-request-id" : "72974340-8fca-4b4f-8d31-e5c3f588edca", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureDiskEncryptionForLinux/versions/0.1.0.999105?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbd2dd12-71cf-42a6-8ad3-199ca52cc566", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "596", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "580ea6dd-0915-48ad-8b9b-57c9294d5af1", - "Date" : "Tue, 24 May 2022 13:00:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9999,Microsoft.Compute/GetVMExtension30Min;21999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130015Z:580ea6dd-0915-48ad-8b9b-57c9294d5af1", - "Expires" : "-1", - "x-ms-request-id" : "10a2484d-5aeb-404a-b329-ccd277f7fb76", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.999105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux/Versions/0.1.0.999105\"\r\n}", - "x-ms-client-request-id" : "bbd2dd12-71cf-42a6-8ad3-199ca52cc566", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a41abb47-3502-418b-9f11-4a3998e52ae5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2109", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2706d57a-bd79-45ab-8d95-4f26ab3dd8eb", - "Date" : "Tue, 24 May 2022 13:00:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9998,Microsoft.Compute/ListVMExtensions30Min;21998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:2706d57a-bd79-45ab-8d95-4f26ab3dd8eb", - "Expires" : "-1", - "x-ms-request-id" : "c9937943-3cfd-4d3f-a865-f846057c9dcf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/2.0.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.97\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.97\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.98\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.98\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.99\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.99\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.1.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "a41abb47-3502-418b-9f11-4a3998e52ae5", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/2.0.0.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5489ed7b-7037-4fe5-9ad4-ad067da21417", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "624", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9cd12a52-fec0-4e45-a616-33411ae28eee", - "Date" : "Tue, 24 May 2022 13:00:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9998,Microsoft.Compute/GetVMExtension30Min;21998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:9cd12a52-fec0-4e45-a616-33411ae28eee", - "Expires" : "-1", - "x-ms-request-id" : "275d0f99-8bc8-4410-9b99-dc80a49dc410", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/2.0.0.2\"\r\n}", - "x-ms-client-request-id" : "5489ed7b-7037-4fe5-9ad4-ad067da21417", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f8544b5-df92-4fc5-90ec-cc381fcd1979", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "624", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cea43a45-daf1-4752-bdf3-b3844b05f4a4", - "Date" : "Tue, 24 May 2022 13:00:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9997,Microsoft.Compute/GetVMExtension30Min;21997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:cea43a45-daf1-4752-bdf3-b3844b05f4a4", - "Expires" : "-1", - "x-ms-request-id" : "af113166-4cca-4085-b18a-46606b23ddfc", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.1\"\r\n}", - "x-ms-client-request-id" : "6f8544b5-df92-4fc5-90ec-cc381fcd1979", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b1539754-a1dc-48f0-9f7b-5433d1788646", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "624", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a85ec885-a3b0-40be-b6e4-006b097213a1", - "Date" : "Tue, 24 May 2022 13:00:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9996,Microsoft.Compute/GetVMExtension30Min;21996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:a85ec885-a3b0-40be-b6e4-006b097213a1", - "Expires" : "-1", - "x-ms-request-id" : "da8241b6-d714-408d-bbf9-6218dd9ed545", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.5\"\r\n}", - "x-ms-client-request-id" : "b1539754-a1dc-48f0-9f7b-5433d1788646", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.97?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b274a882-9e04-45b2-86eb-571d7ce66853", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "626", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "639346f7-5d3a-427d-be59-e6a9a0640e42", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9995,Microsoft.Compute/GetVMExtension30Min;21995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:639346f7-5d3a-427d-be59-e6a9a0640e42", - "Expires" : "-1", - "x-ms-request-id" : "38829df1-4b5b-44a5-a861-3e59efe29c2c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.97\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.97\"\r\n}", - "x-ms-client-request-id" : "b274a882-9e04-45b2-86eb-571d7ce66853", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.98?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d592ae27-bcda-42a6-ba5a-7f502bd187c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "626", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d782c86-8012-4d74-85ab-519b469a20de", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9994,Microsoft.Compute/GetVMExtension30Min;21994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:6d782c86-8012-4d74-85ab-519b469a20de", - "Expires" : "-1", - "x-ms-request-id" : "55adc3cc-6578-4667-84c4-39ccf91a25ef", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.98\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.98\"\r\n}", - "x-ms-client-request-id" : "d592ae27-bcda-42a6-ba5a-7f502bd187c6", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.99?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7af8114e-3e42-4a15-888f-557fb9d0441e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "626", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87da3222-9b81-4f2f-8227-8cf435470f2b", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9993,Microsoft.Compute/GetVMExtension30Min;21993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:87da3222-9b81-4f2f-8227-8cf435470f2b", - "Expires" : "-1", - "x-ms-request-id" : "febd5a4d-d310-4ed4-952e-a08ab979eb96", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.99\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.99\"\r\n}", - "x-ms-client-request-id" : "7af8114e-3e42-4a15-888f-557fb9d0441e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "627b58ce-f964-42a4-8ac2-00e7b93745a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "624", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73fe6600-6d6b-4861-bbab-487c0345843b", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9992,Microsoft.Compute/GetVMExtension30Min;21992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:73fe6600-6d6b-4861-bbab-487c0345843b", - "Expires" : "-1", - "x-ms-request-id" : "9b2f97f6-17d7-474e-bdc4-041d1e798e6c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.1.0\"\r\n}", - "x-ms-client-request-id" : "627b58ce-f964-42a4-8ac2-00e7b93745a3", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fd44f2a-c700-4996-811b-0f76478b547a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4639", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98cb3b55-3307-476d-96aa-b0d2a2b155fc", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9997,Microsoft.Compute/ListVMExtensions30Min;21997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:98cb3b55-3307-476d-96aa-b0d2a2b155fc", - "Expires" : "-1", - "x-ms-request-id" : "4661447b-9672-439f-923e-c59311b88710", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.5\"\r\n }\r\n]", - "x-ms-client-request-id" : "9fd44f2a-c700-4996-811b-0f76478b547a", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfe924f7-fe75-4b11-9544-ea5a6fc25d06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "608", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f29c179-1276-4e42-b7a6-b0387f6e4862", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9991,Microsoft.Compute/GetVMExtension30Min;21991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:7f29c179-1276-4e42-b7a6-b0387f6e4862", - "Expires" : "-1", - "x-ms-request-id" : "0537b4e5-9f28-4b3d-b1c3-e9963542b24d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0\"\r\n}", - "x-ms-client-request-id" : "dfe924f7-fe75-4b11-9544-ea5a6fc25d06", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7818157-ffa6-41ee-9da0-a63268138e7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e19f91f-4a19-4c44-b072-a3719278c64f", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9990,Microsoft.Compute/GetVMExtension30Min;21990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:3e19f91f-4a19-4c44-b072-a3719278c64f", - "Expires" : "-1", - "x-ms-request-id" : "ba286542-f3fe-4fa3-987d-6e854cf02b6c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0.1\"\r\n}", - "x-ms-client-request-id" : "f7818157-ffa6-41ee-9da0-a63268138e7c", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b92256d7-39bd-4a41-b4e7-6fccf59acfde", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "608", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7df70e05-587d-4c51-824c-3b41fda5ce8a", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9989,Microsoft.Compute/GetVMExtension30Min;21989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:7df70e05-587d-4c51-824c-3b41fda5ce8a", - "Expires" : "-1", - "x-ms-request-id" : "291142e4-9edf-4ed6-bebe-18614091a8d4", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1\"\r\n}", - "x-ms-client-request-id" : "b92256d7-39bd-4a41-b4e7-6fccf59acfde", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.1.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e0b6cec-72be-47e7-9985-77720c5c3a48", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a40177e-6d2c-483e-8fce-57cb3d572915", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9988,Microsoft.Compute/GetVMExtension30Min;21988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130020Z:0a40177e-6d2c-483e-8fce-57cb3d572915", - "Expires" : "-1", - "x-ms-request-id" : "f6a40063-efc8-4893-9edc-6b3ee5b74346", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1.1\"\r\n}", - "x-ms-client-request-id" : "6e0b6cec-72be-47e7-9985-77720c5c3a48", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.2.2.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b8b507e-419f-4565-ad14-8c3df1d3421d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "616", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "660fcd59-6deb-4095-b742-6f45a14dddc5", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9987,Microsoft.Compute/GetVMExtension30Min;21987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130020Z:660fcd59-6deb-4095-b742-6f45a14dddc5", - "Expires" : "-1", - "x-ms-request-id" : "822ebfa4-2229-4d58-96b4-af12c277b8a1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.2.0\"\r\n}", - "x-ms-client-request-id" : "3b8b507e-419f-4565-ad14-8c3df1d3421d", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4e51b6b-34c1-456d-a87a-03cfb97ed601", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7b85c97-d9dd-4202-abc4-539e31218ab8", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9986,Microsoft.Compute/GetVMExtension30Min;21986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130020Z:d7b85c97-d9dd-4202-abc4-539e31218ab8", - "Expires" : "-1", - "x-ms-request-id" : "d0baa821-e24a-473f-97b7-1fd0e8d64ac2", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.0\"\r\n}", - "x-ms-client-request-id" : "c4e51b6b-34c1-456d-a87a-03cfb97ed601", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "780336fa-c963-4b32-a2b4-c078ca7fb796", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c5b75ec-cd05-4c94-9f2b-9a352c546c91", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9985,Microsoft.Compute/GetVMExtension30Min;21985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:0c5b75ec-cd05-4c94-9f2b-9a352c546c91", - "Expires" : "-1", - "x-ms-request-id" : "3b2f771c-3789-4691-ba4e-8fda63405605", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.1\"\r\n}", - "x-ms-client-request-id" : "780336fa-c963-4b32-a2b4-c078ca7fb796", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a60f338-40d7-4181-b101-ee6b83f77160", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2bee43a0-5eb8-48a2-a7d8-7a6de97702ea", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9984,Microsoft.Compute/GetVMExtension30Min;21984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:2bee43a0-5eb8-48a2-a7d8-7a6de97702ea", - "Expires" : "-1", - "x-ms-request-id" : "f6ec6417-ff10-4339-b12f-1f5bae0113ca", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.2\"\r\n}", - "x-ms-client-request-id" : "1a60f338-40d7-4181-b101-ee6b83f77160", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.4.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b28e07c5-adbd-4d00-b591-110a0a759209", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7756f42a-921c-4662-bcc7-43e437817b10", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9983,Microsoft.Compute/GetVMExtension30Min;21983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:7756f42a-921c-4662-bcc7-43e437817b10", - "Expires" : "-1", - "x-ms-request-id" : "9628c8d8-f4e3-429a-aebe-0fe5816408e3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.0.0\"\r\n}", - "x-ms-client-request-id" : "b28e07c5-adbd-4d00-b591-110a0a759209", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.4.1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6184987-3579-46e5-9c2e-28b36f7b6e25", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3f775ac8-2fb9-404a-a12f-510cb6e4b3f4", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9982,Microsoft.Compute/GetVMExtension30Min;21982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:3f775ac8-2fb9-404a-a12f-510cb6e4b3f4", - "Expires" : "-1", - "x-ms-request-id" : "d5b04cc1-ced9-4bb1-a179-32f21a56bb82", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.1.0\"\r\n}", - "x-ms-client-request-id" : "e6184987-3579-46e5-9c2e-28b36f7b6e25", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "291fbea7-2ae5-4113-88fe-3941cfd64d82", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd51a0ca-657c-4304-9c40-a52ddaf227bb", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9981,Microsoft.Compute/GetVMExtension30Min;21981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130022Z:dd51a0ca-657c-4304-9c40-a52ddaf227bb", - "Expires" : "-1", - "x-ms-request-id" : "7deda869-1eb4-40f1-827b-c7169f4af8c6", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.0\"\r\n}", - "x-ms-client-request-id" : "291fbea7-2ae5-4113-88fe-3941cfd64d82", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51dcf9cb-8cb8-4ec9-9d39-c00f33914447", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5aa5288-6ae4-4055-a784-1624854d45ba", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9980,Microsoft.Compute/GetVMExtension30Min;21980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130022Z:f5aa5288-6ae4-4055-a784-1624854d45ba", - "Expires" : "-1", - "x-ms-request-id" : "3ffb0d53-d2ea-47d8-a1d5-411c5cc55d89", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.1\"\r\n}", - "x-ms-client-request-id" : "51dcf9cb-8cb8-4ec9-9d39-c00f33914447", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5995a9e9-aaf9-445b-9b28-4411e72eb5b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8baceca1-20f3-4289-962b-011a92dad08a", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9979,Microsoft.Compute/GetVMExtension30Min;21979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130022Z:8baceca1-20f3-4289-962b-011a92dad08a", - "Expires" : "-1", - "x-ms-request-id" : "97ed8c96-7c86-424e-8afe-1528b7642331", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.2\"\r\n}", - "x-ms-client-request-id" : "5995a9e9-aaf9-445b-9b28-4411e72eb5b4", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "857ce0f6-44f1-4e72-8a3b-45e7cc17c0e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b72a5e9e-5bc7-4817-b022-bf1714a6aca7", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9978,Microsoft.Compute/GetVMExtension30Min;21978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:b72a5e9e-5bc7-4817-b022-bf1714a6aca7", - "Expires" : "-1", - "x-ms-request-id" : "ce2b3cdf-8b9b-4eb6-b822-b99b5fd9c3b3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.3\"\r\n}", - "x-ms-client-request-id" : "857ce0f6-44f1-4e72-8a3b-45e7cc17c0e0", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33116a15-1127-44d1-bfb6-54519a06be1e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51d93f5d-1dd0-44d8-b3c0-604765038fcb", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9977,Microsoft.Compute/GetVMExtension30Min;21977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:51d93f5d-1dd0-44d8-b3c0-604765038fcb", - "Expires" : "-1", - "x-ms-request-id" : "d20bec2b-2686-48be-90b5-c851fbb674e3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.4\"\r\n}", - "x-ms-client-request-id" : "33116a15-1127-44d1-bfb6-54519a06be1e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42608a5e-6f34-4ccf-9100-aca8a8674744", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e62a8105-c396-4197-b310-db6b1268305c", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9976,Microsoft.Compute/GetVMExtension30Min;21976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:e62a8105-c396-4197-b310-db6b1268305c", - "Expires" : "-1", - "x-ms-request-id" : "a7f2db48-2290-4fa6-a701-07f1de0561fe", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.5\"\r\n}", - "x-ms-client-request-id" : "42608a5e-6f34-4ccf-9100-aca8a8674744", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8821b77f-baa3-4341-9110-c8d631ea485d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2283", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb9f9db1-0bc8-4b9e-8bc3-b78299ccdf57", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9996,Microsoft.Compute/ListVMExtensions30Min;21996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:eb9f9db1-0bc8-4b9e-8bc3-b78299ccdf57", - "Expires" : "-1", - "x-ms-request-id" : "619f48f3-f38b-47f4-97ca-9b892589620b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/1.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.70.0.30\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.70.0.30\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.71.1.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.71.1.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.71.1.32\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.71.1.32\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.71.1.33\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.71.1.33\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/3.0.0.4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/3.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/3.0.0.7\"\r\n }\r\n]", - "x-ms-client-request-id" : "8821b77f-baa3-4341-9110-c8d631ea485d", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/1.0.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ccbccdbd-6563-45dd-ab9f-fe9376b410d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "570", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c1c1fd1-49b0-42d7-9638-d431306ab154", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9975,Microsoft.Compute/GetVMExtension30Min;21975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:4c1c1fd1-49b0-42d7-9638-d431306ab154", - "Expires" : "-1", - "x-ms-request-id" : "64cce10c-d488-4aad-85f6-5c0311e8b3ab", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/1.0.0.1\"\r\n}", - "x-ms-client-request-id" : "ccbccdbd-6563-45dd-ab9f-fe9376b410d2", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.70.0.30?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c10ed272-eeb9-44aa-b063-85589c5492cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "574", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63693fac-9c50-4427-a1bb-99436b5fa302", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9974,Microsoft.Compute/GetVMExtension30Min;21974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:63693fac-9c50-4427-a1bb-99436b5fa302", - "Expires" : "-1", - "x-ms-request-id" : "9ac85402-727c-404f-8a81-1ead0b4b8557", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.70.0.30\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.70.0.30\"\r\n}", - "x-ms-client-request-id" : "c10ed272-eeb9-44aa-b063-85589c5492cc", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.71.1.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18ef9a2c-e609-4a98-b23c-d612dc89e55d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "574", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7aca9caf-0c39-4d41-a163-c6901b1b8c6f", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9973,Microsoft.Compute/GetVMExtension30Min;21973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:7aca9caf-0c39-4d41-a163-c6901b1b8c6f", - "Expires" : "-1", - "x-ms-request-id" : "8eb4883a-ed1d-4255-b5fd-689ed5275de9", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.71.1.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.71.1.28\"\r\n}", - "x-ms-client-request-id" : "18ef9a2c-e609-4a98-b23c-d612dc89e55d", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.71.1.32?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "549f28b1-0a8f-4dc8-876f-f141a22c1a2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "574", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ccb2e75f-aa82-466f-a987-1625b763c29b", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9972,Microsoft.Compute/GetVMExtension30Min;21972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:ccb2e75f-aa82-466f-a987-1625b763c29b", - "Expires" : "-1", - "x-ms-request-id" : "7f8e5d40-1097-44f4-b330-cb9ff3e5219d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.71.1.32\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.71.1.32\"\r\n}", - "x-ms-client-request-id" : "549f28b1-0a8f-4dc8-876f-f141a22c1a2b", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.71.1.33?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "506cc219-9f36-464f-98ea-00e2c79d9ff4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "574", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60b642e3-6b39-42ec-aa74-9f76ef3b1d43", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9971,Microsoft.Compute/GetVMExtension30Min;21971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:60b642e3-6b39-42ec-aa74-9f76ef3b1d43", - "Expires" : "-1", - "x-ms-request-id" : "85406504-793a-4d71-88e7-e640cdfcaec7", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.71.1.33\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.71.1.33\"\r\n}", - "x-ms-client-request-id" : "506cc219-9f36-464f-98ea-00e2c79d9ff4", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/3.0.0.4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "947f96ec-ea3d-4060-bb17-a317f0d58dfc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "570", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4004b939-375e-48c2-8dbc-61d4db047692", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9970,Microsoft.Compute/GetVMExtension30Min;21970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:4004b939-375e-48c2-8dbc-61d4db047692", - "Expires" : "-1", - "x-ms-request-id" : "30e5b3b6-fc5b-48df-84be-2b103e644f38", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/3.0.0.4\"\r\n}", - "x-ms-client-request-id" : "947f96ec-ea3d-4060-bb17-a317f0d58dfc", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/3.0.0.5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d339b83b-9de1-464e-a108-909643f1ecdb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "570", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2cd25d89-68c1-409a-9e94-7ab5a04c0e8e", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9969,Microsoft.Compute/GetVMExtension30Min;21969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:2cd25d89-68c1-409a-9e94-7ab5a04c0e8e", - "Expires" : "-1", - "x-ms-request-id" : "34b26126-6aba-41f2-aacc-57c70bc433d0", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/3.0.0.5\"\r\n}", - "x-ms-client-request-id" : "d339b83b-9de1-464e-a108-909643f1ecdb", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/3.0.0.7?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35214a29-7aec-4233-b967-3207c46fef6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "570", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87a1f6b0-2ef0-471b-a054-9b38015101da", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9968,Microsoft.Compute/GetVMExtension30Min;21968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:87a1f6b0-2ef0-471b-a054-9b38015101da", - "Expires" : "-1", - "x-ms-request-id" : "aef7a926-c2ac-4bf0-af66-905308d16386", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/3.0.0.7\"\r\n}", - "x-ms-client-request-id" : "35214a29-7aec-4233-b967-3207c46fef6b", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e65b59f6-0e31-413f-96df-01d421cb287d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2026", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d26fce6-6ebb-4d38-ab86-513f81347e75", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9995,Microsoft.Compute/ListVMExtensions30Min;21995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:8d26fce6-6ebb-4d38-ab86-513f81347e75", - "Expires" : "-1", - "x-ms-request-id" : "143e229f-2728-47ec-a324-a826e6d9557b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.0.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.1.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.2.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9025\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9025\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9027\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9027\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9029\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9029\"\r\n }\r\n]", - "x-ms-client-request-id" : "e65b59f6-0e31-413f-96df-01d421cb287d", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.0.9023?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d7eaf0b-290c-4884-973c-3c84edce2637", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0b44c73-61f6-40c8-af8f-5d0a858ef6e3", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9967,Microsoft.Compute/GetVMExtension30Min;21967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:f0b44c73-61f6-40c8-af8f-5d0a858ef6e3", - "Expires" : "-1", - "x-ms-request-id" : "873c22a5-1c5f-49bf-999f-6cdbd4faa676", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.0.9023\"\r\n}", - "x-ms-client-request-id" : "6d7eaf0b-290c-4884-973c-3c84edce2637", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.1.9023?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad752689-f8ca-43e7-8959-b01f538de3ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e5ee058-2619-4151-8d63-b3540ce173d1", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9966,Microsoft.Compute/GetVMExtension30Min;21966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:8e5ee058-2619-4151-8d63-b3540ce173d1", - "Expires" : "-1", - "x-ms-request-id" : "fbd6ef80-1351-4c4a-8ebe-022888a43d48", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.1.9023\"\r\n}", - "x-ms-client-request-id" : "ad752689-f8ca-43e7-8959-b01f538de3ce", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.2.9023?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6904d7e0-06dd-4906-bf55-e70d8b2058f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7e260a3-0ab1-4f6e-bb7f-1964989e03f4", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9965,Microsoft.Compute/GetVMExtension30Min;21965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:c7e260a3-0ab1-4f6e-bb7f-1964989e03f4", - "Expires" : "-1", - "x-ms-request-id" : "d26dfb96-25d4-4c82-892e-53a2c3801bb3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.2.9023\"\r\n}", - "x-ms-client-request-id" : "6904d7e0-06dd-4906-bf55-e70d8b2058f7", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9023?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15afa5a5-ab3f-4d39-80a4-f9dafedfc997", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c8c8f89-ae71-4059-9139-1a7aa5d2c4e7", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9964,Microsoft.Compute/GetVMExtension30Min;21964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:5c8c8f89-ae71-4059-9139-1a7aa5d2c4e7", - "Expires" : "-1", - "x-ms-request-id" : "92063658-e1d1-4e92-ad70-144b468140b1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9023\"\r\n}", - "x-ms-client-request-id" : "15afa5a5-ab3f-4d39-80a4-f9dafedfc997", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9025?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9ccdd58-447b-41b7-9ea4-5d72669536b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e594f501-ec2c-4658-8263-a44717615903", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9963,Microsoft.Compute/GetVMExtension30Min;21963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:e594f501-ec2c-4658-8263-a44717615903", - "Expires" : "-1", - "x-ms-request-id" : "3e102e82-a21a-4de1-9965-59f69e322551", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9025\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9025\"\r\n}", - "x-ms-client-request-id" : "b9ccdd58-447b-41b7-9ea4-5d72669536b3", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9027?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "135f051a-c6fd-4ed5-aefb-31ac5f9c1f4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e6d0eec-48cb-4f7e-9cdc-4b6b5388818a", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9962,Microsoft.Compute/GetVMExtension30Min;21962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:3e6d0eec-48cb-4f7e-9cdc-4b6b5388818a", - "Expires" : "-1", - "x-ms-request-id" : "0bcff4e2-edb5-4883-bdad-a1026f708103", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9027\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9027\"\r\n}", - "x-ms-client-request-id" : "135f051a-c6fd-4ed5-aefb-31ac5f9c1f4a", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9029?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14a5290a-442d-4114-9ce4-86a0cf4ef6b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "576", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66caceb3-8b5e-4584-a56d-757fb34639b6", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9961,Microsoft.Compute/GetVMExtension30Min;21961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:66caceb3-8b5e-4584-a56d-757fb34639b6", - "Expires" : "-1", - "x-ms-request-id" : "e05e52b5-39d0-4e54-8807-dbba879d968f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9029\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9029\"\r\n}", - "x-ms-client-request-id" : "14a5290a-442d-4114-9ce4-86a0cf4ef6b8", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6955e7c-ee40-4e0f-ae6d-4e1b52759d61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2763", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73d409ba-3811-445f-ab60-065ebe30aac0", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9994,Microsoft.Compute/ListVMExtensions30Min;21994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:73d409ba-3811-445f-ab60-065ebe30aac0", - "Expires" : "-1", - "x-ms-request-id" : "fb955cfe-3e31-4878-b826-a9c40123bf68", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.0.3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.3.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.1.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.3.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/2.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/2.1.0.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "c6955e7c-ee40-4e0f-ae6d-4e1b52759d61", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.0.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8d44229-d7ad-49fc-ab27-dda45e8a0768", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96041edc-fc72-42d2-8d25-0908697ac893", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9960,Microsoft.Compute/GetVMExtension30Min;21960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:96041edc-fc72-42d2-8d25-0908697ac893", - "Expires" : "-1", - "x-ms-request-id" : "9e8f49f5-7204-4bb9-88b0-8af5a017795e", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.0.0\"\r\n}", - "x-ms-client-request-id" : "e8d44229-d7ad-49fc-ab27-dda45e8a0768", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.0.0.3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "827d5cd5-1041-40b0-8197-cedf8fe77a35", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89f60431-1edd-4a4f-a935-a606c25544c2", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9959,Microsoft.Compute/GetVMExtension30Min;21959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:89f60431-1edd-4a4f-a935-a606c25544c2", - "Expires" : "-1", - "x-ms-request-id" : "9766cef4-ce96-4be7-b99b-87b8cdc1550c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.0.3\"\r\n}", - "x-ms-client-request-id" : "827d5cd5-1041-40b0-8197-cedf8fe77a35", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.0.1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3aa918c-7d1b-4932-b28b-1b8007bbe26c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2fb98a6-03ac-4a75-a33c-0cfb90301d4b", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9958,Microsoft.Compute/GetVMExtension30Min;21958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:f2fb98a6-03ac-4a75-a33c-0cfb90301d4b", - "Expires" : "-1", - "x-ms-request-id" : "e6d66d94-e333-443c-998d-f32b2a330970", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.1.0\"\r\n}", - "x-ms-client-request-id" : "e3aa918c-7d1b-4932-b28b-1b8007bbe26c", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.0.2.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3fbc5ad-e5ca-4e6e-b96b-7bb31bb864ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "342a3e9f-5a79-423a-a57b-c35ee7e25738", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9957,Microsoft.Compute/GetVMExtension30Min;21957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:342a3e9f-5a79-423a-a57b-c35ee7e25738", - "Expires" : "-1", - "x-ms-request-id" : "bfb8bc8e-331f-4728-8c0d-0df252fcdd4f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.2.0\"\r\n}", - "x-ms-client-request-id" : "b3fbc5ad-e5ca-4e6e-b96b-7bb31bb864ff", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.0.3.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86fdcbaa-32e7-4ac0-8183-11b28c95374e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8bed0be-57c3-4014-9e00-f6519566cf9b", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9956,Microsoft.Compute/GetVMExtension30Min;21956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:f8bed0be-57c3-4014-9e00-f6519566cf9b", - "Expires" : "-1", - "x-ms-request-id" : "9444d6e0-2954-40c3-9118-f3bdf656b955", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.3.0\"\r\n}", - "x-ms-client-request-id" : "86fdcbaa-32e7-4ac0-8183-11b28c95374e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47fe4424-d7d7-41b7-94e4-56dc834c0a3c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e153658-f6f7-415e-aef0-929164a162cf", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9955,Microsoft.Compute/GetVMExtension30Min;21955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:4e153658-f6f7-415e-aef0-929164a162cf", - "Expires" : "-1", - "x-ms-request-id" : "f5822fac-2d58-45e6-bb5b-b1473a3611f1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.1.0.0\"\r\n}", - "x-ms-client-request-id" : "47fe4424-d7d7-41b7-94e4-56dc834c0a3c", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.2.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "491d36f7-72fd-4b27-b31e-568ab9bd92ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bcf856a4-0d0e-452f-946e-a29f0cef6a43", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9954,Microsoft.Compute/GetVMExtension30Min;21954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:bcf856a4-0d0e-452f-946e-a29f0cef6a43", - "Expires" : "-1", - "x-ms-request-id" : "1299a6ae-0bb5-4174-8778-6d1f704fbe8b", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.2.0.0\"\r\n}", - "x-ms-client-request-id" : "491d36f7-72fd-4b27-b31e-568ab9bd92ee", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.3.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "30d29f9c-4df2-44f5-8d06-47931341c02a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d82cc5fe-5ba0-40a8-a222-5c490be2c905", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9953,Microsoft.Compute/GetVMExtension30Min;21953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:d82cc5fe-5ba0-40a8-a222-5c490be2c905", - "Expires" : "-1", - "x-ms-request-id" : "2e066a72-a1d7-4f8f-ab22-6586bd328cbc", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.3.0.0\"\r\n}", - "x-ms-client-request-id" : "30d29f9c-4df2-44f5-8d06-47931341c02a", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/2.0.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "675c0ab8-b75e-4cdd-86b5-3dbc260cb13c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cc6fed29-1da2-46dd-9e5b-4e016c8012f8", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9952,Microsoft.Compute/GetVMExtension30Min;21952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:cc6fed29-1da2-46dd-9e5b-4e016c8012f8", - "Expires" : "-1", - "x-ms-request-id" : "f0f7182d-8689-4be8-bcc4-5ae1e37f2bba", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/2.0.0.0\"\r\n}", - "x-ms-client-request-id" : "675c0ab8-b75e-4cdd-86b5-3dbc260cb13c", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/2.1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "30f7a052-0c34-4c83-b11d-6ca437d589f1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37230a88-15dc-4993-8247-c2c8ad0aeb14", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9951,Microsoft.Compute/GetVMExtension30Min;21951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:37230a88-15dc-4993-8247-c2c8ad0aeb14", - "Expires" : "-1", - "x-ms-request-id" : "027835f0-e40e-430c-84e4-3e6cbb4eb14d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true,\r\n \"disallowMajorVersionUpgrade\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/2.1.0.0\"\r\n}", - "x-ms-client-request-id" : "30f7a052-0c34-4c83-b11d-6ca437d589f1", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "550b64ad-ea60-4f5a-aae3-0c0b3a9336df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2895", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9330a998-eed0-4260-8556-dd0e94d3d12c", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9993,Microsoft.Compute/ListVMExtensions30Min;21993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:9330a998-eed0-4260-8556-dd0e94d3d12c", - "Expires" : "-1", - "x-ms-request-id" : "45725553-f195-4eb5-8971-8e91be4f6ffa", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.1.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.1.0\"\r\n }\r\n]", - "x-ms-client-request-id" : "550b64ad-ea60-4f5a-aae3-0c0b3a9336df", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e78ffd00-0206-4503-9f09-fe77a1fd3d0c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "586be835-e3fe-4a17-804f-a9d68892145a", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9950,Microsoft.Compute/GetVMExtension30Min;21950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130032Z:586be835-e3fe-4a17-804f-a9d68892145a", - "Expires" : "-1", - "x-ms-request-id" : "84ae4b4b-b604-42a6-8a21-a86adbe8f623", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0\"\r\n}", - "x-ms-client-request-id" : "e78ffd00-0206-4503-9f09-fe77a1fd3d0c", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/1.0.1.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ddf69007-5024-462c-9f5b-74d23f5d50e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "614", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d04e9d16-e966-40c5-9c50-8b1b28985ac3", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9949,Microsoft.Compute/GetVMExtension30Min;21949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130032Z:d04e9d16-e966-40c5-9c50-8b1b28985ac3", - "Expires" : "-1", - "x-ms-request-id" : "aacd3450-4af2-49bb-a1e4-70a8c60da754", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0.1.1\"\r\n}", - "x-ms-client-request-id" : "ddf69007-5024-462c-9f5b-74d23f5d50e5", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4873fa55-f958-4663-9a39-8fda45f84081", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a40c341-a1fe-4175-8da6-aa6a1a37ad65", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9948,Microsoft.Compute/GetVMExtension30Min;21948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130032Z:8a40c341-a1fe-4175-8da6-aa6a1a37ad65", - "Expires" : "-1", - "x-ms-request-id" : "985509a0-6a6e-44e6-ad77-26b8a3425a2e", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.0\"\r\n}", - "x-ms-client-request-id" : "4873fa55-f958-4663-9a39-8fda45f84081", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23b3b725-f678-496e-892c-c5e346f16f9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd9aa9ef-cd91-451f-8575-bcb990d73ac2", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9947,Microsoft.Compute/GetVMExtension30Min;21947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:cd9aa9ef-cd91-451f-8575-bcb990d73ac2", - "Expires" : "-1", - "x-ms-request-id" : "f09f00a8-e8bc-4da4-878d-7a69f3d1a30f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.1\"\r\n}", - "x-ms-client-request-id" : "23b3b725-f678-496e-892c-c5e346f16f9e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f12a3ead-8a53-4e0f-a8f3-0a5fb37c885b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f520537-e69e-471e-bf9c-25c1335d0d95", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9946,Microsoft.Compute/GetVMExtension30Min;21946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:1f520537-e69e-471e-bf9c-25c1335d0d95", - "Expires" : "-1", - "x-ms-request-id" : "49c4040c-dcda-40c7-b8cd-74b8da046cb1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.2\"\r\n}", - "x-ms-client-request-id" : "f12a3ead-8a53-4e0f-a8f3-0a5fb37c885b", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "447ef51e-6845-444e-bdbc-7af45b541211", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "187e82a9-d869-410f-9b1b-83aa5ea70a4c", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9945,Microsoft.Compute/GetVMExtension30Min;21945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:187e82a9-d869-410f-9b1b-83aa5ea70a4c", - "Expires" : "-1", - "x-ms-request-id" : "ba40940b-c82b-4b06-8509-ab8461b73720", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.5\"\r\n}", - "x-ms-client-request-id" : "447ef51e-6845-444e-bdbc-7af45b541211", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.1.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fb984b6-553c-4a93-8e24-4ed1e52cbed9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "849f349a-a2d5-4f95-bf55-8173c06019a0", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9944,Microsoft.Compute/GetVMExtension30Min;21944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:849f349a-a2d5-4f95-bf55-8173c06019a0", - "Expires" : "-1", - "x-ms-request-id" : "5026c689-c7a1-4d02-adc1-728d30163132", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.1.0.0\"\r\n}", - "x-ms-client-request-id" : "0fb984b6-553c-4a93-8e24-4ed1e52cbed9", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.2.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2483e7c7-74da-454a-8990-b1e23f3e9c14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8317084-f668-47c5-b971-a68cd5eb192d", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9943,Microsoft.Compute/GetVMExtension30Min;21943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:a8317084-f668-47c5-b971-a68cd5eb192d", - "Expires" : "-1", - "x-ms-request-id" : "93299631-df77-4933-ada5-57c290ebddc1", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.2.0.0\"\r\n}", - "x-ms-client-request-id" : "2483e7c7-74da-454a-8990-b1e23f3e9c14", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ade151b6-a54a-4e73-8052-0c9a4dc9ec72", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58057651-13d9-4b71-948e-1191d33ad2fb", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9942,Microsoft.Compute/GetVMExtension30Min;21942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:58057651-13d9-4b71-948e-1191d33ad2fb", - "Expires" : "-1", - "x-ms-request-id" : "a5ea3d6b-5512-4476-b775-fa78981e84d8", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.0.1\"\r\n}", - "x-ms-client-request-id" : "ade151b6-a54a-4e73-8052-0c9a4dc9ec72", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.3.1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22982e4f-6516-4eaa-9de6-20292c42067b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d278c22-c6ff-49bb-a01c-07d68a7b5092", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9941,Microsoft.Compute/GetVMExtension30Min;21941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:0d278c22-c6ff-49bb-a01c-07d68a7b5092", - "Expires" : "-1", - "x-ms-request-id" : "48f114b7-cc39-4dff-8d13-a8cfff6d5e0a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.1.0\"\r\n}", - "x-ms-client-request-id" : "22982e4f-6516-4eaa-9de6-20292c42067b", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/RDMAUpdateForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51ae9c55-95f4-43be-b846-5213df543346", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "293", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25b7d0eb-686e-4008-b5d7-7bae98bf9831", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9992,Microsoft.Compute/ListVMExtensions30Min;21992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:25b7d0eb-686e-4008-b5d7-7bae98bf9831", - "Expires" : "-1", - "x-ms-request-id" : "6879bc70-1d13-4fbd-882a-ccef1100efb8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux/Versions/0.1.0.9\"\r\n }\r\n]", - "x-ms-client-request-id" : "51ae9c55-95f4-43be-b846-5213df543346", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/RDMAUpdateForLinux/versions/0.1.0.9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d56ea678-500b-4d8c-83b5-ecedfeb9ff0e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "579", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb41e0d9-9a7a-4420-8c51-8ee946797d3f", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9940,Microsoft.Compute/GetVMExtension30Min;21940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:eb41e0d9-9a7a-4420-8c51-8ee946797d3f", - "Expires" : "-1", - "x-ms-request-id" : "94118208-b115-4c38-8c17-92e3c4d43233", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux/Versions/0.1.0.9\"\r\n}", - "x-ms-client-request-id" : "d56ea678-500b-4d8c-83b5-ecedfeb9ff0e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8479e625-5272-441f-87f8-e518223b86d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6283", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "edeae843-fde9-472d-859e-d711f9f0b2ac", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9991,Microsoft.Compute/ListVMExtensions30Min;21991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:edeae843-fde9-472d-859e-d711f9f0b2ac", - "Expires" : "-1", - "x-ms-request-id" : "750bbb50-ccfa-41bb-a2a7-72295a46d516", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.3.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.4.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.4.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.5.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.6.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.6.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.7.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.7.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.7.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.7.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.11\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.6\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.8\"\r\n }\r\n]", - "x-ms-client-request-id" : "8479e625-5272-441f-87f8-e518223b86d2", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1042fddb-596d-4742-934f-9ac14b21dc07", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e238ca78-1c44-479e-bfd2-fd4e68e6b70a", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9939,Microsoft.Compute/GetVMExtension30Min;21939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:e238ca78-1c44-479e-bfd2-fd4e68e6b70a", - "Expires" : "-1", - "x-ms-request-id" : "dd634648-59b1-497b-81f0-c46d5c05659a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.0\"\r\n}", - "x-ms-client-request-id" : "1042fddb-596d-4742-934f-9ac14b21dc07", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a4d8244-8660-46f2-a70d-08fe9c381905", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18388d89-0492-4ca2-9dfb-e32e04384986", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9938,Microsoft.Compute/GetVMExtension30Min;21938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:18388d89-0492-4ca2-9dfb-e32e04384986", - "Expires" : "-1", - "x-ms-request-id" : "398b31d4-407e-4c97-910d-7490bbd44c7c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.1\"\r\n}", - "x-ms-client-request-id" : "2a4d8244-8660-46f2-a70d-08fe9c381905", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53785da5-0b31-49ab-8ba6-a3e27732b8ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "604", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "562d09ba-595c-424d-aabd-7b39ed3ece37", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9937,Microsoft.Compute/GetVMExtension30Min;21937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:562d09ba-595c-424d-aabd-7b39ed3ece37", - "Expires" : "-1", - "x-ms-request-id" : "a6d86956-9064-4cdf-9545-494b89170d9d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.2\"\r\n}", - "x-ms-client-request-id" : "53785da5-0b31-49ab-8ba6-a3e27732b8ca", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.3.0.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cdea72d8-193a-46ef-8b56-22f44d227ac0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66311c32-d64d-45ec-b4ee-287031336f75", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9936,Microsoft.Compute/GetVMExtension30Min;21936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:66311c32-d64d-45ec-b4ee-287031336f75", - "Expires" : "-1", - "x-ms-request-id" : "c1a838bb-261e-4085-824e-4253f3775695", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.3.0.1\"\r\n}", - "x-ms-client-request-id" : "cdea72d8-193a-46ef-8b56-22f44d227ac0", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.0.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "521092a6-de4d-474e-98e9-eb50924dc4a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "612", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17cb09ab-b2c4-4fda-b5e9-a75fd0c8a9e8", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9935,Microsoft.Compute/GetVMExtension30Min;21935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:17cb09ab-b2c4-4fda-b5e9-a75fd0c8a9e8", - "Expires" : "-1", - "x-ms-request-id" : "1370ddd6-2eb2-411a-b580-c71f06f08467", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.0.0\"\r\n}", - "x-ms-client-request-id" : "521092a6-de4d-474e-98e9-eb50924dc4a5", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.1.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9021908-1818-4083-a03b-491ee611e306", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "372eccdf-b538-4c4f-ab90-3622aa6c61ac", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9934,Microsoft.Compute/GetVMExtension30Min;21934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:372eccdf-b538-4c4f-ab90-3622aa6c61ac", - "Expires" : "-1", - "x-ms-request-id" : "57af287f-b5df-497e-adbf-5f0789c470d9", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.1.0\"\r\n}", - "x-ms-client-request-id" : "c9021908-1818-4083-a03b-491ee611e306", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.2.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "02bb051f-0089-4faa-9b43-1ba051c19dd7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "064bd2bc-5c2a-4ed9-873f-6886b5c7c054", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9933,Microsoft.Compute/GetVMExtension30Min;21933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:064bd2bc-5c2a-4ed9-873f-6886b5c7c054", - "Expires" : "-1", - "x-ms-request-id" : "d2a73e2d-b473-4a77-849d-48808d85048a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.2.0\"\r\n}", - "x-ms-client-request-id" : "02bb051f-0089-4faa-9b43-1ba051c19dd7", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.3.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab3a5ecd-62c1-42b9-ba91-721afe7d3f12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0386c57f-a019-4952-8328-c0de03b33b9f", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9932,Microsoft.Compute/GetVMExtension30Min;21932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:0386c57f-a019-4952-8328-c0de03b33b9f", - "Expires" : "-1", - "x-ms-request-id" : "1a0d37d4-fb3e-4e4c-8030-15693daa28a3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.3.0\"\r\n}", - "x-ms-client-request-id" : "ab3a5ecd-62c1-42b9-ba91-721afe7d3f12", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.4.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a71bf4bd-1ba5-49bc-a98c-9493368caf98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b70e71d6-9649-4e47-8c19-fb2bccd525a7", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9931,Microsoft.Compute/GetVMExtension30Min;21931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:b70e71d6-9649-4e47-8c19-fb2bccd525a7", - "Expires" : "-1", - "x-ms-request-id" : "dc1e3b6c-0f19-4562-b4dd-48499b73e63d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.4.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.4.0\"\r\n}", - "x-ms-client-request-id" : "a71bf4bd-1ba5-49bc-a98c-9493368caf98", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.5.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7aab7039-2486-48be-ae57-dea703cfeaf9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7bcc0338-1574-4f60-8bd0-a4a8a6a16e1a", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9930,Microsoft.Compute/GetVMExtension30Min;21930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:7bcc0338-1574-4f60-8bd0-a4a8a6a16e1a", - "Expires" : "-1", - "x-ms-request-id" : "03e8788f-c7c5-481e-835f-64e207dfa77a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.5.0\"\r\n}", - "x-ms-client-request-id" : "7aab7039-2486-48be-ae57-dea703cfeaf9", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.6.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "973e34b4-2766-4a8e-905a-4f71e53dbbb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0405f207-3703-4bd7-b6f7-4984d5171be9", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9929,Microsoft.Compute/GetVMExtension30Min;21929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:0405f207-3703-4bd7-b6f7-4984d5171be9", - "Expires" : "-1", - "x-ms-request-id" : "474e37ff-c100-432a-8136-afa8cdffded6", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.6.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.6.0\"\r\n}", - "x-ms-client-request-id" : "973e34b4-2766-4a8e-905a-4f71e53dbbb9", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.7.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15acecd8-a08c-4297-8b05-db0e20ffa926", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9490f1ed-30c5-4620-8d9e-403d7207bb8c", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9928,Microsoft.Compute/GetVMExtension30Min;21928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:9490f1ed-30c5-4620-8d9e-403d7207bb8c", - "Expires" : "-1", - "x-ms-request-id" : "dc71f3c8-46dc-45b4-ae70-bd9d040788df", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.7.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.7.0\"\r\n}", - "x-ms-client-request-id" : "15acecd8-a08c-4297-8b05-db0e20ffa926", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.7.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72b3de91-5d20-4820-b9c4-6a3d19a87157", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "610", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6122ce62-5c48-408a-b1b5-67c2273d247d", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9927,Microsoft.Compute/GetVMExtension30Min;21927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:6122ce62-5c48-408a-b1b5-67c2273d247d", - "Expires" : "-1", - "x-ms-request-id" : "65dd72c3-2596-4af8-a1f4-cb5e141cadb7", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.7.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.7.1\"\r\n}", - "x-ms-client-request-id" : "72b3de91-5d20-4820-b9c4-6a3d19a87157", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13f97c02-129d-4578-99cb-af66ddb1695e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "496e9339-b844-46a4-9387-2b4469a1fc1d", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9926,Microsoft.Compute/GetVMExtension30Min;21926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:496e9339-b844-46a4-9387-2b4469a1fc1d", - "Expires" : "-1", - "x-ms-request-id" : "6557e6ac-25a9-4128-973b-7a71a29c0b64", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.0\"\r\n}", - "x-ms-client-request-id" : "13f97c02-129d-4578-99cb-af66ddb1695e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ea41aa2-e6b8-435c-b12c-28e1457a50ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "81951635-4b36-4a72-a62b-f02336df9def", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9925,Microsoft.Compute/GetVMExtension30Min;21925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:81951635-4b36-4a72-a62b-f02336df9def", - "Expires" : "-1", - "x-ms-request-id" : "5fc02ea2-80e8-491d-ba8c-08643bd44704", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.1\"\r\n}", - "x-ms-client-request-id" : "0ea41aa2-e6b8-435c-b12c-28e1457a50ab", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c18a4b00-6b9f-4ef5-90a6-cd75fb899fb5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "608", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "00ae76a8-6247-499d-830e-a85a122a27db", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9924,Microsoft.Compute/GetVMExtension30Min;21924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:00ae76a8-6247-499d-830e-a85a122a27db", - "Expires" : "-1", - "x-ms-request-id" : "4ba0dc54-4b13-4212-89c7-50d61aae87e0", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.10\"\r\n}", - "x-ms-client-request-id" : "c18a4b00-6b9f-4ef5-90a6-cd75fb899fb5", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.11?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6e59339-b6de-4067-adc8-5dceb4b1699c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "608", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26516ba6-e480-48a7-a0eb-097d2c85ac01", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9923,Microsoft.Compute/GetVMExtension30Min;21923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:26516ba6-e480-48a7-a0eb-097d2c85ac01", - "Expires" : "-1", - "x-ms-request-id" : "9fb264b2-2847-4420-87bf-b8a3ec850053", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.11\"\r\n}", - "x-ms-client-request-id" : "a6e59339-b6de-4067-adc8-5dceb4b1699c", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac9287b1-834a-44c3-8598-379b6468ef17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3100d0c7-deb1-4b5e-aa3e-650597a74c42", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9922,Microsoft.Compute/GetVMExtension30Min;21922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:3100d0c7-deb1-4b5e-aa3e-650597a74c42", - "Expires" : "-1", - "x-ms-request-id" : "32289627-d1b7-4110-aaac-b340e099c991", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.2\"\r\n}", - "x-ms-client-request-id" : "ac9287b1-834a-44c3-8598-379b6468ef17", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33dded8e-c9d5-4c11-8588-42d3081f1eb8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f6806ac-547c-4663-8213-378cca3aa7e6", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9921,Microsoft.Compute/GetVMExtension30Min;21921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:4f6806ac-547c-4663-8213-378cca3aa7e6", - "Expires" : "-1", - "x-ms-request-id" : "382134a2-9ab6-422a-81d3-2df4b6dbac55", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.3\"\r\n}", - "x-ms-client-request-id" : "33dded8e-c9d5-4c11-8588-42d3081f1eb8", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c8266ca-854e-437f-b883-7c39e3b0575e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9d9f1d3-4bb5-452d-a386-eda8024523eb", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9920,Microsoft.Compute/GetVMExtension30Min;21920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:d9d9f1d3-4bb5-452d-a386-eda8024523eb", - "Expires" : "-1", - "x-ms-request-id" : "584dce64-4541-4e53-9c36-5ce676ea7ba8", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.4\"\r\n}", - "x-ms-client-request-id" : "1c8266ca-854e-437f-b883-7c39e3b0575e", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.6?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "64920b81-c331-4c78-a8f3-76cad3775e3d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "811a54d6-d6e9-4600-a952-9f0c21636a4b", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9919,Microsoft.Compute/GetVMExtension30Min;21919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:811a54d6-d6e9-4600-a952-9f0c21636a4b", - "Expires" : "-1", - "x-ms-request-id" : "c2c849bd-b7f8-4cb4-bab1-55c472362493", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.6\"\r\n}", - "x-ms-client-request-id" : "64920b81-c331-4c78-a8f3-76cad3775e3d", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.5.8?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b85cc45-ed55-4fe2-9c69-71890b2807a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e475a5f6-aa60-4f2f-8934-990501a213fb", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9918,Microsoft.Compute/GetVMExtension30Min;21918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:e475a5f6-aa60-4f2f-8934-990501a213fb", - "Expires" : "-1", - "x-ms-request-id" : "4bbf3e4c-47fb-49a0-a3a3-db1f7199fb34", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isInternalExtension\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.5.8\"\r\n}", - "x-ms-client-request-id" : "5b85cc45-ed55-4fe2-9c69-71890b2807a0", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMBackupForLinuxExtension/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa4246a4-cc5a-4aa5-ab60-f358c227e0e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c56d77ab-0a0f-4925-80c3-4aacdaf64d4e", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMExtensions3Min;9990,Microsoft.Compute/ListVMExtensions30Min;21990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:c56d77ab-0a0f-4925-80c3-4aacdaf64d4e", - "Expires" : "-1", - "x-ms-request-id" : "35431490-27c9-4a3c-8199-2e3d78919902", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.993\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension/Versions/0.1.0.993\"\r\n }\r\n]", - "x-ms-client-request-id" : "fa4246a4-cc5a-4aa5-ab60-f358c227e0e7", - "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/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMBackupForLinuxExtension/versions/0.1.0.993?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "07b4e90d-57dd-461b-bbf8-db863252dde1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "590", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_132974923635416533", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09c25015-772d-4c13-92c0-821cf30034f3", - "Date" : "Tue, 24 May 2022 13:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMExtension3Min;9917,Microsoft.Compute/GetVMExtension30Min;21917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:09c25015-772d-4c13-92c0-821cf30034f3", - "Expires" : "-1", - "x-ms-request-id" : "c6e4bfef-04ba-453f-aa7b-1d1fc81ecad5", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"architecture\": [\r\n \"x64\"\r\n ],\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false,\r\n \"supportsMigration\": false,\r\n \"rollbackSupported\": false,\r\n \"isJsonExtension\": true\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.993\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension/Versions/0.1.0.993\"\r\n}", - "x-ms-client-request-id" : "07b4e90d-57dd-461b-bbf8-db863252dde1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - } ], - "variables" : [ ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineImages.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineImages.json deleted file mode 100644 index b3a690b2d146..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testListVirtualMachineImages.json +++ /dev/null @@ -1,120243 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fbaa62e-9ece-4f98-a4ec-ecbb604f0d63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "427463", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "dc6e1bca-88e5-4ce1-bcd2-2b0ffc55dba0_132975581118113597", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92272d27-2c5f-4b22-83b1-866cd419c547", - "Date" : "Tue, 24 May 2022 13:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130010Z:92272d27-2c5f-4b22-83b1-866cd419c547", - "Expires" : "-1", - "x-ms-request-id" : "c86d5ce0-db99-4280-85ea-819e73208026", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1583411303229\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1583411303229\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1592878437854\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1592878437854\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1597644262255\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1597644262255\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1598955805825\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1598955805825\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1601633765871\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1601633765871\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1602067018799\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1602067018799\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1604579683207\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1604579683207\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1615257339685\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1615257339685\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1615278064010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1615278064010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1615455873642\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1615455873642\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1624590941808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1624590941808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1640334196980\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1640334196980\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"247commercelimited1611063941652\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/247commercelimited1611063941652\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6124903\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/6124903\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks1596136698788\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks1596136698788\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abzoobainc1598420455082\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abzoobainc1598420455082\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"acronis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/acronis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actiphy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actiphy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actiphyinc1627974506603\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actiphyinc1627974506603\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activecountermeasuresinc1631039410073\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activecountermeasuresinc1631039410073\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"affirmednetworks1607630812999\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/affirmednetworks1607630812999\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ageniumscale1591804889317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ageniumscale1591804889317\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"agiledialogssl1603791911858\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/agiledialogssl1603791911858\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"agolo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/agolo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aisundowninc1618516322959\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aisundowninc1618516322959\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"algolyticstechnologies1606475101268\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/algolyticstechnologies1606475101268\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"almalinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/almalinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"almalinuxosfoundation1628089859865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/almalinuxosfoundation1628089859865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amergint1593131356777\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/amergint1593131356777\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"anjanadatasl1583402861145\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/anjanadatasl1583402861145\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ansys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ansys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appsurifyinc1606933045773\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appsurifyinc1606933045773\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquantyinc1598537176913\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquantyinc1598537176913\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aquaveollc1633710529908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aquaveollc1633710529908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcontechsolutionsprivatelimited1623841797810\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcontechsolutionsprivatelimited1623841797810\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asdivertissementinc1617837708654\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asdivertissementinc1617837708654\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"askforcloudllc1651766049149\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/askforcloudllc1651766049149\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspentechnologyhq-1353108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspentechnologyhq-1353108\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asterasoftware1581022936015\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asterasoftware1581022936015\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"athinfosystems1641442221349\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/athinfosystems1641442221349\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"athinfosystems1648710938250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/athinfosystems1648710938250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomizedinc1587939464368\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atomizedinc1587939464368\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"automateio1592914387888\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/automateio1592914387888\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azhpc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azhpc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.ManagedServices.TestExtPublisher00\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.ManagedServices.TestExtPublisher00\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.PIR.Synthetics.ProdTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.PIR.Synthetics.ProdTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"belindaczsro1588885355210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/belindaczsro1588885355210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"big-id\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/big-id\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"biolibinc1622552350258\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biolibinc1622552350258\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bitnami\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitnami\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizaptyltd1626489237351\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizaptyltd1626489237351\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizdataloome\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizdataloome\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blackmagicdesignincorporated1596492193249\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackmagicdesignincorporated1596492193249\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluejeansnetwork1638333611902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluejeansnetwork1638333611902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluesyntaxconsulting1617654548594\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluesyntaxconsulting1617654548594\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boemskats\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boemskats\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bowspritconsultingopcprivatelimited1596291408582\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bowspritconsultingopcprivatelimited1596291408582\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bricatainc1584472632111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bricatainc1584472632111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brutale\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brutale\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cadosecurityltd1626856705534\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cadosecurityltd1626856705534\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"calculated_systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/calculated_systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"caloudi_corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/caloudi_corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"canadiancentreforcybersecurity1610638436359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/canadiancentreforcybersecurity1610638436359\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"catonetworksltd1641478570665\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catonetworksltd1641478570665\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"centrixeltd1594135951373\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/centrixeltd1594135951373\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"certifiedsecuritysolutionsinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certifiedsecuritysolutionsinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chunghwatelecom1587573688842\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chunghwatelecom1587573688842\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ciphertechsinc1646670709341\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ciphertechsinc1646670709341\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clapsodeughaftungsbeschrnkt1626333173563\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clapsodeughaftungsbeschrnkt1626333173563\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudaccelinc1628754426775\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudaccelinc1628754426775\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudboltsoftware1639523402532\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboltsoftware1639523402532\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudinfo-4919088\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudinfo-4919088\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudknox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudknox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudwrxsconsultingltd1631029702055\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudwrxsconsultingltd1631029702055\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codaintelligence1606495376525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codaintelligence1606495376525\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognexcorporation1613759804979\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognexcorporation1613759804979\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognexcorporation1647410785838\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognexcorporation1647410785838\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesitydev1592001764720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesitydev1592001764720\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"collibranv1619508098620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/collibranv1619508098620\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"commscopeinc1632135151062\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commscopeinc1632135151062\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"concentrationheatandmomentumlimited1616154387047\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/concentrationheatandmomentumlimited1616154387047\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"controlplane\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/controlplane\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"controlplanecorporation1609967567639\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/controlplanecorporation1609967567639\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cristiesoftwareltd1599488127561\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cristiesoftwareltd1599488127561\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crunchyardltd1623835391104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crunchyardltd1623835391104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptosense1605170011574\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptosense1605170011574\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ctrliqinc1648673227698\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctrliqinc1648673227698\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cybercxptyltd1590132359004\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cybercxptyltd1590132359004\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cygnalabscorp1646065782458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cygnalabscorp1646065782458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"daceitdbasensetrafficpulse1579892024934\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/daceitdbasensetrafficpulse1579892024934\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datadynamicsinc1581991927942\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datadynamicsinc1581991927942\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datagapsinc1585348463636\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datagapsinc1585348463636\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datasciencedojo1586563145740\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasciencedojo1586563145740\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deepsiginc1581610210151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deepsiginc1581610210151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deepsurfacesecurityinc1632943333445\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deepsurfacesecurityinc1632943333445\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deltapathlimited1592886319362\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deltapathlimited1592886319362\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deskpro1650546806675\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deskpro1650546806675\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"desktopstudioag1580294245574\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/desktopstudioag1580294245574\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"df-portal-user\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/df-portal-user\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dh2ico\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dh2ico\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"digitate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/digitate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diyatech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diyatech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ebesllc1637780200500\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ebesllc1637780200500\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edgelesssystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edgelesssystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edispheresoftwareprivatelimited1606199736428\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edispheresoftwareprivatelimited1606199736428\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eecservicesfzllc1604836615706\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eecservicesfzllc1604836615706\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egress1589289169584\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egress1589289169584\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eikonasystemsgmbh1601729310063\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eikonasystemsgmbh1601729310063\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Elastic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Elastic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"energisme1601990637842\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/energisme1601990637842\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"engineering-ingegneriainformatica-spa1626786889850\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/engineering-ingegneriainformatica-spa1626786889850\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"engysltd1624364546407\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/engysltd1624364546407\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"epicgames\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/epicgames\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"epicgamesinc1633466121071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/epicgamesinc1633466121071\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equinix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equinix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"erockyenterprisesoftwarefoundationinc1653071250513\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/erockyenterprisesoftwarefoundationinc1653071250513\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eurolinuxspzoo1620639373013\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eurolinuxspzoo1620639373013\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evertzmicrosystemsltd1586877923009\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evertzmicrosystemsltd1586877923009\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"excelero1608461290726\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/excelero1608461290726\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"falainapteltd1604661424876\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falainapteltd1604661424876\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fatalsecurity1604924013537\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fatalsecurity1604924013537\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fenestrae-1035066\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fenestrae-1035066\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firemon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firemon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firstderivativesplc1596469572732\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firstderivativesplc1596469572732\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foreseetiab1613650409016\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foreseetiab1613650409016\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forumsystems1599756394904\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forumsystems1599756394904\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"franzinc1593030725310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/franzinc1593030725310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"g2kgroupgmbh-4821943\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/g2kgroupgmbh-4821943\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genesistechnologyinc1604912285911\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genesistechnologyinc1604912285911\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genuagmbhdevid1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genuagmbhdevid1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genua_gmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genua_gmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gitlabinc1586447921813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlabinc1586447921813\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gladinet-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gladinet-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalidsinc1596800540598\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalidsinc1596800540598\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haltdoscompvtltd1587136166019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haltdoscompvtltd1587136166019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hammerspace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hammerspace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"harmanconnectedservicesinc1594928575643\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/harmanconnectedservicesinc1594928575643\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hitachivantara\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachivantara\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"holo-industrie40softwaregmbh1600957636008\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/holo-industrie40softwaregmbh1600957636008\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-alliance-global-1560886\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-alliance-global-1560886\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-alliance-usa-ny-armonk-hq-ibmstorage-6201192\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-aiops\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibm-usa-ny-armonk-hq-6275750-ibmcloud-asperia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iconsulting-spa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iconsulting-spa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iguaziosystemsinc1642090150854\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iguaziosystemsinc1642090150854\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iliimbiliimveyazlmsistemlerisanvetica1617000555584\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iliimbiliimveyazlmsistemlerisanvetica1617000555584\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"illuminainc1586452220102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/illuminainc1586452220102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imprivatainc1580479939967\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imprivatainc1580479939967\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"inenprocesosyplataformasdetisderldecv1615482385424\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inenprocesosyplataformasdetisderldecv1615482385424\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"inergybv1637141413454\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inergybv1637141413454\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infinitesoftwarecorporation1579223971125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infinitesoftwarecorporation1579223971125\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infiotinc1614034091460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infiotinc1614034091460\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informationtechnologies_ltd_1179601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationtechnologies_ltd_1179601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infotecsinternetsecuritysoftwaregmbh1636129257584\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infotecsinternetsecuritysoftwaregmbh1636129257584\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innomindssoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innomindssoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innosepgmbh1618331344164\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innosepgmbh1618331344164\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innovatorartificialtechsrl1619180685551\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innovatorartificialtechsrl1619180685551\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"innovtech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/innovtech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"instight-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/instight-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel_corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel_corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"internet20inc1635882446190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/internet20inc1635882446190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua1638692632641\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua1638692632641\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"introspecioltd1629872641188\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/introspecioltd1629872641188\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iquate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"itrsgroupltd1620310702149\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itrsgroupltd1620310702149\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ivanti-inc-pcs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ivanti-inc-pcs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ivanti-nzta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ivanti-nzta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ivix1595238749040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ivix1595238749040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"johnsnowlabsinc1646051154808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/johnsnowlabsinc1646051154808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaminarioinc1588672951794\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaminarioinc1588672951794\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365Security.SecureOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365Security.SecureOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityHostIDS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityHostIDS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityInventory.NameChangeTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityInventory.NameChangeTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityODL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityODL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"KevlarExtensions.M365SecurityTLSExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/KevlarExtensions.M365SecurityTLSExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kognillc1600118221163\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kognillc1600118221163\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kognitivsparkinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kognitivsparkinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lab3solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lab3solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"launchnodesltd1644561451121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/launchnodesltd1644561451121\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lenovosoftware1604394104439\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lenovosoftware1604394104439\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"levacloudllc1602151818089\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/levacloudllc1602151818089\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"libelleag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/libelleag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liberatii\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liberatii\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"llcitpro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/llcitpro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logicflowag1638535407949\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logicflowag1638535407949\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logstarecorp1635838645101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logstarecorp1635838645101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logzio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logzio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lotus_beta_analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lotus_beta_analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"M365Security.KevlarExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/M365Security.KevlarExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"M365SecurityInventory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/M365SecurityInventory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"madhavajay1632269232059\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/madhavajay1632269232059\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"maplelabsinc1623932715330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/maplelabsinc1623932715330\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"media3-adobe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/media3-adobe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"merlynnintelligencetechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/merlynnintelligencetechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"meshifyappinc1622759451429\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meshifyappinc1622759451429\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsecpteltd1634010681688\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsecpteltd1634010681688\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-agci-gaming\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-agci-gaming\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Automation.HybridWorker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Automation.HybridWorker.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Automation.HybridWorker.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForServers\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.AzureDefenderForServers\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.AzureDefenderForSQL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.AzureDefenderForSQL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Batch.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Batch.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ChangeTracking\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ChangeTracking.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ChangeTracking.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ChangeTrackingAndInventory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ChangeTrackingAndInventory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Chaos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Chaos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ContainerUpstream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ContainerUpstream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.DefenderForServers.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.DefenderForServers.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.DefenderForServers.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.FleetDiagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.FleetDiagnostics.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.FleetDiagnostics.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.HardwareHealthService\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.HardwareHealthService\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.LabServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.LabServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.LabServices.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.LabServices.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.SCALE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.Dev.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.DEV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.SCALE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.GuestHealth.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.INT.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.SCALE.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.VirtualMachines.TEST.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitor.Workloads.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Networking.DNS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.DNS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Sentinel.DnsExtension.Dev\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Sentinel.DnsExtension.Dev\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.INT\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WorkloadInsights.Windows.ReleasePipeTest.TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureData\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureData\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureData.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureData.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Dcsswe.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Dcsswe.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.M365\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.M365\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.M365SecurityConfiguration.Kevlar.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.M365SecurityConfiguration.Kevlar.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Network\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Network\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.RecoveryServices.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.RecoveryServices.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Sentinel.AzureMonitorAgentExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Sentinel.AzureMonitorAgentExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SoftwareUpdateManagement\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Test.Azure.Workloads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Test.Azure.Workloads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftagciuk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftagciuk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftazurecituswarp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftazurecituswarp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftCBLMariner\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftCBLMariner\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftcmotest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftcmotest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftcorporation1602274591143\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftcorporation1602274591143\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoftcorporation1620407702632\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoftcorporation1620407702632\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftPowerBI\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftPowerBI\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"middleware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/middleware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mihupcommunicationspvtltd1599046998010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mihupcommunicationspvtltd1599046998010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/minio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mistio1601460379393\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mistio1601460379393\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"modexblockchaindatabase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/modexblockchaindatabase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"monetdbsolutions1611751313758\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/monetdbsolutions1611751313758\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"monitorapp1579029852605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/monitorapp1579029852605\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"morpheus-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/morpheus-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"multima1643619641681\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/multima1643619641681\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"myarchinc1614657280935\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/myarchinc1614657280935\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nasunicorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasunicorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"navicloudrsoftwarepteltd1601967280369\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/navicloudrsoftwarepteltd1601967280369\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncache\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncache\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncomputingglobalinc1604353053068\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncomputingglobalinc1604353053068\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ndstriyelotomasyonsistemlerisanvetica1623147454601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndstriyelotomasyonsistemlerisanvetica1623147454601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"newegginc1646343565758\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/newegginc1646343565758\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"newnetcommunicationtechnologies1589991852134\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/newnetcommunicationtechnologies1589991852134\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"newtglobalconsultingllc1581492268566\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/newtglobalconsultingllc1581492268566\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nilespartnersinc1617691698386\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nilespartnersinc1617691698386\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nirvatosoftwarepvtltd1601368706606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nirvatosoftwarepvtltd1601368706606\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noianetworklimited1584098036197\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noianetworklimited1584098036197\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noricumcloudsolutions1600524477681\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noricumcloudsolutions1600524477681\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ntegralinc1586961136942\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ntegralinc1586961136942\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nttltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nttltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"objectivity1595351622261\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/objectivity1595351622261\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"odix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/odix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"odysseuscomputationalsolutions1630242118741\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/odysseuscomputationalsolutions1630242118741\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openlinkswcom-pago\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openlinkswcom-pago\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openrefactoryinc1620140917523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openrefactoryinc1620140917523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opswatinc1619007967290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opswatinc1619007967290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"optimitiveslu1618320281443\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/optimitiveslu1618320281443\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ovaledge1618392232783\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ovaledge1618392232783\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pachyderminc1585170006545\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pachyderminc1585170006545\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paladionnetworkspvtltd1606120508449\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paladionnetworkspvtltd1606120508449\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panopta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panopta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parabole\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parabole\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paralaxiomtechnologiesprivatelimited1596433357886\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paralaxiomtechnologiesprivatelimited1596433357886\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parkersoftwarelimited1609786657569\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parkersoftwarelimited1609786657569\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parsec-for-teams\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parsec-for-teams\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pcman\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pcman\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"perforce\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/perforce\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"periscope-tech-4791746\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/periscope-tech-4791746\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pixitmedia1591611150480\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pixitmedia1591611150480\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pmsoftwareinternational1603102514882\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"polarityioinc1628691850891\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/polarityioinc1628691850891\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prakshepprivatelimited1619949827900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prakshepprivatelimited1619949827900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prasselsrl1645470739547\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prasselsrl1645470739547\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"probityinc1581611299345\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/probityinc1581611299345\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"procomputers\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/procomputers\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"proliongmbh1628175060372\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proliongmbh1628175060372\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"protegrityusainc1627404648458\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/protegrityusainc1627404648458\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"proventeq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proventeq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pulsesecuretechnologies1638179500151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pulsesecuretechnologies1638179500151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"puppeteersoy1601024480557\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppeteersoy1601024480557\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qnapsystemsinc1601352084032\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qnapsystemsinc1601352084032\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rackwareinc1619403669255\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rackwareinc1619403669255\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"readymind\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/readymind\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"redhat-rhel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redhat-rhel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"refactr\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/refactr\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"researchgraphptyltd1598252602128\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/researchgraphptyltd1598252602128\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rimo3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rimo3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rmgtechnologiesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rmgtechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"runecastsolutionslimited1614186396822\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/runecastsolutionslimited1614186396822\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltsecurity1650441978315\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltsecurity1650441978315\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungelectronics1632860607983\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungelectronics1632860607983\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sandhatatechnologieslimited1615753438737\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sandhatatechnologieslimited1615753438737\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sapphiretechnologieslimited1611758579346\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sapphiretechnologieslimited1611758579346\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sas-institute-560503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sas-institute-560503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sciencelogicinc1622565452194\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sciencelogicinc1622565452194\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scontainug1595751515785\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scontainug1595751515785\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scubaanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scubaanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scylladb1631195365807\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scylladb1631195365807\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"searchbloxsoftwareinc1594309037050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/searchbloxsoftwareinc1594309037050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"securityonionsolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/securityonionsolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"securityonionsolutionsllc1624649205155\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/securityonionsolutionsllc1624649205155\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seequentltd1585781751395\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seequentltd1585781751395\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"senhasegura\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/senhasegura\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.LinuxExtension.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.LinuxExtension.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.WindowsExtension.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SentinelOne.WindowsExtension.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SentinelOne.WindowsExtension.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentry51llc1616686725591\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentry51llc1616686725591\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seraumo1620002807288\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seraumo1620002807288\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sesamesoftwareinc1622125191447\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sesamesoftwareinc1622125191447\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"silk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simpledatalabsinc1635791235920\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simpledatalabsinc1635791235920\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinequa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinequa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinequa1588262295885\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinequa1588262295885\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skyboxsecurity1585187406404\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/skyboxsecurity1585187406404\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softwarecentralas1642687699196\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softwarecentralas1642687699196\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softwarehut\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softwarehut\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solvedevops1643693563360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solvedevops1643693563360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sourcegearllc1616101262784\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sourcegearllc1616101262784\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spaceliftinc1625499025476\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spaceliftinc1625499025476\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spectralcorelimited1619779004178\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spectralcorelimited1619779004178\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Spektra.Cloudlabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Spektra.Cloudlabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spideroakinc1588278690933\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spideroakinc1588278690933\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spirentcommunications1594084187199\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spirentcommunications1594084187199\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"squadratechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/squadratechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ssh2appsltd1621588462715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ssh2appsltd1621588462715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"startisolucoesemtecnologialtda1635263523201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/startisolucoesemtecnologialtda1635263523201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storone1594045543980\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storone1594045543980\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storwarespzoo1611743234900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storwarespzoo1611743234900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"strangebee1595948424730\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/strangebee1595948424730\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"strataidentity1608323708170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/strataidentity1608323708170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratis-group-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratis-group-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratodesk1611152769936\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratodesk1611152769936\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stromasys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stromasys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"strongboxitllc1594816423884\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/strongboxitllc1594816423884\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sunday\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunday\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE.AzureHybridBenefit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE.AzureHybridBenefit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sycom-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sycom-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syscomcomputerengineeringco1583913200141\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"taniuminc1646329360287\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/taniuminc1646329360287\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"technicheltd1606969724100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/technicheltd1606969724100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tensormakecorpdbaoneclickai1608247756082\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tensormakecorpdbaoneclickai1608247756082\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tenthlineinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenthlineinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"testable1603721901088\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/testable1603721901088\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_test_mix3pptest0011614206850774\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test_test_mix3pptest0011614206850774\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_test_mneela1628617140187\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test_test_mneela1628617140187\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thalesdiscplusainc1596561677238\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thalesdiscplusainc1596561677238\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thehdfgroup1616725197741\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thehdfgroup1616725197741\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"theumag1596442827072\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/theumag1596442827072\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tmaxsoft1608612658335\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tmaxsoft1608612658335\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tomsawyersoftwarecorp1613579206342\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tomsawyersoftwarecorp1613579206342\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transcendinformationinc1609918445926\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transcendinformationinc1609918445926\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tripleblindinc1615730179432\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tripleblindinc1615730179432\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"truata1612259728221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/truata1612259728221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tryonsolutionsinc1596650621083\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tryonsolutionsinc1596650621083\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"turbonet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/turbonet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"turbonet1581982683964\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/turbonet1581982683964\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unifiedstreaming1598872291606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unifiedstreaming1598872291606\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"upsolver1594188634150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/upsolver1594188634150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"valohai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/valohai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vastdata1650451243415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vastdata1650451243415\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vcinityinc1587684340545\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vcinityinc1587684340545\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vembutechnologiespvtltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vembutechnologiespvtltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtamovecorp1615909247913\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtamovecorp1615909247913\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtualpulsesro1607008728942\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtualpulsesro1607008728942\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtuozzointernationalgmbh1626704951469\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtuozzointernationalgmbh1626704951469\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visualknowledgeshare1591795776234\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visualknowledgeshare1591795776234\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmlabinc1613642184700\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmlabinc1613642184700\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"voleatechgmbh1636966911943\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/voleatechgmbh1636966911943\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vscconsultingptyltd1608535888097\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vunetsystemsprivatelimited1646716402131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vunetsystemsprivatelimited1646716402131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wandisco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wandisco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wintellisys-inc-4561600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wintellisys-inc-4561600\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wood1595864497589\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wood1595864497589\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xoriantcorporationazxteam1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xoriantcorporationazxteam1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yaseensmarket1645449809728\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yaseensmarket1645449809728\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yellowfininternationalptyltd1616363974066\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfininternationalptyltd1616363974066\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zenterasystemsinc1605292453288\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zenterasystemsinc1605292453288\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zscaler\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zscaler1579058425289\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zscaler1579058425289\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zultysinc1596831546163\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zultysinc1596831546163\"\r\n }\r\n]", - "x-ms-client-request-id" : "1fbaa62e-9ece-4f98-a4ec-ecbb604f0d63", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bcdd058-113c-459d-921a-43ccbf2983fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "16055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f67263b-0795-47ab-a605-158381a1edc6", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130012Z:1f67263b-0795-47ab-a605-158381a1edc6", - "Expires" : "-1", - "x-ms-request-id" : "13f6b5ea-1c7a-45b0-ade8-31dafb8f6cf5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-confidential-vm-experimental\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-confidential-vm-focal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-confidential-vm-test-focal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-test-focal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-minimal-focal-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-minimal-groovy-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-minimal-hirsute-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-minimal-impish-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-minimal-jammy-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-private-fips-motorola\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-att\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-cfx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-csw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-dd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-kudsec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-nestle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-shell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-sk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-ub01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-advanced-sla-unp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-bionic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-bionic-fips\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-focal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-focal-fips\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-hidden-msft-fips\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-jammy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-microsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-minimal-cis-focal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-trusty\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-trusty\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-xenial\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-pro-xenial-fips\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-arm-preview-focal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-eoan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-focal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-focal-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-groovy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-groovy-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-hirsute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-hirsute-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-impish\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-impish-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-jammy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-jammy-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0001-com-ubuntu-server-kinetic-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0002-com-ubuntu-minimal-bionic-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0002-com-ubuntu-minimal-disco-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0002-com-ubuntu-minimal-focal-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-focal-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0002-com-ubuntu-minimal-xenial-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0002-com-ubuntu-server-arm-preview-bionic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-server-arm-preview-bionic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0003-com-ubuntu-minimal-eoan-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0003-com-ubuntu-server-trusted-vm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test-ubuntu-premium-offer-0002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/test-ubuntu-premium-offer-0002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"UbuntuServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer\"\r\n }\r\n]", - "x-ms-client-request-id" : "3bcdd058-113c-459d-921a-43ccbf2983fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6d4d8df-970b-44b4-b18e-a112a8aedac8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1683", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee7d1ed3-35c5-4bd0-82a9-d3ea2943f0f2", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:ee7d1ed3-35c5-4bd0-82a9-d3ea2943f0f2", - "Expires" : "-1", - "x-ms-request-id" : "5a66998d-9630-4ff6-b773-fb873fb9cdc8", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "a6d4d8df-970b-44b4-b18e-a112a8aedac8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "450cfb09-6ca2-4833-9324-0cc331c04ac1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "326", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e32538c-0d56-44de-aebb-92bb60fdf571", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:7e32538c-0d56-44de-aebb-92bb60fdf571", - "Expires" : "-1", - "x-ms-request-id" : "5c1534fa-8397-4a57-af9d-c906170ed196", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/18_04/Versions/18.04.20210309\"\r\n }\r\n]", - "x-ms-client-request-id" : "450cfb09-6ca2-4833-9324-0cc331c04ac1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/18_04/versions/18.04.20210309?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cae65583-02d4-443b-8cc4-84d8e323d5e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c712b688-5885-414b-a368-283f944cd6d5", - "Date" : "Tue, 24 May 2022 13:00:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130013Z:c712b688-5885-414b-a368-283f944cd6d5", - "Expires" : "-1", - "x-ms-request-id" : "dfd3d4ea-a544-40bf-9d2f-b5291eb11fd2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/18_04/Versions/18.04.20210309\"\r\n}", - "x-ms-client-request-id" : "cae65583-02d4-443b-8cc4-84d8e323d5e6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4724f040-069d-41a8-be9b-ec537b0aff1e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "331", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28939c70-b558-4b97-8c5c-d97d8651a18f", - "Date" : "Tue, 24 May 2022 13:00:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130014Z:28939c70-b558-4b97-8c5c-d97d8651a18f", - "Expires" : "-1", - "x-ms-request-id" : "c5bfe5b4-8a85-4500-b510-ce2c537bd3da", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/18_04-gen2/Versions/18.04.20210309\"\r\n }\r\n]", - "x-ms-client-request-id" : "4724f040-069d-41a8-be9b-ec537b0aff1e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/18_04-gen2/versions/18.04.20210309?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf5ba9fe-7833-410a-a690-d996e71aeb79", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "930", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "811d6e4e-39aa-4b89-ba11-3c5311cc0e29", - "Date" : "Tue, 24 May 2022 13:00:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130014Z:811d6e4e-39aa-4b89-ba11-3c5311cc0e29", - "Expires" : "-1", - "x-ms-request-id" : "44d6acc2-e88f-4484-a755-f9d014018790", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/18_04-gen2/Versions/18.04.20210309\"\r\n}", - "x-ms-client-request-id" : "bf5ba9fe-7833-410a-a690-d996e71aeb79", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f989aa2-6d94-4f3f-9384-53186443f804", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "326", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6df055a4-0c22-404d-8799-15827f4bbc47", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130014Z:6df055a4-0c22-404d-8799-15827f4bbc47", - "Expires" : "-1", - "x-ms-request-id" : "306bb3af-0dd9-487f-95bf-35e7a577ab71", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/20_04/Versions/20.04.20210309\"\r\n }\r\n]", - "x-ms-client-request-id" : "6f989aa2-6d94-4f3f-9384-53186443f804", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/20_04/versions/20.04.20210309?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "780e24e5-f315-4f29-9042-0cd86e99b52d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "973731f5-7b26-4716-947b-a8460be53907", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130015Z:973731f5-7b26-4716-947b-a8460be53907", - "Expires" : "-1", - "x-ms-request-id" : "f5f7287f-b46c-4fe1-b40c-45931cebfeae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/20_04/Versions/20.04.20210309\"\r\n}", - "x-ms-client-request-id" : "780e24e5-f315-4f29-9042-0cd86e99b52d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9617194-8992-47bc-9386-455f076f20ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "331", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d6a4341-1fa5-45a4-b3e5-b04f4d4cdf12", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130015Z:1d6a4341-1fa5-45a4-b3e5-b04f4d4cdf12", - "Expires" : "-1", - "x-ms-request-id" : "63ea7fd2-c7a4-44b2-abda-a86f53549d4c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/20_04-gen2/Versions/20.04.20210309\"\r\n }\r\n]", - "x-ms-client-request-id" : "d9617194-8992-47bc-9386-455f076f20ca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-experimental/skus/20_04-gen2/versions/20.04.20210309?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aec9a56-5451-482c-ae0a-41bc8f851fa9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "930", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5079949b-3dcf-46a1-99b1-08569815e0e6", - "Date" : "Tue, 24 May 2022 13:00:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130015Z:5079949b-3dcf-46a1-99b1-08569815e0e6", - "Expires" : "-1", - "x-ms-request-id" : "c558b417-da74-4cef-9a75-55cb9a25c802", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20210309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-experimental/Skus/20_04-gen2/Versions/20.04.20210309\"\r\n}", - "x-ms-client-request-id" : "6aec9a56-5451-482c-ae0a-41bc8f851fa9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0bf14c1-da90-4cf9-96f7-3965413758c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1269", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bda47a6b-0504-4c83-bbb5-9f4d82dacecb", - "Date" : "Tue, 24 May 2022 13:00:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9998,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:bda47a6b-0504-4c83-bbb5-9f4d82dacecb", - "Expires" : "-1", - "x-ms-request-id" : "6d7d3d08-ec5e-4810-98ca-936a872ba4d6", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts-cvm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "f0bf14c1-da90-4cf9-96f7-3965413758c7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "841ac28c-c81c-4a08-add6-21f76220eafc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "7669e1a3-057f-4482-a1dc-9a1e2d3bfe3f", - "Date" : "Tue, 24 May 2022 13:00:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:7669e1a3-057f-4482-a1dc-9a1e2d3bfe3f", - "Expires" : "-1", - "x-ms-request-id" : "fd83f2f1-58d2-4067-978e-2b20b7100174", - "Body" : "[]", - "x-ms-client-request-id" : "841ac28c-c81c-4a08-add6-21f76220eafc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9249f1a-96b3-4dd4-8af0-046d5366d95d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "0bdfe5bd-e7ee-4743-b359-c9c5b894e183", - "Date" : "Tue, 24 May 2022 13:00:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:0bdfe5bd-e7ee-4743-b359-c9c5b894e183", - "Expires" : "-1", - "x-ms-request-id" : "4adc24ab-4aae-43f9-8f61-74ec12ecd993", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202111100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202112020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202112120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202204040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202205100\"\r\n }\r\n]", - "x-ms-client-request-id" : "c9249f1a-96b3-4dd4-8af0-046d5366d95d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202111100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d2542e8-9806-4c97-9696-db0800095aae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b73ad4a-460c-474b-9abb-0d7e190f466d", - "Date" : "Tue, 24 May 2022 13:00:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130016Z:7b73ad4a-460c-474b-9abb-0d7e190f466d", - "Expires" : "-1", - "x-ms-request-id" : "7d009711-3137-4adf-b06e-0c065926ed5b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202111100\"\r\n}", - "x-ms-client-request-id" : "2d2542e8-9806-4c97-9696-db0800095aae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9d73106-9ea5-4d18-9063-bd16eae7406e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d3a737a-9676-47e4-980f-8479b6728f75", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:5d3a737a-9676-47e4-980f-8479b6728f75", - "Expires" : "-1", - "x-ms-request-id" : "361305a4-fb6b-4405-9bc2-b20a28fb6f3f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "c9d73106-9ea5-4d18-9063-bd16eae7406e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7879b900-5286-4358-9fa0-f8638e3d23f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3dc9be6-5e58-4659-bc97-18d649d690bf", - "Date" : "Tue, 24 May 2022 13:00:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:c3dc9be6-5e58-4659-bc97-18d649d690bf", - "Expires" : "-1", - "x-ms-request-id" : "1094c753-68d4-4c76-b87e-8c5e3ac0ad51", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "7879b900-5286-4358-9fa0-f8638e3d23f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b64a6d09-99fc-496c-919e-678410029148", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "429e66c3-0f72-481a-ae06-7f346f22299c", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:429e66c3-0f72-481a-ae06-7f346f22299c", - "Expires" : "-1", - "x-ms-request-id" : "01bbaf42-9ab9-42f0-aee5-035dbdcb5257", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "b64a6d09-99fc-496c-919e-678410029148", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2bdfced5-6c29-432b-b153-59493384172f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21bd8c23-bf0b-4186-b539-7fecee4ae01b", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:21bd8c23-bf0b-4186-b539-7fecee4ae01b", - "Expires" : "-1", - "x-ms-request-id" : "368425a7-020a-44dd-a64c-27f0b573d6ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "2bdfced5-6c29-432b-b153-59493384172f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "016c3de5-e4ec-4888-b7eb-649001366f79", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ca368a5-dd24-4d1e-86e3-83d72e9eb485", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:5ca368a5-dd24-4d1e-86e3-83d72e9eb485", - "Expires" : "-1", - "x-ms-request-id" : "a4f31f44-1130-47a8-981a-573e04dea0d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "016c3de5-e4ec-4888-b7eb-649001366f79", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd069b43-d170-4920-8c0b-7df68570313f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e900eacd-483d-4474-ae7a-8b50d0ce0806", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:e900eacd-483d-4474-ae7a-8b50d0ce0806", - "Expires" : "-1", - "x-ms-request-id" : "95cb92d9-947e-4d3e-9e99-9e8e50e80534", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "cd069b43-d170-4920-8c0b-7df68570313f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202112120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8888e62d-499c-4068-820c-fdcbc325b4a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c6f87f1-461a-4898-9d4d-188d16d4fb7f", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:2c6f87f1-461a-4898-9d4d-188d16d4fb7f", - "Expires" : "-1", - "x-ms-request-id" : "4f68683e-a444-48b6-ad24-6d0d124c9a6f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202112120\"\r\n}", - "x-ms-client-request-id" : "8888e62d-499c-4068-820c-fdcbc325b4a7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "937aed2a-1757-4372-a17a-f9327a52c25c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd286c8f-11ea-472d-83e3-120af1e06e06", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:fd286c8f-11ea-472d-83e3-120af1e06e06", - "Expires" : "-1", - "x-ms-request-id" : "45a762d6-61f8-4bb5-a77b-002b4483d5bd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "937aed2a-1757-4372-a17a-f9327a52c25c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1df01c3f-8435-4552-8ef3-33980a5608e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0dd44d9-4ec3-471b-97ef-c9b379c3aac0", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:e0dd44d9-4ec3-471b-97ef-c9b379c3aac0", - "Expires" : "-1", - "x-ms-request-id" : "acd9f387-56f7-4ee4-a0bc-342afc9808ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202205100\"\r\n}", - "x-ms-client-request-id" : "1df01c3f-8435-4552-8ef3-33980a5608e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cf43f66-a23f-41bd-8379-f9e51c6c6c2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93c0bde8-892a-4921-bb9c-ac4bbcbd8e5d", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:93c0bde8-892a-4921-bb9c-ac4bbcbd8e5d", - "Expires" : "-1", - "x-ms-request-id" : "56cbd66b-436c-4015-aa84-97868ef6d97d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202201060\"\r\n}", - "x-ms-client-request-id" : "0cf43f66-a23f-41bd-8379-f9e51c6c6c2d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3d22601-fa7c-464e-8143-ec378c36e021", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f2743f7-9e29-479d-bff6-846e80689691", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:4f2743f7-9e29-479d-bff6-846e80689691", - "Expires" : "-1", - "x-ms-request-id" : "c5572a8b-18ef-4866-bf83-4f4efd1977de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "b3d22601-fa7c-464e-8143-ec378c36e021", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202203310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7414ad04-e998-4b30-aee1-f259a41ffbc2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8902642-6ed1-4481-b2bc-b36208cab166", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12982,Microsoft.Compute/GetVMImageFromLocation30Min;73982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:f8902642-6ed1-4481-b2bc-b36208cab166", - "Expires" : "-1", - "x-ms-request-id" : "28aaedd5-7da7-4473-ac74-2662106ec1be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203310\"\r\n}", - "x-ms-client-request-id" : "7414ad04-e998-4b30-aee1-f259a41ffbc2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "409d021c-7c8a-47f7-b572-dd601a912d08", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82c06adf-f0cd-45fe-aa82-c92902e13910", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12984,Microsoft.Compute/GetVMImageFromLocation30Min;73984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130017Z:82c06adf-f0cd-45fe-aa82-c92902e13910", - "Expires" : "-1", - "x-ms-request-id" : "9e4f3cf5-9ecb-4d67-ad47-c23e54ed0e62", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202205090\"\r\n}", - "x-ms-client-request-id" : "409d021c-7c8a-47f7-b572-dd601a912d08", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7f192a1-353a-43bf-a9bc-885848e58b0f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "199ebbb9-7eac-4689-aa4f-099bd003bc48", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:199ebbb9-7eac-4689-aa4f-099bd003bc48", - "Expires" : "-1", - "x-ms-request-id" : "ad1f575e-acb6-407a-b203-a44631059c68", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "b7f192a1-353a-43bf-a9bc-885848e58b0f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202204040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "955c1c6a-532b-4afe-a8d6-3ef8398879c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d1d0ee9-ab85-4184-a6ec-1db5c8a28082", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12980,Microsoft.Compute/GetVMImageFromLocation30Min;73980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:8d1d0ee9-ab85-4184-a6ec-1db5c8a28082", - "Expires" : "-1", - "x-ms-request-id" : "916e247a-a4e6-4911-ae31-19d078bcc89b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202204040\"\r\n}", - "x-ms-client-request-id" : "955c1c6a-532b-4afe-a8d6-3ef8398879c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "432d6e0f-3503-4500-b325-b046c4876f80", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e81d3b6c-b5c4-4cb2-b3cd-3df066f97c67", - "Date" : "Tue, 24 May 2022 13:00:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:e81d3b6c-b5c4-4cb2-b3cd-3df066f97c67", - "Expires" : "-1", - "x-ms-request-id" : "3dd7a3a7-65bd-4be7-befd-377b1f644fbe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "432d6e0f-3503-4500-b325-b046c4876f80", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-cvm/versions/20.04.202112020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c359a84-ab7e-41ae-bdec-277f6fcfccea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1192", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b7b4ce9-edff-4eef-9cb4-33c9d4e51b53", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12978,Microsoft.Compute/GetVMImageFromLocation30Min;73978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130018Z:7b7b4ce9-edff-4eef-9cb4-33c9d4e51b53", - "Expires" : "-1", - "x-ms-request-id" : "669ebaa2-4858-4a80-ae3e-c6f10137b614", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-cvm/Versions/20.04.202112020\"\r\n}", - "x-ms-client-request-id" : "5c359a84-ab7e-41ae-bdec-277f6fcfccea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "431b8b2e-a8b3-42fa-bc98-8b41b404e539", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1311", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "353c0584-8be8-4c13-87c1-0d8616c494cf", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:353c0584-8be8-4c13-87c1-0d8616c494cf", - "Expires" : "-1", - "x-ms-request-id" : "5b9ca233-e5d7-4df7-9f66-8cfb7bba628d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202107090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202109080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202110290\"\r\n }\r\n]", - "x-ms-client-request-id" : "431b8b2e-a8b3-42fa-bc98-8b41b404e539", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f34ca7d-ff1a-4121-9a63-53efbb6c47e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "929", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1db4201d-8d26-4e6f-b700-692a24e3a970", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12975,Microsoft.Compute/GetVMImageFromLocation30Min;73975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:1db4201d-8d26-4e6f-b700-692a24e3a970", - "Expires" : "-1", - "x-ms-request-id" : "3fb09192-eb9c-483f-8244-912f0bf5e069", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "4f34ca7d-ff1a-4121-9a63-53efbb6c47e7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-gen2/versions/20.04.202109080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3e0dd35-c095-4e9b-98e5-397a8063b8e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "929", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f2eaeb9-ae0e-4c72-8515-18ebfe611c5a", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12977,Microsoft.Compute/GetVMImageFromLocation30Min;73977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:8f2eaeb9-ae0e-4c72-8515-18ebfe611c5a", - "Expires" : "-1", - "x-ms-request-id" : "27a04089-db36-460c-be7a-e070d57ef8f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202109080\"\r\n}", - "x-ms-client-request-id" : "b3e0dd35-c095-4e9b-98e5-397a8063b8e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-gen2/versions/20.04.202110290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1213a0e9-4221-4c47-9d6e-7c23aa269cca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "929", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39e92609-fa18-40d8-b5cb-6bd76ce579de", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12976,Microsoft.Compute/GetVMImageFromLocation30Min;73976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:39e92609-fa18-40d8-b5cb-6bd76ce579de", - "Expires" : "-1", - "x-ms-request-id" : "e4fcabbe-1bdb-4491-8461-932f94ca3b16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202110290\"\r\n}", - "x-ms-client-request-id" : "1213a0e9-4221-4c47-9d6e-7c23aa269cca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-focal/skus/20_04-lts-gen2/versions/20.04.202107090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6f8fe9b-b4e4-4b35-a65c-436b17e8e80b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "929", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ac2cc19-85d6-4216-a56c-b8717d27991a", - "Date" : "Tue, 24 May 2022 13:00:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12974,Microsoft.Compute/GetVMImageFromLocation30Min;73974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:6ac2cc19-85d6-4216-a56c-b8717d27991a", - "Expires" : "-1", - "x-ms-request-id" : "a7d8b4fb-f395-4f2d-996d-62ee4e322186", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchAndConfidentialVmSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-focal/Skus/20_04-lts-gen2/Versions/20.04.202107090\"\r\n}", - "x-ms-client-request-id" : "a6f8fe9b-b4e4-4b35-a65c-436b17e8e80b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-test-focal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de0e4049-e806-463c-bfd9-cc89ecfa1436", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "432", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "574318b4-e6bf-48d5-ab7c-8b5964e7fe50", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9997,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130019Z:574318b4-e6bf-48d5-ab7c-8b5964e7fe50", - "Expires" : "-1", - "x-ms-request-id" : "0884c54d-19bc-4f1e-9229-c3ddaf5ef119", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts-cvm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-test-focal/Skus/20_04-lts-cvm\"\r\n }\r\n]", - "x-ms-client-request-id" : "de0e4049-e806-463c-bfd9-cc89ecfa1436", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-test-focal/skus/20_04-lts-cvm/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33885057-3182-40e4-8ec0-ef2af64e882e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "334", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24c558f2-4ce0-4f66-9f06-68fa831fcf8f", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130020Z:24c558f2-4ce0-4f66-9f06-68fa831fcf8f", - "Expires" : "-1", - "x-ms-request-id" : "a9b34d4f-d1d9-4410-aefd-04c002b7f71a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-test-focal/Skus/20_04-lts-cvm/Versions/20.04.202201250\"\r\n }\r\n]", - "x-ms-client-request-id" : "33885057-3182-40e4-8ec0-ef2af64e882e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-confidential-vm-test-focal/skus/20_04-lts-cvm/versions/20.04.202201250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "05ff6f1e-41f7-4fbd-a6e5-b910b3ff0bf2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1065", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a890042-f130-4dcb-8b7a-e8aea1537f08", - "Date" : "Tue, 24 May 2022 13:00:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12973,Microsoft.Compute/GetVMImageFromLocation30Min;73973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130020Z:6a890042-f130-4dcb-8b7a-e8aea1537f08", - "Expires" : "-1", - "x-ms-request-id" : "26636d5b-b027-494b-a0e0-39c8e9c07ed6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-lts-cvm\",\r\n \"product\": \"0001-com-ubuntu-confidential-vm-test-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-confidential-vm-test-focal/Skus/20_04-lts-cvm/Versions/20.04.202201250\"\r\n}", - "x-ms-client-request-id" : "05ff6f1e-41f7-4fbd-a6e5-b910b3ff0bf2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52d901dd-44fa-46b4-8c6e-bd4a0197c401", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "897", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35d7822a-16a6-4485-83d2-a71d721c45cc", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9996,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130020Z:35d7822a-16a6-4485-83d2-a71d721c45cc", - "Expires" : "-1", - "x-ms-request-id" : "7be9524c-e581-4701-ab29-c6788200ceaf", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-20_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-20_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "52d901dd-44fa-46b4-8c6e-bd4a0197c401", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d91e6e4c-5844-4444-bac2-d96bc8300f55", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2341", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af96f451-e87f-4390-8df6-77836be0b315", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:af96f451-e87f-4390-8df6-77836be0b315", - "Expires" : "-1", - "x-ms-request-id" : "9003a9f9-43fb-44aa-ac3c-ccdf50c4f471", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205180\"\r\n }\r\n]", - "x-ms-client-request-id" : "d91e6e4c-5844-4444-bac2-d96bc8300f55", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb52d6dc-6ceb-4a63-b616-2006ac6bebd9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66bdac42-50b5-4d64-a49c-53bd44d0ca7a", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12972,Microsoft.Compute/GetVMImageFromLocation30Min;73972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:66bdac42-50b5-4d64-a49c-53bd44d0ca7a", - "Expires" : "-1", - "x-ms-request-id" : "f0a0d7c1-0709-4e9c-b0b6-027471e686d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "fb52d6dc-6ceb-4a63-b616-2006ac6bebd9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a12abbd-11c6-4aae-996d-34ce445af94c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4619ce94-1399-4175-b42d-dbab3d77fc2c", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12971,Microsoft.Compute/GetVMImageFromLocation30Min;73971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:4619ce94-1399-4175-b42d-dbab3d77fc2c", - "Expires" : "-1", - "x-ms-request-id" : "39f3ac1d-5895-414a-a727-666c78c8c102", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202204290\"\r\n}", - "x-ms-client-request-id" : "5a12abbd-11c6-4aae-996d-34ce445af94c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3c3c022-eb50-48da-8ca5-31f37f483ee4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce28ac75-07b9-4aae-8f39-f7cff6721a9b", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12968,Microsoft.Compute/GetVMImageFromLocation30Min;73968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:ce28ac75-07b9-4aae-8f39-f7cff6721a9b", - "Expires" : "-1", - "x-ms-request-id" : "ab3812ee-d615-4889-9822-34f024bcc191", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205180\"\r\n}", - "x-ms-client-request-id" : "c3c3c022-eb50-48da-8ca5-31f37f483ee4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4e32d98-5d53-49a5-8cb4-f549146df1ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02d92913-e6bf-45e6-8f6b-fc6be2b56ae9", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12967,Microsoft.Compute/GetVMImageFromLocation30Min;73967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:02d92913-e6bf-45e6-8f6b-fc6be2b56ae9", - "Expires" : "-1", - "x-ms-request-id" : "71bfd64a-00cb-4e21-b877-cf22a3f615f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205060\"\r\n}", - "x-ms-client-request-id" : "a4e32d98-5d53-49a5-8cb4-f549146df1ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfc2f839-38ab-4272-a7f0-6dafe622b352", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9c8507a-1bf3-431f-a59c-43a3b12e6492", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12966,Microsoft.Compute/GetVMImageFromLocation30Min;73966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:e9c8507a-1bf3-431f-a59c-43a3b12e6492", - "Expires" : "-1", - "x-ms-request-id" : "8571c99e-3e7c-43c5-8627-c7b484a6a462", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205090\"\r\n}", - "x-ms-client-request-id" : "bfc2f839-38ab-4272-a7f0-6dafe622b352", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202205170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26e48a9b-c546-419c-928e-35cfad9f1c14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c836406-f5df-41d5-9a35-622687b00f8d", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12969,Microsoft.Compute/GetVMImageFromLocation30Min;73969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:1c836406-f5df-41d5-9a35-622687b00f8d", - "Expires" : "-1", - "x-ms-request-id" : "6c5fdce0-b007-41e9-ac31-aa8ecf8eca10", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205170\"\r\n}", - "x-ms-client-request-id" : "26e48a9b-c546-419c-928e-35cfad9f1c14", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions/20.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aefff232-18cc-449c-916f-2c7354e46b71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "152387ff-4d31-46b3-ae1f-033fbf127f2c", - "Date" : "Tue, 24 May 2022 13:00:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12970,Microsoft.Compute/GetVMImageFromLocation30Min;73970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:152387ff-4d31-46b3-ae1f-033fbf127f2c", - "Expires" : "-1", - "x-ms-request-id" : "10acab11-ca08-4e9a-8b58-025441a55673", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts/Versions/20.04.202205110\"\r\n}", - "x-ms-client-request-id" : "aefff232-18cc-449c-916f-2c7354e46b71", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cac987d-f378-43d8-ab4a-3095dc5c8d0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2715", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a377cdc2-d41f-45dd-81eb-f657618b5b54", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:a377cdc2-d41f-45dd-81eb-f657618b5b54", - "Expires" : "-1", - "x-ms-request-id" : "e5cb6adb-07d1-4a97-b744-b7cd85ed5c20", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202204191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205180\"\r\n }\r\n]", - "x-ms-client-request-id" : "5cac987d-f378-43d8-ab4a-3095dc5c8d0b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1313a27-2eb8-4cc6-872f-acc8341f28b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a84528cd-422a-4bf9-aa4e-476fee4b1299", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12963,Microsoft.Compute/GetVMImageFromLocation30Min;73963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:a84528cd-422a-4bf9-aa4e-476fee4b1299", - "Expires" : "-1", - "x-ms-request-id" : "6b3683ed-c8a6-430b-9102-2a937bc89581", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202204290\"\r\n}", - "x-ms-client-request-id" : "f1313a27-2eb8-4cc6-872f-acc8341f28b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202204191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a634692-b4bd-44f4-b514-2149f1aa9ac4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8302b90-cd63-4ae3-a67b-f23d36710bf0", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12964,Microsoft.Compute/GetVMImageFromLocation30Min;73964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:e8302b90-cd63-4ae3-a67b-f23d36710bf0", - "Expires" : "-1", - "x-ms-request-id" : "8134ce3e-8e3d-4aeb-80b7-e5dee1ca5cc6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202204191\"\r\n}", - "x-ms-client-request-id" : "6a634692-b4bd-44f4-b514-2149f1aa9ac4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202205170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25c6213d-6057-4168-b9e1-5016792516c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a603e2a9-9848-420a-b282-e074891ae65a", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12961,Microsoft.Compute/GetVMImageFromLocation30Min;73961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:a603e2a9-9848-420a-b282-e074891ae65a", - "Expires" : "-1", - "x-ms-request-id" : "2d58bc46-be36-46cd-afa7-a4ddb6af67fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205170\"\r\n}", - "x-ms-client-request-id" : "25c6213d-6057-4168-b9e1-5016792516c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39ca24bc-6175-4649-b1ba-9c5325fdbcde", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7826ee9-83ed-44d8-9b77-d2e0831f0728", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12962,Microsoft.Compute/GetVMImageFromLocation30Min;73962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:f7826ee9-83ed-44d8-9b77-d2e0831f0728", - "Expires" : "-1", - "x-ms-request-id" : "3cf312f5-bbf0-4524-9601-70a1c96bec7d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205090\"\r\n}", - "x-ms-client-request-id" : "39ca24bc-6175-4649-b1ba-9c5325fdbcde", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ccdbe72-8476-47bd-b63d-90595dd3a6d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e924415-1f0d-4d70-9fc3-31c06912e4d2", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12960,Microsoft.Compute/GetVMImageFromLocation30Min;73960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:5e924415-1f0d-4d70-9fc3-31c06912e4d2", - "Expires" : "-1", - "x-ms-request-id" : "adf2cf46-7774-4e7f-b5ce-646c56653f65", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205180\"\r\n}", - "x-ms-client-request-id" : "3ccdbe72-8476-47bd-b63d-90595dd3a6d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c813f032-ad9c-4b61-a78a-1914babccdb5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4f04402-c4ec-4d45-9135-ed575149a232", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12965,Microsoft.Compute/GetVMImageFromLocation30Min;73965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:d4f04402-c4ec-4d45-9135-ed575149a232", - "Expires" : "-1", - "x-ms-request-id" : "17d59a96-fb29-4f17-a00d-dcc8b44cd30b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "c813f032-ad9c-4b61-a78a-1914babccdb5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5fcc7c0a-b614-447c-811c-dadddf90004c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f082dc7-fafc-4902-a709-3f860d683c7e", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12959,Microsoft.Compute/GetVMImageFromLocation30Min;73959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130021Z:6f082dc7-fafc-4902-a709-3f860d683c7e", - "Expires" : "-1", - "x-ms-request-id" : "5b3bec8c-8268-42cc-a566-cb2fcb0d79a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205110\"\r\n}", - "x-ms-client-request-id" : "5fcc7c0a-b614-447c-811c-dadddf90004c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions/20.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "184ef0df-b5ce-48e3-8f7d-e578c1c125ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63010b87-943a-46c2-9ee1-e154509dbfa8", - "Date" : "Tue, 24 May 2022 13:00:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12958,Microsoft.Compute/GetVMImageFromLocation30Min;73958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130022Z:63010b87-943a-46c2-9ee1-e154509dbfa8", - "Expires" : "-1", - "x-ms-request-id" : "a9208140-47a4-4b5f-86f4-54fa508b0e2a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2/Versions/20.04.202205060\"\r\n}", - "x-ms-client-request-id" : "184ef0df-b5ce-48e3-8f7d-e578c1c125ba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "89814cdc-b342-45bb-a590-4208a4957d04", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "448", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f39306d3-5580-4682-a095-4c9615264dd2", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9995,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130022Z:f39306d3-5580-4682-a095-4c9615264dd2", - "Expires" : "-1", - "x-ms-request-id" : "2ce68ffd-6ac7-4b4b-8343-ecc8cf65e947", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-20_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "89814cdc-b342-45bb-a590-4208a4957d04", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus/minimal-20_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4c7b4ab-0df6-4c91-9471-628da24a3014", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1683", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d287eaa3-661b-46e1-8c65-4a5ec19941ee", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:d287eaa3-661b-46e1-8c65-4a5ec19941ee", - "Expires" : "-1", - "x-ms-request-id" : "f0ee1675-0c32-41a6-9580-24ef25d7d2b5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202012010\"\r\n }\r\n]", - "x-ms-client-request-id" : "f4c7b4ab-0df6-4c91-9471-628da24a3014", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus/minimal-20_10-daily-gen2/versions/20.10.202011130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ffae9441-fc7c-404e-a56f-311492778af1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1ddbbfb-c158-4211-9d73-5d3d224922f6", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12957,Microsoft.Compute/GetVMImageFromLocation30Min;73957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:b1ddbbfb-c158-4211-9d73-5d3d224922f6", - "Expires" : "-1", - "x-ms-request-id" : "981cb8dd-a955-4def-8d97-7417f280f9dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011130\"\r\n}", - "x-ms-client-request-id" : "ffae9441-fc7c-404e-a56f-311492778af1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus/minimal-20_10-daily-gen2/versions/20.10.202011260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84e8835c-3050-46a4-965f-3aa69d517143", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79d42a84-9449-40ec-8481-8bd99abbafa1", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12955,Microsoft.Compute/GetVMImageFromLocation30Min;73955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:79d42a84-9449-40ec-8481-8bd99abbafa1", - "Expires" : "-1", - "x-ms-request-id" : "cff78f00-8849-4473-b778-661bfa1070be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011260\"\r\n}", - "x-ms-client-request-id" : "84e8835c-3050-46a4-965f-3aa69d517143", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus/minimal-20_10-daily-gen2/versions/20.10.202011110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4690eed-592b-479f-bbc0-2a19c203e2e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "360b23b0-5f5b-439b-bff6-03d0eaecc29d", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12956,Microsoft.Compute/GetVMImageFromLocation30Min;73956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:360b23b0-5f5b-439b-bff6-03d0eaecc29d", - "Expires" : "-1", - "x-ms-request-id" : "f7940eef-85d0-4ebf-ad13-f9b19b209379", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011110\"\r\n}", - "x-ms-client-request-id" : "f4690eed-592b-479f-bbc0-2a19c203e2e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus/minimal-20_10-daily-gen2/versions/20.10.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "be79f214-c9b1-40e0-aeea-06662c761ef2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a7e3685-6860-45a9-8ef8-8c597e97d9fc", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12954,Microsoft.Compute/GetVMImageFromLocation30Min;73954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:1a7e3685-6860-45a9-8ef8-8c597e97d9fc", - "Expires" : "-1", - "x-ms-request-id" : "bf88b2af-e48a-4238-9d5b-97cb9387f579", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202012010\"\r\n}", - "x-ms-client-request-id" : "be79f214-c9b1-40e0-aeea-06662c761ef2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-groovy-daily/skus/minimal-20_10-daily-gen2/versions/20.10.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "691ecc1f-dd52-43dd-ab24-e045a4bc8312", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc2d3c2d-a629-43c3-aa5a-98baeb7076ef", - "Date" : "Tue, 24 May 2022 13:00:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12953,Microsoft.Compute/GetVMImageFromLocation30Min;73953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:fc2d3c2d-a629-43c3-aa5a-98baeb7076ef", - "Expires" : "-1", - "x-ms-request-id" : "fcb8d524-b176-4021-9880-e3ec8bf3ecb6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-groovy-daily/Skus/minimal-20_10-daily-gen2/Versions/20.10.202011230\"\r\n}", - "x-ms-client-request-id" : "691ecc1f-dd52-43dd-ab24-e045a4bc8312", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98bec0cd-54a1-4523-82f3-2532dc8e341d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "885", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "893a8c48-09a7-4353-a507-e31404ece9b8", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9994,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130023Z:893a8c48-09a7-4353-a507-e31404ece9b8", - "Expires" : "-1", - "x-ms-request-id" : "c003b0ea-854f-4efb-a7ae-6688a1449d9e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-21_04-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-21_04-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "98bec0cd-54a1-4523-82f3-2532dc8e341d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "202e385e-974f-4e82-afbc-5abd854e1879", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2327", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61a6428c-3cbf-45cf-9bf6-a0b7a6052796", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:61a6428c-3cbf-45cf-9bf6-a0b7a6052796", - "Expires" : "-1", - "x-ms-request-id" : "2ca7bbbc-79d6-4865-8e8d-c31fd8b36b69", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202112150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202112160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201112\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201112\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201190\"\r\n }\r\n]", - "x-ms-client-request-id" : "202e385e-974f-4e82-afbc-5abd854e1879", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202112150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff73ffe4-02df-40d2-9bfa-1ee91af46e04", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1e02c3f-6b71-4525-bf37-e3e85b89c307", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12952,Microsoft.Compute/GetVMImageFromLocation30Min;73952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:d1e02c3f-6b71-4525-bf37-e3e85b89c307", - "Expires" : "-1", - "x-ms-request-id" : "496b9f65-4a8e-4e82-9fd1-e423b5b53721", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202112150\"\r\n}", - "x-ms-client-request-id" : "ff73ffe4-02df-40d2-9bfa-1ee91af46e04", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202112160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db031174-0385-457e-b7fc-7d5b69a2ea40", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5b77e26-cff6-451b-a7a8-eb9561dda17a", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12951,Microsoft.Compute/GetVMImageFromLocation30Min;73951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:a5b77e26-cff6-451b-a7a8-eb9561dda17a", - "Expires" : "-1", - "x-ms-request-id" : "049dd79c-3a4a-4707-81b4-c76e90682ba0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202112160\"\r\n}", - "x-ms-client-request-id" : "db031174-0385-457e-b7fc-7d5b69a2ea40", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202201112?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b027a08-b7bb-45e8-9fde-8b9fde852eab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7cef9bf-8719-4b1e-8fe4-e1a6b4efc56c", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12950,Microsoft.Compute/GetVMImageFromLocation30Min;73950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:b7cef9bf-8719-4b1e-8fe4-e1a6b4efc56c", - "Expires" : "-1", - "x-ms-request-id" : "13fc7af4-e21d-4592-931b-1330bc34a2e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201112\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201112\"\r\n}", - "x-ms-client-request-id" : "9b027a08-b7bb-45e8-9fde-8b9fde852eab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202201190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a0c28e4-d03b-464e-863d-105baa1cb0a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db2e7bf4-369c-40b4-a37c-c0f07ae08cab", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12948,Microsoft.Compute/GetVMImageFromLocation30Min;73948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:db2e7bf4-369c-40b4-a37c-c0f07ae08cab", - "Expires" : "-1", - "x-ms-request-id" : "6abf0b97-cbf6-4e3a-ae1e-961d645c75ce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201190\"\r\n}", - "x-ms-client-request-id" : "1a0c28e4-d03b-464e-863d-105baa1cb0a3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95ea00ed-3a90-4ea0-ad90-3638ab6a1dd9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d85575c7-9582-48c9-a480-293c15a8b70b", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12949,Microsoft.Compute/GetVMImageFromLocation30Min;73949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:d85575c7-9582-48c9-a480-293c15a8b70b", - "Expires" : "-1", - "x-ms-request-id" : "05649d64-a68b-4d13-83b3-476fff30163d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201070\"\r\n}", - "x-ms-client-request-id" : "95ea00ed-3a90-4ea0-ad90-3638ab6a1dd9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202201050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c49dd18-e548-49de-b9a5-f7c2127528a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76db8029-bea1-47de-91e2-68268c0191fe", - "Date" : "Tue, 24 May 2022 13:00:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12946,Microsoft.Compute/GetVMImageFromLocation30Min;73946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:76db8029-bea1-47de-91e2-68268c0191fe", - "Expires" : "-1", - "x-ms-request-id" : "2c080c9d-04e7-4021-a869-57fc45279c92", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201050\"\r\n}", - "x-ms-client-request-id" : "0c49dd18-e548-49de-b9a5-f7c2127528a7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily/versions/21.04.202201130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6999b603-2b7f-4903-b1ad-45781603877e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "803", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96f9f4ea-cae5-4022-b224-a8065310acc7", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12947,Microsoft.Compute/GetVMImageFromLocation30Min;73947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:96f9f4ea-cae5-4022-b224-a8065310acc7", - "Expires" : "-1", - "x-ms-request-id" : "3b8c5e41-e6e3-4265-98d8-ebdfa6d58f1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily/Versions/21.04.202201130\"\r\n}", - "x-ms-client-request-id" : "6999b603-2b7f-4903-b1ad-45781603877e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a303bf17-c639-4b1f-823a-dae2e84c2600", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2362", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "875fa33e-8c01-4c7b-98cd-c06d8d459d70", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:875fa33e-8c01-4c7b-98cd-c06d8d459d70", - "Expires" : "-1", - "x-ms-request-id" : "9371d8d0-6836-427d-8211-79fc913e81a6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202112150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202112160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201112\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201112\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201190\"\r\n }\r\n]", - "x-ms-client-request-id" : "a303bf17-c639-4b1f-823a-dae2e84c2600", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202201050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90ba3546-2bcc-4fec-aebb-fb765e324b71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a09ea1ac-f345-46e1-b859-8a7ebe7cd438", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12945,Microsoft.Compute/GetVMImageFromLocation30Min;73945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:a09ea1ac-f345-46e1-b859-8a7ebe7cd438", - "Expires" : "-1", - "x-ms-request-id" : "87c80287-d467-4fcc-a7dc-2aa43bf44183", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201050\"\r\n}", - "x-ms-client-request-id" : "90ba3546-2bcc-4fec-aebb-fb765e324b71", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202201190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ad64c7d-b2cd-48d5-9c08-9b1927299eb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "feabcc68-8079-48b9-9f5a-4bc80a207cf2", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12942,Microsoft.Compute/GetVMImageFromLocation30Min;73942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:feabcc68-8079-48b9-9f5a-4bc80a207cf2", - "Expires" : "-1", - "x-ms-request-id" : "6c228745-70a5-4a95-ac04-c6173b1b9206", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201190\"\r\n}", - "x-ms-client-request-id" : "1ad64c7d-b2cd-48d5-9c08-9b1927299eb7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202201112?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa000b58-c0be-4827-b19a-43728e4ba741", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84d89697-7592-42c7-a289-1c077a83e14b", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12941,Microsoft.Compute/GetVMImageFromLocation30Min;73941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:84d89697-7592-42c7-a289-1c077a83e14b", - "Expires" : "-1", - "x-ms-request-id" : "353d551a-8c0d-4b21-a8af-1bd82ea43bd6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201112\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201112\"\r\n}", - "x-ms-client-request-id" : "fa000b58-c0be-4827-b19a-43728e4ba741", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202201130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca0ba00d-29d4-4f5e-9341-53e73a987e1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1bea4c5-7208-4690-9120-aaa63d21fcf9", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12943,Microsoft.Compute/GetVMImageFromLocation30Min;73943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:b1bea4c5-7208-4690-9120-aaa63d21fcf9", - "Expires" : "-1", - "x-ms-request-id" : "d3604dc2-ab6d-439b-a4c1-bf7fc25d68ce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201130\"\r\n}", - "x-ms-client-request-id" : "ca0ba00d-29d4-4f5e-9341-53e73a987e1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf1130da-650e-4fcc-bfcf-a8e6cd1b52ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "628326a5-e1f9-4395-bc65-6da1317fe405", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12940,Microsoft.Compute/GetVMImageFromLocation30Min;73940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:628326a5-e1f9-4395-bc65-6da1317fe405", - "Expires" : "-1", - "x-ms-request-id" : "bf0e05bc-4b3c-4168-8911-c7f2c30f1017", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202201070\"\r\n}", - "x-ms-client-request-id" : "cf1130da-650e-4fcc-bfcf-a8e6cd1b52ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202112150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e3b837f-4026-4ce0-826a-16e637a218ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9dfb402-481d-4b38-a957-d80fa2314229", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12944,Microsoft.Compute/GetVMImageFromLocation30Min;73944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130024Z:f9dfb402-481d-4b38-a957-d80fa2314229", - "Expires" : "-1", - "x-ms-request-id" : "c8af935a-d19d-4ef6-8e9d-c5d4ab3df45b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202112150\"\r\n}", - "x-ms-client-request-id" : "3e3b837f-4026-4ce0-826a-16e637a218ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-hirsute-daily/skus/minimal-21_04-daily-gen2/versions/21.04.202112160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c2201c4-16db-46bf-b34a-c0da09a97bb0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "801", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "051f5446-f574-4cb4-a8b6-bf121da995cc", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12939,Microsoft.Compute/GetVMImageFromLocation30Min;73939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:051f5446-f574-4cb4-a8b6-bf121da995cc", - "Expires" : "-1", - "x-ms-request-id" : "490ce6a6-abd3-4d23-affd-c34e0cf2f24b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-hirsute-daily/Skus/minimal-21_04-daily-gen2/Versions/21.04.202112160\"\r\n}", - "x-ms-client-request-id" : "8c2201c4-16db-46bf-b34a-c0da09a97bb0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0709b0d6-a25c-4115-aad3-2d2fcf135a6f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "883", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "330befd5-9bb5-4190-a3cb-c704439b569f", - "Date" : "Tue, 24 May 2022 13:00:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9993,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:330befd5-9bb5-4190-a3cb-c704439b569f", - "Expires" : "-1", - "x-ms-request-id" : "91436e36-94c0-4474-9ba4-3e8b3c01fb9d", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-21_10-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-21_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "0709b0d6-a25c-4115-aad3-2d2fcf135a6f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4177ed55-1407-4768-85d2-8b8d14b074d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2320", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fafb3356-e359-49c9-9d4d-df4b61d2b568", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15986,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:fafb3356-e359-49c9-9d4d-df4b61d2b568", - "Expires" : "-1", - "x-ms-request-id" : "60f44697-e698-4ac6-abf1-fe4c95ff02dc", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202203240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202203311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202204020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202204050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202205120\"\r\n }\r\n]", - "x-ms-client-request-id" : "4177ed55-1407-4768-85d2-8b8d14b074d7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202204050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27edda49-e5a8-4dac-b635-67696fc959f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "821b3ced-e835-4147-8687-f0c456cdfdff", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12938,Microsoft.Compute/GetVMImageFromLocation30Min;73938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:821b3ced-e835-4147-8687-f0c456cdfdff", - "Expires" : "-1", - "x-ms-request-id" : "c268478e-e31c-4bf2-aed7-2dd66debafe0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202204050\"\r\n}", - "x-ms-client-request-id" : "27edda49-e5a8-4dac-b635-67696fc959f7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a361859-ccae-47f7-80f1-b3d50e642809", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "accb209b-ef2c-4e9f-9c5d-ee315792745f", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12937,Microsoft.Compute/GetVMImageFromLocation30Min;73937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:accb209b-ef2c-4e9f-9c5d-ee315792745f", - "Expires" : "-1", - "x-ms-request-id" : "ac337c48-2735-48b4-9d2d-8d2ae00601ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202204290\"\r\n}", - "x-ms-client-request-id" : "4a361859-ccae-47f7-80f1-b3d50e642809", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202203311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf5a85b0-9534-487a-b503-7f4b276a1799", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1beab577-50a3-4c20-864a-aa1c65284b9f", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12936,Microsoft.Compute/GetVMImageFromLocation30Min;73936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:1beab577-50a3-4c20-864a-aa1c65284b9f", - "Expires" : "-1", - "x-ms-request-id" : "ed3ae462-8787-4c99-aa8d-17131e84fa16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202203311\"\r\n}", - "x-ms-client-request-id" : "cf5a85b0-9534-487a-b503-7f4b276a1799", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202204020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "942c21cb-c5b6-41bd-91cc-ec8d0a85eda9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "836051d3-0ebd-4512-bfb2-ffb70f44ef9a", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12935,Microsoft.Compute/GetVMImageFromLocation30Min;73935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:836051d3-0ebd-4512-bfb2-ffb70f44ef9a", - "Expires" : "-1", - "x-ms-request-id" : "e26bfa3b-6711-4841-9aa1-a1de4c82f4dc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202204020\"\r\n}", - "x-ms-client-request-id" : "942c21cb-c5b6-41bd-91cc-ec8d0a85eda9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ea1e5b7-6c94-4e15-9e40-5939f166922c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10de1025-7b62-4199-9304-79049c49e593", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12934,Microsoft.Compute/GetVMImageFromLocation30Min;73934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:10de1025-7b62-4199-9304-79049c49e593", - "Expires" : "-1", - "x-ms-request-id" : "9fb320a3-f956-4221-80db-6ff94b26b2f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202205050\"\r\n}", - "x-ms-client-request-id" : "5ea1e5b7-6c94-4e15-9e40-5939f166922c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202203240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfbc83fa-e326-4908-899a-32830f2a3310", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d241db4-26d4-47e2-81e0-a70eb9d31a6c", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12932,Microsoft.Compute/GetVMImageFromLocation30Min;73932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:5d241db4-26d4-47e2-81e0-a70eb9d31a6c", - "Expires" : "-1", - "x-ms-request-id" : "4679df7e-5471-4cee-b141-57119d28b62d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202203240\"\r\n}", - "x-ms-client-request-id" : "dfbc83fa-e326-4908-899a-32830f2a3310", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily/versions/21.10.202205120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bc45e2a-1628-4bcf-bb63-048600fe8e84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34362426-ca76-4457-82e3-201849ee6c44", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12933,Microsoft.Compute/GetVMImageFromLocation30Min;73933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130025Z:34362426-ca76-4457-82e3-201849ee6c44", - "Expires" : "-1", - "x-ms-request-id" : "f8df9531-a36e-4550-9e83-e269fcf2259d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily/Versions/21.10.202205120\"\r\n}", - "x-ms-client-request-id" : "5bc45e2a-1628-4bcf-bb63-048600fe8e84", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52ab05b4-af63-41f8-934a-8f2ca3079aa4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2355", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28a49bdf-8daa-4f69-a41b-2ffc82f0c256", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:28a49bdf-8daa-4f69-a41b-2ffc82f0c256", - "Expires" : "-1", - "x-ms-request-id" : "b64a32df-99f8-4eb3-9c79-77cac27e76a0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202203240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202203311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202204020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202204050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202205120\"\r\n }\r\n]", - "x-ms-client-request-id" : "52ab05b4-af63-41f8-934a-8f2ca3079aa4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202203240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb1f734a-de0b-418c-a1d4-9066af8cc7a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26e37b4c-3ed2-4032-a9a6-b902ce186c73", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12931,Microsoft.Compute/GetVMImageFromLocation30Min;73931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:26e37b4c-3ed2-4032-a9a6-b902ce186c73", - "Expires" : "-1", - "x-ms-request-id" : "29e32c06-00bf-45c3-ac3d-545a178a2e7b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202203240\"\r\n}", - "x-ms-client-request-id" : "eb1f734a-de0b-418c-a1d4-9066af8cc7a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202203311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bd553c2-bfc9-4c23-9818-3a873b16a65d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1528795-86bb-4617-a730-85917c3bba85", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12930,Microsoft.Compute/GetVMImageFromLocation30Min;73930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:a1528795-86bb-4617-a730-85917c3bba85", - "Expires" : "-1", - "x-ms-request-id" : "9b20a960-60aa-451c-8c8e-fbd02f449027", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202203311\"\r\n}", - "x-ms-client-request-id" : "7bd553c2-bfc9-4c23-9818-3a873b16a65d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202205120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00c7e1ba-f3b3-40c4-91ec-2a6aa4d552ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "faee1047-bf79-4697-9046-19ff2ce56865", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12926,Microsoft.Compute/GetVMImageFromLocation30Min;73926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:faee1047-bf79-4697-9046-19ff2ce56865", - "Expires" : "-1", - "x-ms-request-id" : "add7d6c4-6b18-44f9-86e8-5c3c07f0ca9a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202205120\"\r\n}", - "x-ms-client-request-id" : "00c7e1ba-f3b3-40c4-91ec-2a6aa4d552ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bcc003e-3ea7-4284-9120-87a727501cec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ed5efe8-e778-48c3-bd1f-1ae35939ce91", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12928,Microsoft.Compute/GetVMImageFromLocation30Min;73928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:1ed5efe8-e778-48c3-bd1f-1ae35939ce91", - "Expires" : "-1", - "x-ms-request-id" : "92566c27-8429-48eb-930f-40d0375c4edf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202204290\"\r\n}", - "x-ms-client-request-id" : "1bcc003e-3ea7-4284-9120-87a727501cec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202204020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f50b126-66fe-4e01-afbb-a15805c2e072", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a8bd3c3-4558-4393-9aa5-42747fc97a73", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12929,Microsoft.Compute/GetVMImageFromLocation30Min;73929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:6a8bd3c3-4558-4393-9aa5-42747fc97a73", - "Expires" : "-1", - "x-ms-request-id" : "f9aa6590-1cc5-45e0-a574-8bdd127455ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202204020\"\r\n}", - "x-ms-client-request-id" : "1f50b126-66fe-4e01-afbb-a15805c2e072", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d34275ff-3c98-4f2c-92c5-4bdf99d7eabe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "895e98db-85d0-4de4-be83-48ce84637971", - "Date" : "Tue, 24 May 2022 13:00:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12925,Microsoft.Compute/GetVMImageFromLocation30Min;73925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:895e98db-85d0-4de4-be83-48ce84637971", - "Expires" : "-1", - "x-ms-request-id" : "bcc828ea-2077-44da-aa58-e6e75338a068", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202205050\"\r\n}", - "x-ms-client-request-id" : "d34275ff-3c98-4f2c-92c5-4bdf99d7eabe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-impish-daily/skus/minimal-21_10-daily-gen2/versions/21.10.202204050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62e9017e-ee76-4150-a1e7-4d28968efdb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1090", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12a1f77f-b06b-4907-93ec-358f004b4586", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12927,Microsoft.Compute/GetVMImageFromLocation30Min;73927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:12a1f77f-b06b-4907-93ec-358f004b4586", - "Expires" : "-1", - "x-ms-request-id" : "e693383c-4c57-4b83-86b1-ee6b53d67460", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-impish-daily/Skus/minimal-21_10-daily-gen2/Versions/21.10.202204050\"\r\n}", - "x-ms-client-request-id" : "62e9017e-ee76-4150-a1e7-4d28968efdb6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "16ac2379-8263-4ad1-be74-ba7e23766b3f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "897", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbcddfb5-fcf7-4ec6-b006-290d736a5e98", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9992,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130026Z:fbcddfb5-fcf7-4ec6-b006-290d736a5e98", - "Expires" : "-1", - "x-ms-request-id" : "44036b48-c9fb-40fa-8c21-77a203c34228", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-22_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-22_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "16ac2379-8263-4ad1-be74-ba7e23766b3f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56858b68-4bd2-4876-a928-568ccf43ce18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2341", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f60196df-1aeb-417e-8a59-2d556328a716", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:f60196df-1aeb-417e-8a59-2d556328a716", - "Expires" : "-1", - "x-ms-request-id" : "a6430d4e-2ac1-4bc6-8151-84431c5e7fae", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202205130\"\r\n }\r\n]", - "x-ms-client-request-id" : "56858b68-4bd2-4876-a928-568ccf43ce18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202204160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "590f054c-c205-4c44-a939-81ddfd209315", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b8e4823-d586-4d57-b382-27ccb2bd8aaf", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12924,Microsoft.Compute/GetVMImageFromLocation30Min;73924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:9b8e4823-d586-4d57-b382-27ccb2bd8aaf", - "Expires" : "-1", - "x-ms-request-id" : "47783e1d-c533-4d5c-b64f-8ecd8926fa7d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204160\"\r\n}", - "x-ms-client-request-id" : "590f054c-c205-4c44-a939-81ddfd209315", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202204180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "705ae667-d6f0-4729-a787-a5ad30c1f034", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c74f33d-aa9e-473a-a054-caf69df55799", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12923,Microsoft.Compute/GetVMImageFromLocation30Min;73923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:3c74f33d-aa9e-473a-a054-caf69df55799", - "Expires" : "-1", - "x-ms-request-id" : "6424ba53-7fc3-46a7-bad7-201e1d97881b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204180\"\r\n}", - "x-ms-client-request-id" : "705ae667-d6f0-4729-a787-a5ad30c1f034", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "219d3136-658f-446f-b5de-87159e2b12e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b2bc07d-8adb-47ba-99af-587c4bc4bb22", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12920,Microsoft.Compute/GetVMImageFromLocation30Min;73920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:8b2bc07d-8adb-47ba-99af-587c4bc4bb22", - "Expires" : "-1", - "x-ms-request-id" : "752baca1-1385-4e86-879f-cd76ba0dc8d7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "219d3136-658f-446f-b5de-87159e2b12e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73174498-1da7-4bd9-8b86-6b470fcd8023", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a192869b-b261-46be-9cd1-713006da55e0", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12921,Microsoft.Compute/GetVMImageFromLocation30Min;73921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:a192869b-b261-46be-9cd1-713006da55e0", - "Expires" : "-1", - "x-ms-request-id" : "0d30211c-b94f-485f-aa4b-24ec29d41f87", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202205110\"\r\n}", - "x-ms-client-request-id" : "73174498-1da7-4bd9-8b86-6b470fcd8023", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202204140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a0d802b-6feb-4211-8eee-8acd012490f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4acdbce-65f6-4274-805c-1a6558f94d20", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12918,Microsoft.Compute/GetVMImageFromLocation30Min;73918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:f4acdbce-65f6-4274-805c-1a6558f94d20", - "Expires" : "-1", - "x-ms-request-id" : "a01538cd-c3cb-4023-a219-8b46dac72f6d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204140\"\r\n}", - "x-ms-client-request-id" : "3a0d802b-6feb-4211-8eee-8acd012490f9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202205130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd805fd5-4ed1-4df7-928f-272aa5996aa5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d65bce3d-ee31-41f5-9805-f7cc486022fb", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12919,Microsoft.Compute/GetVMImageFromLocation30Min;73919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:d65bce3d-ee31-41f5-9805-f7cc486022fb", - "Expires" : "-1", - "x-ms-request-id" : "2b41470b-3e13-4e61-ba78-231be19c4f7f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202205130\"\r\n}", - "x-ms-client-request-id" : "fd805fd5-4ed1-4df7-928f-272aa5996aa5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0c1b3ee-8669-4dd5-81a1-cdf0676ccbc9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1095", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6202d2cd-310b-4e5a-8a8e-cba4df267990", - "Date" : "Tue, 24 May 2022 13:00:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12922,Microsoft.Compute/GetVMImageFromLocation30Min;73922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:6202d2cd-310b-4e5a-8a8e-cba4df267990", - "Expires" : "-1", - "x-ms-request-id" : "ae14801d-2ce8-459a-a022-fa039418ac59", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "f0c1b3ee-8669-4dd5-81a1-cdf0676ccbc9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4aafbc79-2442-4308-8dcd-a235574db096", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2376", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "190b8fef-eb82-4a32-b571-f17d8b597bb5", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15983,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:190b8fef-eb82-4a32-b571-f17d8b597bb5", - "Expires" : "-1", - "x-ms-request-id" : "13c2be8e-bc70-4a81-a1cb-3a17632321ae", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202205130\"\r\n }\r\n]", - "x-ms-client-request-id" : "4aafbc79-2442-4308-8dcd-a235574db096", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202204160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cadb3503-a4fe-4639-aa76-87b68e4da465", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f7a7d6f-c942-44c7-93ca-ab07557dc5b3", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12917,Microsoft.Compute/GetVMImageFromLocation30Min;73917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:2f7a7d6f-c942-44c7-93ca-ab07557dc5b3", - "Expires" : "-1", - "x-ms-request-id" : "5b583571-c94e-4ab2-b2e3-5444662a7021", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204160\"\r\n}", - "x-ms-client-request-id" : "cadb3503-a4fe-4639-aa76-87b68e4da465", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202204180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2eea7948-e4be-48f4-95bb-a01303253171", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c925993-9752-4c25-ba17-11d22b66a7cf", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12916,Microsoft.Compute/GetVMImageFromLocation30Min;73916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:3c925993-9752-4c25-ba17-11d22b66a7cf", - "Expires" : "-1", - "x-ms-request-id" : "a7ea89af-6666-4c47-a2b4-af880387c044", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204180\"\r\n}", - "x-ms-client-request-id" : "2eea7948-e4be-48f4-95bb-a01303253171", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202205130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42920459-b900-490a-953b-67927e18ce1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d5879545-b665-4f5c-9e64-bab5cd019c26", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12915,Microsoft.Compute/GetVMImageFromLocation30Min;73915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:d5879545-b665-4f5c-9e64-bab5cd019c26", - "Expires" : "-1", - "x-ms-request-id" : "b14e83b8-999e-4ea1-8cac-4a3d9e72d038", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202205130\"\r\n}", - "x-ms-client-request-id" : "42920459-b900-490a-953b-67927e18ce1f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9193705f-989d-4094-bcd8-1e581f23ceb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58948a90-48bb-48bc-a539-8759ba662143", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12913,Microsoft.Compute/GetVMImageFromLocation30Min;73913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:58948a90-48bb-48bc-a539-8759ba662143", - "Expires" : "-1", - "x-ms-request-id" : "5aa07ce3-2702-4005-85a3-b7d075368ee0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "9193705f-989d-4094-bcd8-1e581f23ceb6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82171da7-a957-4936-8e99-319563c674db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d9cc137-6831-4175-9ef4-967a2a27fb8b", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12912,Microsoft.Compute/GetVMImageFromLocation30Min;73912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130027Z:5d9cc137-6831-4175-9ef4-967a2a27fb8b", - "Expires" : "-1", - "x-ms-request-id" : "f522ee0c-6a0f-4845-a0d9-f8bd83de7e0e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202205110\"\r\n}", - "x-ms-client-request-id" : "82171da7-a957-4936-8e99-319563c674db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "201985a6-f99d-4423-9039-595889d15b14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a51a4483-07fd-49ee-96a6-f126f5f5d920", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12911,Microsoft.Compute/GetVMImageFromLocation30Min;73911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:a51a4483-07fd-49ee-96a6-f126f5f5d920", - "Expires" : "-1", - "x-ms-request-id" : "7a8023ce-4725-4645-9a75-12e668c6fdfa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "201985a6-f99d-4423-9039-595889d15b14", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-minimal-jammy-daily/skus/minimal-22_04-daily-lts-gen2/versions/22.04.202204140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cff2834-ca0a-40ad-ac36-bbdf1ed4c34c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1093", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9a8dfd9-bb39-4494-8ff1-db837a7a5ef2", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12914,Microsoft.Compute/GetVMImageFromLocation30Min;73914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:f9a8dfd9-bb39-4494-8ff1-db837a7a5ef2", - "Expires" : "-1", - "x-ms-request-id" : "e5a78101-edb4-4197-a4a5-6ef95a781507", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-minimal-jammy-daily/Skus/minimal-22_04-daily-lts-gen2/Versions/22.04.202204140\"\r\n}", - "x-ms-client-request-id" : "6cff2834-ca0a-40ad-ac36-bbdf1ed4c34c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1ba86f8-786b-4394-b2b5-d5e6993c576d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "881", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb8c4af1-aa1a-4da4-aebb-f259ee34783b", - "Date" : "Tue, 24 May 2022 13:00:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9991,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:cb8c4af1-aa1a-4da4-aebb-f259ee34783b", - "Expires" : "-1", - "x-ms-request-id" : "433b2a4c-4271-4438-8e72-063ae7a105f3", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"private-fips-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"private-fips-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "a1ba86f8-786b-4394-b2b5-d5e6993c576d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fbe30973-11d8-4fff-bc0f-ed15b50006ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "996", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "406c7e58-7afa-4019-8c2b-860d47f1a08c", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:406c7e58-7afa-4019-8c2b-860d47f1a08c", - "Expires" : "-1", - "x-ms-request-id" : "31a71c61-33a7-42de-b4ec-4495bf9a7218", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04/Versions/20.04.202104090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04/Versions/20.04.202109170\"\r\n }\r\n]", - "x-ms-client-request-id" : "fbe30973-11d8-4fff-bc0f-ed15b50006ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "822eaeba-691b-4c0c-9b6d-d1a433cb9145", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9526109a-c212-42b3-983c-60eff65042ae", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12910,Microsoft.Compute/GetVMImageFromLocation30Min;73910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:9526109a-c212-42b3-983c-60eff65042ae", - "Expires" : "-1", - "x-ms-request-id" : "ed9fa2e6-c12d-4d39-b8e2-a1ff705f4a77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"private-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-private-fips-motorola\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "822eaeba-691b-4c0c-9b6d-d1a433cb9145", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "10a73a4a-7c00-4138-a82e-e3eab6391458", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68cf8e62-92a1-4212-ad28-9f3538ad5a22", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12909,Microsoft.Compute/GetVMImageFromLocation30Min;73909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:68cf8e62-92a1-4212-ad28-9f3538ad5a22", - "Expires" : "-1", - "x-ms-request-id" : "4aecec74-0a8a-46db-b9eb-1817b7cd0258", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"private-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-private-fips-motorola\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "10a73a4a-7c00-4138-a82e-e3eab6391458", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04/versions/20.04.202104090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19519e73-aa54-40a0-9583-8707056b5523", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eea623ab-dac2-477a-8ca9-4bec4cf67694", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12908,Microsoft.Compute/GetVMImageFromLocation30Min;73908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130028Z:eea623ab-dac2-477a-8ca9-4bec4cf67694", - "Expires" : "-1", - "x-ms-request-id" : "859abf5d-f111-4caf-b17d-35b492f0d807", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"private-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-private-fips-motorola\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04/Versions/20.04.202104090\"\r\n}", - "x-ms-client-request-id" : "19519e73-aa54-40a0-9583-8707056b5523", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc97bcef-c5f8-403e-9e91-1cced3aa2d0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "675", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d773c1d9-4926-44ab-9312-bd47183aa4bd", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:d773c1d9-4926-44ab-9312-bd47183aa4bd", - "Expires" : "-1", - "x-ms-request-id" : "9d264ace-6ace-452b-85cb-c37f83278309", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04-gen2/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04-gen2/Versions/20.04.202109170\"\r\n }\r\n]", - "x-ms-client-request-id" : "fc97bcef-c5f8-403e-9e91-1cced3aa2d0a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7aee147-4bc1-4a58-aaf7-632145f9df78", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87c6ded2-87b9-4882-b1cb-110f835f5f39", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12907,Microsoft.Compute/GetVMImageFromLocation30Min;73907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:87c6ded2-87b9-4882-b1cb-110f835f5f39", - "Expires" : "-1", - "x-ms-request-id" : "ee867d54-8970-46d0-abe7-b2eb0bf8261f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"private-fips-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-private-fips-motorola\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "e7aee147-4bc1-4a58-aaf7-632145f9df78", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-private-fips-motorola/skus/private-fips-20_04-gen2/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a353e49-5186-48d5-bcfb-37a6b8e3d2eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6c39f49-57e7-42e6-96a7-08baa9b13c59", - "Date" : "Tue, 24 May 2022 13:00:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12906,Microsoft.Compute/GetVMImageFromLocation30Min;73906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:f6c39f49-57e7-42e6-96a7-08baa9b13c59", - "Expires" : "-1", - "x-ms-request-id" : "c3b1a060-c2a7-4b85-9bfe-10f19d6a4a42", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"private-fips-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-private-fips-motorola\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-private-fips-motorola/Skus/private-fips-20_04-gen2/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "7a353e49-5186-48d5-bcfb-37a6b8e3d2eb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f6438f9-a724-4434-8428-f1e88f01a0ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2451", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a71893a-f80a-4e2b-87c9-032fdb108a32", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9990,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130029Z:0a71893a-f80a-4e2b-87c9-032fdb108a32", - "Expires" : "-1", - "x-ms-request-id" : "ee9f73d0-a37c-4029-a3c6-a9e50e1dc2c3", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "1f6438f9-a724-4434-8428-f1e88f01a0ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3661f036-5148-418f-8bf9-4486ea6c2306", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5001", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5440368d-774b-4e68-81ff-5f36dfea3f0c", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:5440368d-774b-4e68-81ff-5f36dfea3f0c", - "Expires" : "-1", - "x-ms-request-id" : "bee27686-7cec-4ee9-a304-767b000bcd6c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200319\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200319\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200602\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "3661f036-5148-418f-8bf9-4486ea6c2306", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.20200319?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2229e87-9583-4a3f-99b9-1338955bc7fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fedc5011-e971-4cde-b86b-34e30483e0bc", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12905,Microsoft.Compute/GetVMImageFromLocation30Min;73905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:fedc5011-e971-4cde-b86b-34e30483e0bc", - "Expires" : "-1", - "x-ms-request-id" : "4d34ca60-3011-4a75-ac6d-9d5beb9a4a8b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200319\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200319\"\r\n}", - "x-ms-client-request-id" : "e2229e87-9583-4a3f-99b9-1338955bc7fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.20200602?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9471d298-1529-408d-a39d-989ee94cbfe2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "160cb27a-954d-491e-84fb-98ae5f76f9c5", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12904,Microsoft.Compute/GetVMImageFromLocation30Min;73904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:160cb27a-954d-491e-84fb-98ae5f76f9c5", - "Expires" : "-1", - "x-ms-request-id" : "acd0d747-d605-4b64-aac9-735f8f674b17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200602\"\r\n}", - "x-ms-client-request-id" : "9471d298-1529-408d-a39d-989ee94cbfe2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.20200908?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "490b8e22-2830-4c0e-9f3a-76fc0787452c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "3c86a445-00f4-4935-9940-5422682c0b4b", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12903,Microsoft.Compute/GetVMImageFromLocation30Min;73903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:3c86a445-00f4-4935-9940-5422682c0b4b", - "Expires" : "-1", - "x-ms-request-id" : "5ff07c68-505f-49df-8cde-8e9fa31f8975", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200908\"\r\n}", - "x-ms-client-request-id" : "490b8e22-2830-4c0e-9f3a-76fc0787452c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3adec79b-8bc5-4412-9af9-307f4a88b676", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "fa92b429-4a56-4c80-a250-c810b89b8874", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12902,Microsoft.Compute/GetVMImageFromLocation30Min;73902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:fa92b429-4a56-4c80-a250-c810b89b8874", - "Expires" : "-1", - "x-ms-request-id" : "35afc9f6-f8a2-4798-9394-ea748b16a38f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "3adec79b-8bc5-4412-9af9-307f4a88b676", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a754338-2c60-4398-86ef-30b48e07aef1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9aa3c6b-4e51-402e-a945-b46eb1f21259", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12899,Microsoft.Compute/GetVMImageFromLocation30Min;73899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:d9aa3c6b-4e51-402e-a945-b46eb1f21259", - "Expires" : "-1", - "x-ms-request-id" : "307a33c0-df79-4cab-b9f6-9d40d586cbec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "5a754338-2c60-4398-86ef-30b48e07aef1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae967c9b-48bd-43cd-a4bc-aa28d72cbb2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "419c6f17-b7fc-4907-b8ec-50a6e0513360", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12897,Microsoft.Compute/GetVMImageFromLocation30Min;73897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:419c6f17-b7fc-4907-b8ec-50a6e0513360", - "Expires" : "-1", - "x-ms-request-id" : "860bebba-3971-4bc8-9e8e-39d363e8065a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "ae967c9b-48bd-43cd-a4bc-aa28d72cbb2f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44e46ce5-20d2-4ce9-857e-5b532031062c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6b42708-2504-45d4-945c-9132f56c4b29", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12898,Microsoft.Compute/GetVMImageFromLocation30Min;73898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:f6b42708-2504-45d4-945c-9132f56c4b29", - "Expires" : "-1", - "x-ms-request-id" : "24374584-5885-49f6-a4bd-2c3a86f2e007", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "44e46ce5-20d2-4ce9-857e-5b532031062c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb79521b-0624-479f-a960-8f6da83ca7d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "e439f262-e943-4a00-b01f-fd9326812dbb", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12901,Microsoft.Compute/GetVMImageFromLocation30Min;73901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:e439f262-e943-4a00-b01f-fd9326812dbb", - "Expires" : "-1", - "x-ms-request-id" : "2ff4c33c-1446-4ca6-a870-45c804cc3125", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20201014\"\r\n}", - "x-ms-client-request-id" : "eb79521b-0624-479f-a960-8f6da83ca7d5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b458558-0e49-4569-939f-8779492db257", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39832e11-0439-43e6-bd01-3eaa48888bfd", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12896,Microsoft.Compute/GetVMImageFromLocation30Min;73896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:39832e11-0439-43e6-bd01-3eaa48888bfd", - "Expires" : "-1", - "x-ms-request-id" : "438c382d-96c4-40d6-970c-c454065f4500", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "5b458558-0e49-4569-939f-8779492db257", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0a0e42e-6989-4598-baf3-8468ead1899d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c2e8107-1a78-467d-87c8-7451f1440c18", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12900,Microsoft.Compute/GetVMImageFromLocation30Min;73900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:9c2e8107-1a78-467d-87c8-7451f1440c18", - "Expires" : "-1", - "x-ms-request-id" : "6fb18558-30d4-42dd-a7a8-341ebee3e8a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "f0a0e42e-6989-4598-baf3-8468ead1899d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28cdadf1-de6b-420f-9188-f93fc8e20a18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "ac664dd3-bc14-46a1-a90a-a9372329f2cb", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12895,Microsoft.Compute/GetVMImageFromLocation30Min;73895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:ac664dd3-bc14-46a1-a90a-a9372329f2cb", - "Expires" : "-1", - "x-ms-request-id" : "c56549f6-8c33-4cef-a75a-8b64cabfacd2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "28cdadf1-de6b-420f-9188-f93fc8e20a18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.20200729?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1cc4cd4b-4242-4c2b-8a55-156252ab8ea0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8137e55b-34c3-4889-a938-99307bc99057", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12893,Microsoft.Compute/GetVMImageFromLocation30Min;73893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:8137e55b-34c3-4889-a938-99307bc99057", - "Expires" : "-1", - "x-ms-request-id" : "b5d37d23-34ae-4a33-bf54-1148f7141d78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.20200729\"\r\n}", - "x-ms-client-request-id" : "1cc4cd4b-4242-4c2b-8a55-156252ab8ea0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5aaacf5a-a226-437a-aaec-1b57ca4f9d53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a66be7a-05b8-4c39-91f5-886946c6eb87", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12894,Microsoft.Compute/GetVMImageFromLocation30Min;73894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:9a66be7a-05b8-4c39-91f5-886946c6eb87", - "Expires" : "-1", - "x-ms-request-id" : "d236db97-df90-4eb3-af4e-dd1aff36a490", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "5aaacf5a-a226-437a-aaec-1b57ca4f9d53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb750565-4177-4160-b059-db8bc12a7f59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "6c72a345-5827-4430-806e-6d1169b19862", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12892,Microsoft.Compute/GetVMImageFromLocation30Min;73892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:6c72a345-5827-4430-806e-6d1169b19862", - "Expires" : "-1", - "x-ms-request-id" : "dfd2d20f-b197-4d4a-89fa-a031cdc6bfd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "fb750565-4177-4160-b059-db8bc12a7f59", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "760c4167-c0c4-4aa0-94a4-5173fb8cfe17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "954b4021-fe81-4fde-8559-2bb8b112075c", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12891,Microsoft.Compute/GetVMImageFromLocation30Min;73891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:954b4021-fe81-4fde-8559-2bb8b112075c", - "Expires" : "-1", - "x-ms-request-id" : "8750830f-25f8-4948-bbd8-a3725d374561", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202103100\"\r\n}", - "x-ms-client-request-id" : "760c4167-c0c4-4aa0-94a4-5173fb8cfe17", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b6e42e1-b2e2-486f-a824-2c4e37be15d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "c99a21a4-4618-4dac-a794-8bab48321e7f", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12890,Microsoft.Compute/GetVMImageFromLocation30Min;73890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:c99a21a4-4618-4dac-a794-8bab48321e7f", - "Expires" : "-1", - "x-ms-request-id" : "3c0e94e1-3bfc-4220-9f40-a9ef1f974592", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "6b6e42e1-b2e2-486f-a824-2c4e37be15d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e69d5135-47a8-4935-a64e-e50b9f25c0bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2547", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2a1899e-1c5c-4194-bfff-68ce6e3dd190", - "Date" : "Tue, 24 May 2022 13:00:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130030Z:c2a1899e-1c5c-4194-bfff-68ce6e3dd190", - "Expires" : "-1", - "x-ms-request-id" : "f75d9335-20a3-4fcc-ac45-0531a980041a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "e69d5135-47a8-4935-a64e-e50b9f25c0bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "260aee41-17eb-4bb3-a9e7-82e9b870587e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b6bcd81-df74-45fe-b129-41f4da3efd69", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12888,Microsoft.Compute/GetVMImageFromLocation30Min;73888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:3b6bcd81-df74-45fe-b129-41f4da3efd69", - "Expires" : "-1", - "x-ms-request-id" : "a5f37852-4c67-4282-852c-732d230ffc91", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "260aee41-17eb-4bb3-a9e7-82e9b870587e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b48812d-11ea-4e3d-af92-c84cff7afba9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3356c782-dc0a-4587-9211-faf629a0f404", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12889,Microsoft.Compute/GetVMImageFromLocation30Min;73889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:3356c782-dc0a-4587-9211-faf629a0f404", - "Expires" : "-1", - "x-ms-request-id" : "cd9fc558-e6f4-469c-9345-a6b27f55a457", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "3b48812d-11ea-4e3d-af92-c84cff7afba9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "49abd4bf-aaf3-4d24-bde3-1896b4b2939a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a5c9d58-1a02-4a66-a013-6b5b940acd71", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12887,Microsoft.Compute/GetVMImageFromLocation30Min;73887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:9a5c9d58-1a02-4a66-a013-6b5b940acd71", - "Expires" : "-1", - "x-ms-request-id" : "89fd2442-072d-41fc-b8fd-30e5ca9d39d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "49abd4bf-aaf3-4d24-bde3-1896b4b2939a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e25119cb-2ee6-4c95-b3f0-ec745b8799b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "334ba4b0-5dc1-4801-9ad8-49d01ca50c91", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12886,Microsoft.Compute/GetVMImageFromLocation30Min;73886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:334ba4b0-5dc1-4801-9ad8-49d01ca50c91", - "Expires" : "-1", - "x-ms-request-id" : "701a5f47-c0e0-44fa-a258-c6d13fb56864", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "e25119cb-2ee6-4c95-b3f0-ec745b8799b1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b855ac0-0462-4df3-ae65-eb527a651e4f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3674db51-dbe1-4edd-9454-c15fc0dcab08", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12885,Microsoft.Compute/GetVMImageFromLocation30Min;73885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:3674db51-dbe1-4edd-9454-c15fc0dcab08", - "Expires" : "-1", - "x-ms-request-id" : "06a1a9f1-4db1-4034-960f-f3a1ae14434b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "9b855ac0-0462-4df3-ae65-eb527a651e4f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "874dff50-f859-4a66-8641-6a06f9a2f18a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "709eb8c5-8654-4cfd-926d-98a8992fb8ec", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12884,Microsoft.Compute/GetVMImageFromLocation30Min;73884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:709eb8c5-8654-4cfd-926d-98a8992fb8ec", - "Expires" : "-1", - "x-ms-request-id" : "256264e8-9057-4325-89ab-db7c6f474a6e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "874dff50-f859-4a66-8641-6a06f9a2f18a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88a22b11-e143-4f59-8a85-813692b1f186", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "879bbb54-a099-4692-948a-da9ff2a113e7", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12882,Microsoft.Compute/GetVMImageFromLocation30Min;73882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:879bbb54-a099-4692-948a-da9ff2a113e7", - "Expires" : "-1", - "x-ms-request-id" : "70db259a-c463-41f0-bf12-b549dc5e0dbc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "88a22b11-e143-4f59-8a85-813692b1f186", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f23a90f-6709-44f2-8c2b-c245eb159f53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1c688ec-8045-4353-ad1f-db49eddca3bc", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12883,Microsoft.Compute/GetVMImageFromLocation30Min;73883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:b1c688ec-8045-4353-ad1f-db49eddca3bc", - "Expires" : "-1", - "x-ms-request-id" : "806faaf8-b09b-49b3-a03e-e270ef8cefea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "1f23a90f-6709-44f2-8c2b-c245eb159f53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ad4fc58-e528-4e86-8828-0e7cb0683004", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "10009", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c55a8420-4669-4b3a-b0a6-7a0b7e5fb16d", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15978,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:c55a8420-4669-4b3a-b0a6-7a0b7e5fb16d", - "Expires" : "-1", - "x-ms-request-id" : "0aff1ba8-b39f-4615-8a7d-a70e47297787", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200318\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200605\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202203250\"\r\n }\r\n]", - "x-ms-client-request-id" : "5ad4fc58-e528-4e86-8828-0e7cb0683004", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f4c6c6d-447f-4a05-b9e9-1b199668761c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2835647d-389a-45c5-9f33-c33d973db27e", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12880,Microsoft.Compute/GetVMImageFromLocation30Min;73880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:2835647d-389a-45c5-9f33-c33d973db27e", - "Expires" : "-1", - "x-ms-request-id" : "ec1ef0c1-c126-498c-9d64-15fed29b571f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "2f4c6c6d-447f-4a05-b9e9-1b199668761c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.20200729?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c80fefbb-1dc5-4c7d-a3dc-034f48a3442f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "dbd1ed41-411f-4b52-93f7-c37b854b8480", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12881,Microsoft.Compute/GetVMImageFromLocation30Min;73881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:dbd1ed41-411f-4b52-93f7-c37b854b8480", - "Expires" : "-1", - "x-ms-request-id" : "86516944-2f5a-4f59-9ac8-0e1df9b6561d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200729\"\r\n}", - "x-ms-client-request-id" : "c80fefbb-1dc5-4c7d-a3dc-034f48a3442f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f5ab820-df46-4863-8178-0e982ade9bef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "602e0fb2-9a74-4eb7-9822-0fbb4c31c837", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12874,Microsoft.Compute/GetVMImageFromLocation30Min;73874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:602e0fb2-9a74-4eb7-9822-0fbb4c31c837", - "Expires" : "-1", - "x-ms-request-id" : "36255b82-629c-40dd-ab45-ed21e4a6753e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "3f5ab820-df46-4863-8178-0e982ade9bef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9231c60a-54ad-4213-8306-17b14e595e31", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "786178a4-b16a-4267-92b4-9424c21c2741", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12875,Microsoft.Compute/GetVMImageFromLocation30Min;73875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:786178a4-b16a-4267-92b4-9424c21c2741", - "Expires" : "-1", - "x-ms-request-id" : "d968c161-cc41-480e-9b89-4b4eeb40a91c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "9231c60a-54ad-4213-8306-17b14e595e31", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.20200318?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d532d58-7814-4a4d-933e-4611e8b21d60", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ef8584e-16a7-4484-99c4-84258c6e0480", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12873,Microsoft.Compute/GetVMImageFromLocation30Min;73873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:7ef8584e-16a7-4484-99c4-84258c6e0480", - "Expires" : "-1", - "x-ms-request-id" : "2e92c8ae-b1cb-45a7-8e49-8b42d364ff58", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200318\"\r\n}", - "x-ms-client-request-id" : "9d532d58-7814-4a4d-933e-4611e8b21d60", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7203bb27-4a4d-4c58-b154-868ed0af61dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f80af7e4-8f2d-4cdb-97d5-4dfa37795169", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12878,Microsoft.Compute/GetVMImageFromLocation30Min;73878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:f80af7e4-8f2d-4cdb-97d5-4dfa37795169", - "Expires" : "-1", - "x-ms-request-id" : "0372e9c6-a487-4de7-9af4-7d0ee7c3ca7c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "7203bb27-4a4d-4c58-b154-868ed0af61dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7295a62a-5720-431a-90ae-3f5a7dcef5db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e4ae698-088b-48ac-bda6-44f3a7d672c2", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12869,Microsoft.Compute/GetVMImageFromLocation30Min;73869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:5e4ae698-088b-48ac-bda6-44f3a7d672c2", - "Expires" : "-1", - "x-ms-request-id" : "259c1f07-5c8d-4e7e-9537-8765567e8ee1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "7295a62a-5720-431a-90ae-3f5a7dcef5db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95ccdd1f-5070-4fc0-be76-8caf6bc30576", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee4f7a53-03b7-4f9b-88b0-d1ce1d825452", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12871,Microsoft.Compute/GetVMImageFromLocation30Min;73871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:ee4f7a53-03b7-4f9b-88b0-d1ce1d825452", - "Expires" : "-1", - "x-ms-request-id" : "f90dc3ff-b35f-4e6f-a805-66b2412d96e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "95ccdd1f-5070-4fc0-be76-8caf6bc30576", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.20200908?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b2e4518-98ca-4819-b8e7-13c949d23905", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c88d0c3e-22ff-41ed-83fc-675565833387", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12879,Microsoft.Compute/GetVMImageFromLocation30Min;73879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:c88d0c3e-22ff-41ed-83fc-675565833387", - "Expires" : "-1", - "x-ms-request-id" : "6256ae0d-c8f6-4b89-b128-3c568e630dc1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200908\"\r\n}", - "x-ms-client-request-id" : "7b2e4518-98ca-4819-b8e7-13c949d23905", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d8cbfa4-77ac-4836-af8e-03fc5c35420d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcab27fe-269a-426f-a18e-5adc45f19c5e", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12877,Microsoft.Compute/GetVMImageFromLocation30Min;73877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:fcab27fe-269a-426f-a18e-5adc45f19c5e", - "Expires" : "-1", - "x-ms-request-id" : "e5d43e35-d1fb-4c27-883b-faa3d5594fea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "7d8cbfa4-77ac-4836-af8e-03fc5c35420d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62028a91-a1e7-4b9c-a8dd-b0dd3e62233f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db67f8dd-079d-4ccd-857b-a8f251d08f92", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12868,Microsoft.Compute/GetVMImageFromLocation30Min;73868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:db67f8dd-079d-4ccd-857b-a8f251d08f92", - "Expires" : "-1", - "x-ms-request-id" : "f96d20e0-f003-40f3-a405-5a5af749e27e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20201014\"\r\n}", - "x-ms-client-request-id" : "62028a91-a1e7-4b9c-a8dd-b0dd3e62233f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e29e5462-38de-4df1-88f6-56f880158445", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "186d1f88-210f-42fb-a84b-f21229c6fb27", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12876,Microsoft.Compute/GetVMImageFromLocation30Min;73876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:186d1f88-210f-42fb-a84b-f21229c6fb27", - "Expires" : "-1", - "x-ms-request-id" : "4888f6d3-a906-4e95-82ed-6d70c4addd77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "e29e5462-38de-4df1-88f6-56f880158445", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96edb12e-1456-4d47-bc4b-51f3e6a06946", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb94cef3-c540-4150-878b-1d0043e6645e", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12872,Microsoft.Compute/GetVMImageFromLocation30Min;73872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:bb94cef3-c540-4150-878b-1d0043e6645e", - "Expires" : "-1", - "x-ms-request-id" : "ddcc1936-9169-4519-b45d-77b15b3003db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "96edb12e-1456-4d47-bc4b-51f3e6a06946", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22dce47d-a56b-4db0-b079-dd3a0696ad92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd92d4c0-b241-4940-aa41-cfe58fe84209", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12870,Microsoft.Compute/GetVMImageFromLocation30Min;73870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:cd92d4c0-b241-4940-aa41-cfe58fe84209", - "Expires" : "-1", - "x-ms-request-id" : "9168f63a-6850-497e-b34d-ff656360d4d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "22dce47d-a56b-4db0-b079-dd3a0696ad92", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.20200605?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cb75b19-f0e1-406f-a0e3-f58edaff3f36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b253951-07a9-467b-a1ad-eb016895216a", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12866,Microsoft.Compute/GetVMImageFromLocation30Min;73866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:4b253951-07a9-467b-a1ad-eb016895216a", - "Expires" : "-1", - "x-ms-request-id" : "bfa4881c-9991-4d99-89a4-ac48fa557d86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.20200605\"\r\n}", - "x-ms-client-request-id" : "8cb75b19-f0e1-406f-a0e3-f58edaff3f36", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f232df5-3d4d-4a1c-96f6-658e3198d1bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "448ba10b-c57d-481f-a0bc-700442433243", - "Date" : "Tue, 24 May 2022 13:00:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12867,Microsoft.Compute/GetVMImageFromLocation30Min;73867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:448ba10b-c57d-481f-a0bc-700442433243", - "Expires" : "-1", - "x-ms-request-id" : "6111f8da-bd9b-4edd-8bba-6992af625173", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "1f232df5-3d4d-4a1c-96f6-658e3198d1bb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6869c1f0-2bdf-4e13-bc67-a63209f5a966", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed7650cb-c469-4a97-964a-cdee8887329f", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12865,Microsoft.Compute/GetVMImageFromLocation30Min;73865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:ed7650cb-c469-4a97-964a-cdee8887329f", - "Expires" : "-1", - "x-ms-request-id" : "823b41f3-1aa2-4464-8eea-078593098811", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "6869c1f0-2bdf-4e13-bc67-a63209f5a966", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94c6be37-4b06-4961-bb53-5552bfbed0c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d00e10a-e610-4b81-82cc-3b43818f35b2", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12864,Microsoft.Compute/GetVMImageFromLocation30Min;73864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:3d00e10a-e610-4b81-82cc-3b43818f35b2", - "Expires" : "-1", - "x-ms-request-id" : "d879f65b-9841-4cf4-8fb5-a86afd88d0e1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "94c6be37-4b06-4961-bb53-5552bfbed0c4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14af6721-34e6-4bd9-8e6c-5a09179dcc7f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "573df727-aebb-4923-a03b-35f42165fdac", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12862,Microsoft.Compute/GetVMImageFromLocation30Min;73862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:573df727-aebb-4923-a03b-35f42165fdac", - "Expires" : "-1", - "x-ms-request-id" : "3f40d743-9933-41c1-ab42-73d5c446154c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "14af6721-34e6-4bd9-8e6c-5a09179dcc7f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d32de4cc-1ad1-4e78-9c61-30c84dc810e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da514d3b-4948-4c49-8fba-88bfe6988aa5", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12863,Microsoft.Compute/GetVMImageFromLocation30Min;73863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:da514d3b-4948-4c49-8fba-88bfe6988aa5", - "Expires" : "-1", - "x-ms-request-id" : "c6758626-d6e0-4c41-a414-5bd092558afd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "d32de4cc-1ad1-4e78-9c61-30c84dc810e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6b8262f-ce8c-41f8-8b31-a17150bcb07d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e7cf84d-4ef0-493b-8077-587e8baf3721", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12861,Microsoft.Compute/GetVMImageFromLocation30Min;73861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:4e7cf84d-4ef0-493b-8077-587e8baf3721", - "Expires" : "-1", - "x-ms-request-id" : "34b62ec7-c8c7-4e7c-b3c1-3bf7f87ffdc8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "d6b8262f-ce8c-41f8-8b31-a17150bcb07d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7122bca3-b808-45e3-906d-afcb7d5275f1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bac5e2d-3214-4f7c-9e98-dc6c7a74cde7", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12859,Microsoft.Compute/GetVMImageFromLocation30Min;73859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:6bac5e2d-3214-4f7c-9e98-dc6c7a74cde7", - "Expires" : "-1", - "x-ms-request-id" : "52087078-0730-494c-8ffc-f3b7addb0c38", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "7122bca3-b808-45e3-906d-afcb7d5275f1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "610493f3-d4de-4eac-974a-ddcea8fbe74c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0c0d438-2abd-4af8-8e95-71bf01ad33d0", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12860,Microsoft.Compute/GetVMImageFromLocation30Min;73860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130031Z:b0c0d438-2abd-4af8-8e95-71bf01ad33d0", - "Expires" : "-1", - "x-ms-request-id" : "d6a6a128-81a4-4191-b992-eda49210bf89", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "610493f3-d4de-4eac-974a-ddcea8fbe74c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6bc5879-f790-4d61-af53-b155495cc34e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "095559cf-4222-4cb1-8da5-9556b248764a", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12858,Microsoft.Compute/GetVMImageFromLocation30Min;73858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130032Z:095559cf-4222-4cb1-8da5-9556b248764a", - "Expires" : "-1", - "x-ms-request-id" : "37ae373e-0c82-4fb9-96c6-19666964657c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "a6bc5879-f790-4d61-af53-b155495cc34e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fca9a1a0-eb0c-400f-85ce-37c2ebba59fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63f59c3a-f7b9-429e-81a7-7f6921479998", - "Date" : "Tue, 24 May 2022 13:00:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12857,Microsoft.Compute/GetVMImageFromLocation30Min;73857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130032Z:63f59c3a-f7b9-429e-81a7-7f6921479998", - "Expires" : "-1", - "x-ms-request-id" : "708f6d8a-a31d-481c-a873-0f510ca356d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "fca9a1a0-eb0c-400f-85ce-37c2ebba59fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e4bb8c9-8d0e-4b69-ade8-3ddf26cd6075", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7060e74b-4cd0-436d-a762-2d0ed2e32312", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12856,Microsoft.Compute/GetVMImageFromLocation30Min;73856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130032Z:7060e74b-4cd0-436d-a762-2d0ed2e32312", - "Expires" : "-1", - "x-ms-request-id" : "8319eee3-2e4a-41e7-9ece-1c7cb2186cc5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "8e4bb8c9-8d0e-4b69-ade8-3ddf26cd6075", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7965980d-ea62-4997-b8d6-320f3b092410", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "52338ddd-d44a-48ce-8bef-5d04d619a8f8", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12855,Microsoft.Compute/GetVMImageFromLocation30Min;73855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:52338ddd-d44a-48ce-8bef-5d04d619a8f8", - "Expires" : "-1", - "x-ms-request-id" : "d71c81e3-278f-4678-9ebf-34e50452f69f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "7965980d-ea62-4997-b8d6-320f3b092410", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22ce30d3-79a6-4125-8de9-7ada87eb6fef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26e8444d-8e9d-48e1-a740-380ff0c0ba51", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12854,Microsoft.Compute/GetVMImageFromLocation30Min;73854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:26e8444d-8e9d-48e1-a740-380ff0c0ba51", - "Expires" : "-1", - "x-ms-request-id" : "81721943-b4e5-44a8-a5f6-33c42f398727", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "22ce30d3-79a6-4125-8de9-7ada87eb6fef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e632763f-28d5-4fdb-85b3-9e4ffc236ac7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9840d98-9137-4425-b41e-0b5c3a1fd6ff", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12853,Microsoft.Compute/GetVMImageFromLocation30Min;73853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:d9840d98-9137-4425-b41e-0b5c3a1fd6ff", - "Expires" : "-1", - "x-ms-request-id" : "f223781e-1f26-44b7-9148-07482353a554", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "e632763f-28d5-4fdb-85b3-9e4ffc236ac7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2d229ec-9d52-465f-afde-89576674b291", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7ee20e8-f301-4c18-9299-008534e9c71b", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12852,Microsoft.Compute/GetVMImageFromLocation30Min;73852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:b7ee20e8-f301-4c18-9299-008534e9c71b", - "Expires" : "-1", - "x-ms-request-id" : "023bfbf9-acce-4257-977d-38db626a37fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "e2d229ec-9d52-465f-afde-89576674b291", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8858f2af-79ff-4f3d-9a2b-1e09898dfa8e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f88b40e2-0f55-4383-b9b6-3b2e77b91e81", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12851,Microsoft.Compute/GetVMImageFromLocation30Min;73851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:f88b40e2-0f55-4383-b9b6-3b2e77b91e81", - "Expires" : "-1", - "x-ms-request-id" : "11c1d728-d729-4ba5-ac34-e5cdbdc69dec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "8858f2af-79ff-4f3d-9a2b-1e09898dfa8e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab50add9-7d28-4587-a223-fbc0f9bc534e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c8aa714c-1a7f-401f-8167-00e720c65c8e", - "Date" : "Tue, 24 May 2022 13:00:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12850,Microsoft.Compute/GetVMImageFromLocation30Min;73850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:c8aa714c-1a7f-401f-8167-00e720c65c8e", - "Expires" : "-1", - "x-ms-request-id" : "2c7d8136-6ca5-48cf-be75-e666c6c68269", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "ab50add9-7d28-4587-a223-fbc0f9bc534e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba14c738-8208-4bee-a3d7-1fa4c717a378", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7317", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c80bd068-a2a6-4116-87b4-860a8791e64d", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15977,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130033Z:c80bd068-a2a6-4116-87b4-860a8791e64d", - "Expires" : "-1", - "x-ms-request-id" : "c26bb221-094d-4b66-a5cf-267dd0eae9e0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202203250\"\r\n }\r\n]", - "x-ms-client-request-id" : "ba14c738-8208-4bee-a3d7-1fa4c717a378", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28dd1929-5aab-4277-9444-cbd71c358961", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7881d795-a648-4bd9-9efa-e6cc797c70f5", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12848,Microsoft.Compute/GetVMImageFromLocation30Min;73848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:7881d795-a648-4bd9-9efa-e6cc797c70f5", - "Expires" : "-1", - "x-ms-request-id" : "3df09c99-c56c-4711-b277-30d6606c7d17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "28dd1929-5aab-4277-9444-cbd71c358961", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cbf3ecc-5135-45dd-b0ba-b555bd44329d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "469957a8-9485-4d48-a7cb-db314a858f30", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12847,Microsoft.Compute/GetVMImageFromLocation30Min;73847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:469957a8-9485-4d48-a7cb-db314a858f30", - "Expires" : "-1", - "x-ms-request-id" : "26c98b88-496b-43bf-a620-0c2599fc9c9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "9cbf3ecc-5135-45dd-b0ba-b555bd44329d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a9ede3a-fc5b-4453-aef1-7abc0eba28f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3080602-c0e7-4e14-9dc0-483a5265859e", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12844,Microsoft.Compute/GetVMImageFromLocation30Min;73844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:d3080602-c0e7-4e14-9dc0-483a5265859e", - "Expires" : "-1", - "x-ms-request-id" : "e69cc5b5-51d5-4b48-a12d-777a23ef5c7d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "0a9ede3a-fc5b-4453-aef1-7abc0eba28f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c30f4078-d838-4257-a8ea-3e814a6a3ed9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "308e5464-72c4-48d7-8389-231ceb044997", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12845,Microsoft.Compute/GetVMImageFromLocation30Min;73845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:308e5464-72c4-48d7-8389-231ceb044997", - "Expires" : "-1", - "x-ms-request-id" : "a893f20b-2494-488a-95c4-72f70e34ee33", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "c30f4078-d838-4257-a8ea-3e814a6a3ed9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04610360-7e79-45df-9d10-22f13eba0506", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63b9fd33-26ba-48ca-8fea-ee46e195ed83", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12846,Microsoft.Compute/GetVMImageFromLocation30Min;73846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:63b9fd33-26ba-48ca-8fea-ee46e195ed83", - "Expires" : "-1", - "x-ms-request-id" : "dd42acf2-ff5c-4f62-a3da-572ad235892f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "04610360-7e79-45df-9d10-22f13eba0506", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6aff578-14e7-4bb6-9362-beed6ac3b3ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8cb23f32-ca63-4c73-9f4d-5e9fd1763c27", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12843,Microsoft.Compute/GetVMImageFromLocation30Min;73843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:8cb23f32-ca63-4c73-9f4d-5e9fd1763c27", - "Expires" : "-1", - "x-ms-request-id" : "04e288b6-36b0-461e-98d7-d835ae4f7901", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "f6aff578-14e7-4bb6-9362-beed6ac3b3ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d58a482-a7e8-4eea-8ce2-ed3f0a58e4e3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2255374-3b0c-48c1-9dca-9e5f4cc1ae0b", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12849,Microsoft.Compute/GetVMImageFromLocation30Min;73849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:d2255374-3b0c-48c1-9dca-9e5f4cc1ae0b", - "Expires" : "-1", - "x-ms-request-id" : "c139014f-6782-4ed0-a710-e43997c739b8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "9d58a482-a7e8-4eea-8ce2-ed3f0a58e4e3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9dc52c2-c173-4303-b728-81b03f9b1725", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1aa96a9-2fae-4b5e-8c62-886cf89a73c7", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12840,Microsoft.Compute/GetVMImageFromLocation30Min;73840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:e1aa96a9-2fae-4b5e-8c62-886cf89a73c7", - "Expires" : "-1", - "x-ms-request-id" : "9bf90c40-2ac1-4621-80ec-144d07eccee6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "d9dc52c2-c173-4303-b728-81b03f9b1725", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e38ecd7-8ff6-4db4-b6d5-46d7a7203538", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0ee45b6-5e62-45f3-b71f-2a01acab2dec", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12842,Microsoft.Compute/GetVMImageFromLocation30Min;73842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:f0ee45b6-5e62-45f3-b71f-2a01acab2dec", - "Expires" : "-1", - "x-ms-request-id" : "ac618739-e0f6-4df3-97d0-9efe47bfbb3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "4e38ecd7-8ff6-4db4-b6d5-46d7a7203538", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "862d4402-1161-4922-9004-3355a26df7e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cecb23fb-ac72-4e23-b84e-433ca4c9b6b8", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12838,Microsoft.Compute/GetVMImageFromLocation30Min;73838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:cecb23fb-ac72-4e23-b84e-433ca4c9b6b8", - "Expires" : "-1", - "x-ms-request-id" : "f19bed20-33c0-4136-96ad-d1622752c2cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "862d4402-1161-4922-9004-3355a26df7e5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0afaef7-8440-49c3-82ea-63f825a6b721", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70902b72-71e1-4c86-b086-854362739d99", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12835,Microsoft.Compute/GetVMImageFromLocation30Min;73835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:70902b72-71e1-4c86-b086-854362739d99", - "Expires" : "-1", - "x-ms-request-id" : "bae26c31-b93c-4294-a526-6d99ee17955e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "c0afaef7-8440-49c3-82ea-63f825a6b721", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d8148f1-fac9-4036-8db2-afa8de93cf71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a9eeb8d-3c08-4a77-8f33-3112447b265f", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12837,Microsoft.Compute/GetVMImageFromLocation30Min;73837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:6a9eeb8d-3c08-4a77-8f33-3112447b265f", - "Expires" : "-1", - "x-ms-request-id" : "f54ae0c8-e772-44cd-8973-c7c50043c6ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "0d8148f1-fac9-4036-8db2-afa8de93cf71", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "980d874e-62be-47fa-8d84-287cacae79f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6e577ce-356c-4aa8-9cce-ccd9cb5d1c11", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12836,Microsoft.Compute/GetVMImageFromLocation30Min;73836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:b6e577ce-356c-4aa8-9cce-ccd9cb5d1c11", - "Expires" : "-1", - "x-ms-request-id" : "49996b87-777b-4050-a5f9-0a939dac63c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "980d874e-62be-47fa-8d84-287cacae79f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7d6ce33-edb2-43ff-9ada-691e60e9dd9b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5cb5398-894f-4183-9df5-5601f7f631cc", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12834,Microsoft.Compute/GetVMImageFromLocation30Min;73834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:f5cb5398-894f-4183-9df5-5601f7f631cc", - "Expires" : "-1", - "x-ms-request-id" : "c6af8542-6f44-415c-aa99-e56b0f570557", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "e7d6ce33-edb2-43ff-9ada-691e60e9dd9b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c812d547-4513-4cab-8368-b82d1d835e22", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8a9e4de-35e4-48eb-8d6e-bb84d9e2f38d", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12833,Microsoft.Compute/GetVMImageFromLocation30Min;73833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:e8a9e4de-35e4-48eb-8d6e-bb84d9e2f38d", - "Expires" : "-1", - "x-ms-request-id" : "d63697c1-988b-48bf-b3fa-2f6158f5ac75", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "c812d547-4513-4cab-8368-b82d1d835e22", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "78ab65a1-983c-4508-9aa6-5fa2bfb1665d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23260d0a-427a-42f0-8221-092555c21b53", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12832,Microsoft.Compute/GetVMImageFromLocation30Min;73832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:23260d0a-427a-42f0-8221-092555c21b53", - "Expires" : "-1", - "x-ms-request-id" : "b71faa9a-18ee-49dd-83a0-640844e013f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "78ab65a1-983c-4508-9aa6-5fa2bfb1665d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7ca08cd-274a-46dd-9cbb-edca8845c666", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd4cff7b-6eaf-48da-8d00-f08629fc31b0", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12839,Microsoft.Compute/GetVMImageFromLocation30Min;73839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:bd4cff7b-6eaf-48da-8d00-f08629fc31b0", - "Expires" : "-1", - "x-ms-request-id" : "59a05d57-ac8b-47d9-b4d4-dd9f5b5ab8a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "f7ca08cd-274a-46dd-9cbb-edca8845c666", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "89856aeb-0d38-4f79-8a2f-6c62d5f0bbe2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2369d364-c26a-4c28-b3a1-66a573fc81da", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12841,Microsoft.Compute/GetVMImageFromLocation30Min;73841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:2369d364-c26a-4c28-b3a1-66a573fc81da", - "Expires" : "-1", - "x-ms-request-id" : "9b977f3b-fea9-4fc4-9519-5948646fb88c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "89856aeb-0d38-4f79-8a2f-6c62d5f0bbe2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7a3ec98-8343-4c6f-a789-ef8d538e18d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7cef2555-ad55-4c25-8a9f-75b55c76bbb0", - "Date" : "Tue, 24 May 2022 13:00:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12831,Microsoft.Compute/GetVMImageFromLocation30Min;73831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:7cef2555-ad55-4c25-8a9f-75b55c76bbb0", - "Expires" : "-1", - "x-ms-request-id" : "b9267545-8d92-4e42-8de7-d2b3386a08b2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "f7a3ec98-8343-4c6f-a789-ef8d538e18d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45716334-6de4-4fb0-aab7-36a919e31f98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "058fe82b-40de-4941-ab10-b9601c5877dc", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12830,Microsoft.Compute/GetVMImageFromLocation30Min;73830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:058fe82b-40de-4941-ab10-b9601c5877dc", - "Expires" : "-1", - "x-ms-request-id" : "b68b82a0-b9d9-429b-8e3d-69897555eb6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "45716334-6de4-4fb0-aab7-36a919e31f98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c34dcbd-c9ab-49bd-a780-144839b12a44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb376e5c-ad7a-4528-8556-c1c60bf4bdb0", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12829,Microsoft.Compute/GetVMImageFromLocation30Min;73829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:bb376e5c-ad7a-4528-8556-c1c60bf4bdb0", - "Expires" : "-1", - "x-ms-request-id" : "775ea821-5cf1-45e5-8421-6b2f0b6fad8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "0c34dcbd-c9ab-49bd-a780-144839b12a44", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fffe27d-b3b5-4e4c-9df7-2dfea1fda7aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94761f83-8691-46a8-b6b2-de465de08ed0", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12828,Microsoft.Compute/GetVMImageFromLocation30Min;73828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:94761f83-8691-46a8-b6b2-de465de08ed0", - "Expires" : "-1", - "x-ms-request-id" : "72651c07-2589-4c63-b792-7c47505931db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "0fffe27d-b3b5-4e4c-9df7-2dfea1fda7aa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d44dfe99-aa2a-4deb-9e8e-25a3c9ddd3a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28065720-aa87-4f99-b823-ff0b8dd75864", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12827,Microsoft.Compute/GetVMImageFromLocation30Min;73827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130034Z:28065720-aa87-4f99-b823-ff0b8dd75864", - "Expires" : "-1", - "x-ms-request-id" : "fe983471-f4a9-4dae-b9e4-d03e3674be90", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "d44dfe99-aa2a-4deb-9e8e-25a3c9ddd3a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f29f5bd-9bab-4589-9259-4bdb24fe4c2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "10009", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05250a4b-7fb6-4e5e-85ba-3f3df0e0e61c", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15976,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:05250a4b-7fb6-4e5e-85ba-3f3df0e0e61c", - "Expires" : "-1", - "x-ms-request-id" : "2c9da8d5-c53e-4fd0-aff0-972195126b14", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200423\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200525\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202203220\"\r\n }\r\n]", - "x-ms-client-request-id" : "8f29f5bd-9bab-4589-9259-4bdb24fe4c2a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.20200423?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c95ae5c-93ce-49e0-b351-b53fb0847571", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70bafff1-6b85-4e43-8135-46e187038704", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12826,Microsoft.Compute/GetVMImageFromLocation30Min;73826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:70bafff1-6b85-4e43-8135-46e187038704", - "Expires" : "-1", - "x-ms-request-id" : "1bd58739-0d63-4bc3-babb-e9572b11f60f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200423\"\r\n}", - "x-ms-client-request-id" : "6c95ae5c-93ce-49e0-b351-b53fb0847571", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bad035a-c6c6-4b0f-b7bf-6575fce99f24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08fe3958-32b5-4779-b333-82d3ee5c87ff", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12822,Microsoft.Compute/GetVMImageFromLocation30Min;73822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:08fe3958-32b5-4779-b333-82d3ee5c87ff", - "Expires" : "-1", - "x-ms-request-id" : "16bc10a5-2cd2-4dc3-9021-cba87348be8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "6bad035a-c6c6-4b0f-b7bf-6575fce99f24", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.20200525?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0414abb2-dbc0-4b7f-a087-26dfa6777b9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9a9cdee-f765-4aca-b5f2-9234ac6d678a", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12823,Microsoft.Compute/GetVMImageFromLocation30Min;73823", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:c9a9cdee-f765-4aca-b5f2-9234ac6d678a", - "Expires" : "-1", - "x-ms-request-id" : "190eca0f-8c1b-4ce3-ab52-e863f2d6084f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200525\"\r\n}", - "x-ms-client-request-id" : "0414abb2-dbc0-4b7f-a087-26dfa6777b9e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a83ecf5-9089-445e-a5e9-0cd588a55603", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6eef993f-b0af-4926-a6db-da78600ecba1", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12825,Microsoft.Compute/GetVMImageFromLocation30Min;73825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:6eef993f-b0af-4926-a6db-da78600ecba1", - "Expires" : "-1", - "x-ms-request-id" : "278a1a44-0c9f-41d8-9b7a-9ed60e8eec31", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "1a83ecf5-9089-445e-a5e9-0cd588a55603", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e31ae134-2346-4d9a-8468-0a05bd87fd2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6fd00b31-fecd-4bac-85ec-1718e92b0486", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12820,Microsoft.Compute/GetVMImageFromLocation30Min;73820", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:6fd00b31-fecd-4bac-85ec-1718e92b0486", - "Expires" : "-1", - "x-ms-request-id" : "94399730-d5e8-4271-a68a-f7ba462acf49", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "e31ae134-2346-4d9a-8468-0a05bd87fd2b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "440b302c-2879-4bbd-ba71-71607b9c15f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02d80ff6-f4a2-4e2a-90d6-abe9bd064dcd", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12819,Microsoft.Compute/GetVMImageFromLocation30Min;73819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:02d80ff6-f4a2-4e2a-90d6-abe9bd064dcd", - "Expires" : "-1", - "x-ms-request-id" : "5215963d-1c88-476b-9c68-145a2a3fe2d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "440b302c-2879-4bbd-ba71-71607b9c15f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a3407eb-93c1-474b-aefd-4cb9f2682153", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e051d8d-a1fc-427e-9f93-e42a0edb21c1", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12814,Microsoft.Compute/GetVMImageFromLocation30Min;73814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:4e051d8d-a1fc-427e-9f93-e42a0edb21c1", - "Expires" : "-1", - "x-ms-request-id" : "f723cf44-c52f-4e7b-8b43-79c88e7f835e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "9a3407eb-93c1-474b-aefd-4cb9f2682153", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "467ea584-a298-436e-b079-ebd33afda5d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da262c5a-bb80-417a-9b26-6190bb75500b", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12815,Microsoft.Compute/GetVMImageFromLocation30Min;73815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:da262c5a-bb80-417a-9b26-6190bb75500b", - "Expires" : "-1", - "x-ms-request-id" : "4fdedbf4-b00e-4321-9fc2-4a99bdacbff6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "467ea584-a298-436e-b079-ebd33afda5d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.20200729?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0274031-66d4-420c-8797-583597c1ab87", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b35743f9-f7a7-49ac-879f-1f97aac5903d", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12818,Microsoft.Compute/GetVMImageFromLocation30Min;73818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:b35743f9-f7a7-49ac-879f-1f97aac5903d", - "Expires" : "-1", - "x-ms-request-id" : "7f8be34f-b49f-426f-b86f-06fcc36dd5f6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200729\"\r\n}", - "x-ms-client-request-id" : "d0274031-66d4-420c-8797-583597c1ab87", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08cebf1a-d4cd-4e65-b5be-bbd5322ef7ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "949d39fa-9bbb-40fb-840b-50e52905aef1", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12824,Microsoft.Compute/GetVMImageFromLocation30Min;73824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:949d39fa-9bbb-40fb-840b-50e52905aef1", - "Expires" : "-1", - "x-ms-request-id" : "2a1e8774-d333-432a-a61b-8a47efc4b0e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "08cebf1a-d4cd-4e65-b5be-bbd5322ef7ba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.20200908?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c71e9028-381b-4182-851a-c098f54ef1cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82b0daff-ac64-4294-9045-caa176608de4", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12817,Microsoft.Compute/GetVMImageFromLocation30Min;73817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:82b0daff-ac64-4294-9045-caa176608de4", - "Expires" : "-1", - "x-ms-request-id" : "0a1461be-1bef-4af1-bf40-c16fe9499445", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20200908\"\r\n}", - "x-ms-client-request-id" : "c71e9028-381b-4182-851a-c098f54ef1cf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfd81a3e-d085-4c64-9b1b-de08db0ac29c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ee97f04-afbf-4a54-b211-6388592c4df4", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12816,Microsoft.Compute/GetVMImageFromLocation30Min;73816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:0ee97f04-afbf-4a54-b211-6388592c4df4", - "Expires" : "-1", - "x-ms-request-id" : "85130c70-6571-4e4a-8ed1-868b208e8811", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.20201014\"\r\n}", - "x-ms-client-request-id" : "dfd81a3e-d085-4c64-9b1b-de08db0ac29c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42a27890-4b69-4d73-b1c0-4c7caff34723", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7d324c2-9d7c-4e91-afaa-538eeb4dc109", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12812,Microsoft.Compute/GetVMImageFromLocation30Min;73812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:d7d324c2-9d7c-4e91-afaa-538eeb4dc109", - "Expires" : "-1", - "x-ms-request-id" : "25be8f30-c01b-4e1a-bc9a-66d6a1637ebb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "42a27890-4b69-4d73-b1c0-4c7caff34723", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "caa1e122-6ccb-4893-9aa9-418be23d1262", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0285339d-876f-4918-b76f-04bc7fa3e9f7", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12805,Microsoft.Compute/GetVMImageFromLocation30Min;73805", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:0285339d-876f-4918-b76f-04bc7fa3e9f7", - "Expires" : "-1", - "x-ms-request-id" : "5021d7e5-f6e9-4cb8-90b7-e7ade017b28b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "caa1e122-6ccb-4893-9aa9-418be23d1262", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80ace5c1-4e5e-4e70-bc6a-0c1765d5b5e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7314a1db-4a83-419f-8b30-2c09f7f20176", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12809,Microsoft.Compute/GetVMImageFromLocation30Min;73809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:7314a1db-4a83-419f-8b30-2c09f7f20176", - "Expires" : "-1", - "x-ms-request-id" : "002e12f4-2aee-4e6f-bd78-3d8757c74cc3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "80ace5c1-4e5e-4e70-bc6a-0c1765d5b5e7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb743246-38ef-498e-af05-663937139a0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "effd7a14-9a28-451a-85a6-5e0939c53bd9", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12813,Microsoft.Compute/GetVMImageFromLocation30Min;73813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:effd7a14-9a28-451a-85a6-5e0939c53bd9", - "Expires" : "-1", - "x-ms-request-id" : "46f3f432-ccf1-468c-bce1-44ec3b93a8e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "cb743246-38ef-498e-af05-663937139a0b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c7c9b54-ad98-4aae-a2da-b53630ae8e1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5cb28e2-68dd-4394-9ee4-0c47bf05249f", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12806,Microsoft.Compute/GetVMImageFromLocation30Min;73806", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:c5cb28e2-68dd-4394-9ee4-0c47bf05249f", - "Expires" : "-1", - "x-ms-request-id" : "518f8c7e-1cba-4c4b-83e7-810929a77f69", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "4c7c9b54-ad98-4aae-a2da-b53630ae8e1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d55ab8d5-0904-4e62-98f8-8c086de14126", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3cd328ac-2afb-4dcc-9149-a461666e63fd", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12821,Microsoft.Compute/GetVMImageFromLocation30Min;73821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:3cd328ac-2afb-4dcc-9149-a461666e63fd", - "Expires" : "-1", - "x-ms-request-id" : "5865885e-7b42-4697-9c70-6a91613bebf4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "d55ab8d5-0904-4e62-98f8-8c086de14126", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b540ff7-7776-4e03-ae20-15ef3c1477c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "913963b0-2c26-4b49-a267-17fceb00e04f", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12804,Microsoft.Compute/GetVMImageFromLocation30Min;73804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:913963b0-2c26-4b49-a267-17fceb00e04f", - "Expires" : "-1", - "x-ms-request-id" : "3fc4d739-f615-498a-aede-f74c754bad66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "2b540ff7-7776-4e03-ae20-15ef3c1477c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b756b204-00bb-463e-9f24-fe9cd1eb3859", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de7c1904-7e68-4e20-8232-d2ee674e3f4e", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12802,Microsoft.Compute/GetVMImageFromLocation30Min;73802", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:de7c1904-7e68-4e20-8232-d2ee674e3f4e", - "Expires" : "-1", - "x-ms-request-id" : "ada61407-757d-4b3e-be41-e10714441314", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "b756b204-00bb-463e-9f24-fe9cd1eb3859", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "602f2948-37b1-4d49-af18-1270183e7efe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02cd2fb7-a184-4815-85e1-a375e3c45ce5", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12808,Microsoft.Compute/GetVMImageFromLocation30Min;73808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:02cd2fb7-a184-4815-85e1-a375e3c45ce5", - "Expires" : "-1", - "x-ms-request-id" : "d8156d74-748c-406b-b04f-dca7a5666d53", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "602f2948-37b1-4d49-af18-1270183e7efe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbe04aac-7d54-4295-8ca9-725163a7f9ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7bfa1bc5-b313-4974-aad9-2992d99f0f63", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12807,Microsoft.Compute/GetVMImageFromLocation30Min;73807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:7bfa1bc5-b313-4974-aad9-2992d99f0f63", - "Expires" : "-1", - "x-ms-request-id" : "0841e1cc-a820-4f65-9bea-ee162f9d198f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "cbe04aac-7d54-4295-8ca9-725163a7f9ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f38b082c-801f-4e76-9778-7288e9ce947b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c7331ea-ebb0-4671-b70b-86295cebfe5e", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12803,Microsoft.Compute/GetVMImageFromLocation30Min;73803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:0c7331ea-ebb0-4671-b70b-86295cebfe5e", - "Expires" : "-1", - "x-ms-request-id" : "01fe640e-f44a-4e0b-80b1-d5b91b1ce3cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "f38b082c-801f-4e76-9778-7288e9ce947b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e097ecc1-c38b-4c8e-9045-19d692c6afbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c41dc4e-a36a-4990-8fd5-6803ebad5bcf", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12810,Microsoft.Compute/GetVMImageFromLocation30Min;73810", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:3c41dc4e-a36a-4990-8fd5-6803ebad5bcf", - "Expires" : "-1", - "x-ms-request-id" : "42a4b4be-fdf9-4989-9bad-74095d9eb895", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "e097ecc1-c38b-4c8e-9045-19d692c6afbb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2555a86b-ccae-4af7-a2a7-d4dfb7cd917b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb873625-7fdd-49c6-b920-41551759f447", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12811,Microsoft.Compute/GetVMImageFromLocation30Min;73811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:cb873625-7fdd-49c6-b920-41551759f447", - "Expires" : "-1", - "x-ms-request-id" : "8b10a09f-c002-4160-b1dc-fbd8711e2e2f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "2555a86b-ccae-4af7-a2a7-d4dfb7cd917b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6361db70-39ed-48a9-950c-777d22ff4f92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c107fb54-0400-4ca6-9e1a-c0e27e612851", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12800,Microsoft.Compute/GetVMImageFromLocation30Min;73800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:c107fb54-0400-4ca6-9e1a-c0e27e612851", - "Expires" : "-1", - "x-ms-request-id" : "69588830-c5b7-4667-b1be-6a67bd228fd4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "6361db70-39ed-48a9-950c-777d22ff4f92", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2ade724-acf6-45eb-a06f-4e3044162f0f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "021643bc-3f35-4e0f-865d-c88f1611561b", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12799,Microsoft.Compute/GetVMImageFromLocation30Min;73799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:021643bc-3f35-4e0f-865d-c88f1611561b", - "Expires" : "-1", - "x-ms-request-id" : "90b700ea-993f-4e8e-b70e-1eae5a3a6425", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "b2ade724-acf6-45eb-a06f-4e3044162f0f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2840ae3c-0776-4c31-8fc4-5f1019c7afc1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd3d2978-0f23-429d-a52d-67171170141c", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12798,Microsoft.Compute/GetVMImageFromLocation30Min;73798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:bd3d2978-0f23-429d-a52d-67171170141c", - "Expires" : "-1", - "x-ms-request-id" : "e9675e5d-0fd4-4cd6-bb45-3d7fcb1d8dab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "2840ae3c-0776-4c31-8fc4-5f1019c7afc1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a38d3a1-b61d-4fb2-b47e-d53c86991cc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "569eadb3-60d3-4369-ae6e-62c24a9b8020", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12801,Microsoft.Compute/GetVMImageFromLocation30Min;73801", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:569eadb3-60d3-4369-ae6e-62c24a9b8020", - "Expires" : "-1", - "x-ms-request-id" : "402d40ae-1e67-4a9b-a6c4-91194d50edc7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "4a38d3a1-b61d-4fb2-b47e-d53c86991cc0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a631f9f-ac11-419b-a090-2bc5b4e23d01", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f557efb8-f6fe-43b0-b7c2-03cea52791cb", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12797,Microsoft.Compute/GetVMImageFromLocation30Min;73797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:f557efb8-f6fe-43b0-b7c2-03cea52791cb", - "Expires" : "-1", - "x-ms-request-id" : "092cbb57-dae3-4944-bbad-7ed6ea588d2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "4a631f9f-ac11-419b-a090-2bc5b4e23d01", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b69a4245-dc06-4999-bfc6-b7303ca79371", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "219c066a-9728-4171-a20a-d29dd6460435", - "Date" : "Tue, 24 May 2022 13:00:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12796,Microsoft.Compute/GetVMImageFromLocation30Min;73796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:219c066a-9728-4171-a20a-d29dd6460435", - "Expires" : "-1", - "x-ms-request-id" : "932d7f48-37d2-40dd-aaed-5820b604684f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202103160\"\r\n}", - "x-ms-client-request-id" : "b69a4245-dc06-4999-bfc6-b7303ca79371", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09b4251c-7588-44e6-b390-7d8218db6bfb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6cfd6cb-1877-4031-92e0-00e9374fb7ea", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12795,Microsoft.Compute/GetVMImageFromLocation30Min;73795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130035Z:b6cfd6cb-1877-4031-92e0-00e9374fb7ea", - "Expires" : "-1", - "x-ms-request-id" : "dbe7297a-ce03-48c9-96be-40c63892f771", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "09b4251c-7588-44e6-b390-7d8218db6bfb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f09b547-fc04-4636-8ae6-4c6d78f751df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7317", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32ed21e2-49e5-4d41-bba5-15fe3c092e6d", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15975,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:32ed21e2-49e5-4d41-bba5-15fe3c092e6d", - "Expires" : "-1", - "x-ms-request-id" : "53234aca-745d-4528-bd06-78a560b6ca4c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202203220\"\r\n }\r\n]", - "x-ms-client-request-id" : "3f09b547-fc04-4636-8ae6-4c6d78f751df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de70a397-0599-45a6-ba52-3bf257b781f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d7dd3ed-2914-4c37-8573-5fd5b0524fe0", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12793,Microsoft.Compute/GetVMImageFromLocation30Min;73793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:0d7dd3ed-2914-4c37-8573-5fd5b0524fe0", - "Expires" : "-1", - "x-ms-request-id" : "2fad7eff-2a83-49b3-b3ad-847740019436", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "de70a397-0599-45a6-ba52-3bf257b781f3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8b42755-0344-4abc-8e8d-4244c7e7542d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a0d312f-a3a8-4ab6-8019-b0d027c72367", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12794,Microsoft.Compute/GetVMImageFromLocation30Min;73794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:6a0d312f-a3a8-4ab6-8019-b0d027c72367", - "Expires" : "-1", - "x-ms-request-id" : "862dd38c-f868-4e9c-8c54-21763a24ee67", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "f8b42755-0344-4abc-8e8d-4244c7e7542d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92ddda46-fb68-457e-8ab1-451ea533daa6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e792d3b2-f74b-49a1-b91e-2f1f56933358", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12791,Microsoft.Compute/GetVMImageFromLocation30Min;73791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:e792d3b2-f74b-49a1-b91e-2f1f56933358", - "Expires" : "-1", - "x-ms-request-id" : "08899bd1-53e3-48d0-91d4-96da16d0bd40", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "92ddda46-fb68-457e-8ab1-451ea533daa6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "794ab614-c8eb-4ca0-b1ed-7b146851f87c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15bc5e54-6d42-4652-ac7e-946c8d3058ea", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12790,Microsoft.Compute/GetVMImageFromLocation30Min;73790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:15bc5e54-6d42-4652-ac7e-946c8d3058ea", - "Expires" : "-1", - "x-ms-request-id" : "d5bc6d95-1280-4c93-9f5b-7c3b0abddf39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "794ab614-c8eb-4ca0-b1ed-7b146851f87c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1172d1b6-04a4-45c7-851a-4b45edcf579a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4fe3719b-b278-41a5-83ed-824216529694", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12792,Microsoft.Compute/GetVMImageFromLocation30Min;73792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:4fe3719b-b278-41a5-83ed-824216529694", - "Expires" : "-1", - "x-ms-request-id" : "95111fdd-faa9-412f-a0b2-6318252f022b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "1172d1b6-04a4-45c7-851a-4b45edcf579a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "999c3078-72c1-4196-b788-d9af8ac55bbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc677657-2a14-4bcd-9cb9-edb6808b0a90", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12788,Microsoft.Compute/GetVMImageFromLocation30Min;73788", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:bc677657-2a14-4bcd-9cb9-edb6808b0a90", - "Expires" : "-1", - "x-ms-request-id" : "a0757eec-f02d-4d33-8107-3a175569228b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "999c3078-72c1-4196-b788-d9af8ac55bbb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5fb73799-c691-4df2-bb73-66fa03b596fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e53a988-d5b2-4921-8864-7b7909a785ae", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12787,Microsoft.Compute/GetVMImageFromLocation30Min;73787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:3e53a988-d5b2-4921-8864-7b7909a785ae", - "Expires" : "-1", - "x-ms-request-id" : "a49a2079-8646-4e00-b823-85480f96f67c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "5fb73799-c691-4df2-bb73-66fa03b596fb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b730ab6-23a8-4e8e-9ff5-0484e012aa9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfea9fd9-5887-49c3-9295-91a04154a0e0", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12786,Microsoft.Compute/GetVMImageFromLocation30Min;73786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:cfea9fd9-5887-49c3-9295-91a04154a0e0", - "Expires" : "-1", - "x-ms-request-id" : "8625ae1e-ac50-49fc-95d5-afa38c908d07", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "9b730ab6-23a8-4e8e-9ff5-0484e012aa9e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6efde7dd-8620-4113-aa81-0a89d0babb6d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bde72a27-fd53-41dd-bbcf-5a0fb7e46617", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12784,Microsoft.Compute/GetVMImageFromLocation30Min;73784", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:bde72a27-fd53-41dd-bbcf-5a0fb7e46617", - "Expires" : "-1", - "x-ms-request-id" : "b06c5b73-af23-4a70-bcca-0a73ac32c26c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "6efde7dd-8620-4113-aa81-0a89d0babb6d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59e34f59-e254-46b2-8990-5a3087796e2c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9df69e5a-6dd9-474c-8f7c-528a3619178b", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12785,Microsoft.Compute/GetVMImageFromLocation30Min;73785", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:9df69e5a-6dd9-474c-8f7c-528a3619178b", - "Expires" : "-1", - "x-ms-request-id" : "e8db370e-d27e-4660-911e-dbfdf058b241", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "59e34f59-e254-46b2-8990-5a3087796e2c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b388ae7f-31b3-4936-a15e-e8ce38b030a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67f38c7e-4f6f-43cf-96bb-89f65cd3d2cb", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12789,Microsoft.Compute/GetVMImageFromLocation30Min;73789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:67f38c7e-4f6f-43cf-96bb-89f65cd3d2cb", - "Expires" : "-1", - "x-ms-request-id" : "0f015695-b3d3-4344-99ba-5d590a826323", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "b388ae7f-31b3-4936-a15e-e8ce38b030a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "573955dc-f5c0-4862-b63a-e5400bd19103", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b4467a7-0bc1-45aa-b444-d02924751720", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12781,Microsoft.Compute/GetVMImageFromLocation30Min;73781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:3b4467a7-0bc1-45aa-b444-d02924751720", - "Expires" : "-1", - "x-ms-request-id" : "e4c940ad-e038-4db1-a59c-1fead67d0e9e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "573955dc-f5c0-4862-b63a-e5400bd19103", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f252828a-dbdc-41f3-b3e3-b463d1a21ed7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3222159d-8292-436d-ba6d-04aa26a71671", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12782,Microsoft.Compute/GetVMImageFromLocation30Min;73782", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:3222159d-8292-436d-ba6d-04aa26a71671", - "Expires" : "-1", - "x-ms-request-id" : "246b748a-db1c-4921-8724-26edf9ebd342", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "f252828a-dbdc-41f3-b3e3-b463d1a21ed7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "417b91b4-b0cb-415d-9d9e-23c5da6caf52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5dbfb713-f164-491a-b153-5637a6e3e6e6", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12778,Microsoft.Compute/GetVMImageFromLocation30Min;73778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:5dbfb713-f164-491a-b153-5637a6e3e6e6", - "Expires" : "-1", - "x-ms-request-id" : "76225b1b-1f20-4783-b8c8-300253892a96", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "417b91b4-b0cb-415d-9d9e-23c5da6caf52", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce0c874b-113a-404b-a4bf-f86c7a784bcd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59b3a1ca-d54b-4f9b-909a-5eb54f69adf2", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12783,Microsoft.Compute/GetVMImageFromLocation30Min;73783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:59b3a1ca-d54b-4f9b-909a-5eb54f69adf2", - "Expires" : "-1", - "x-ms-request-id" : "4a908f24-fa72-4cee-862f-f8f129003e67", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "ce0c874b-113a-404b-a4bf-f86c7a784bcd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e329d58-35b2-4eeb-8bbd-42aae59b7945", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be256525-7cd4-43f4-8e64-4083d4a06637", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12780,Microsoft.Compute/GetVMImageFromLocation30Min;73780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:be256525-7cd4-43f4-8e64-4083d4a06637", - "Expires" : "-1", - "x-ms-request-id" : "9852e90b-cc9d-4784-a0e2-3fae7d8c9e1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "5e329d58-35b2-4eeb-8bbd-42aae59b7945", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbeae971-e9af-431b-8d61-d888ee653700", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c093cf64-32b6-42ab-b323-a760c4edaa46", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12776,Microsoft.Compute/GetVMImageFromLocation30Min;73776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:c093cf64-32b6-42ab-b323-a760c4edaa46", - "Expires" : "-1", - "x-ms-request-id" : "f1e762a9-250a-417d-ae87-375724ca0d7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "cbeae971-e9af-431b-8d61-d888ee653700", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22f42625-55a0-4c04-80e9-20766ccea424", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49f7fda8-6343-4eb9-804d-88df82936b32", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12774,Microsoft.Compute/GetVMImageFromLocation30Min;73774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:49f7fda8-6343-4eb9-804d-88df82936b32", - "Expires" : "-1", - "x-ms-request-id" : "bf4c9abc-711d-4b05-8111-431aaeeb41ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "22f42625-55a0-4c04-80e9-20766ccea424", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19b43d4d-aebf-4abc-abda-acfbd931efc8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ed6bd1d-3d1f-4838-a257-0b353876ad64", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12775,Microsoft.Compute/GetVMImageFromLocation30Min;73775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:8ed6bd1d-3d1f-4838-a257-0b353876ad64", - "Expires" : "-1", - "x-ms-request-id" : "4515e1cc-1165-4f75-8e5e-3b206291701c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "19b43d4d-aebf-4abc-abda-acfbd931efc8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6dd3cd7d-5f68-46e4-9dc8-c1bd17b8c642", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0b90c39-f47d-4e38-aec1-c0b4d4abb1dc", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12779,Microsoft.Compute/GetVMImageFromLocation30Min;73779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:c0b90c39-f47d-4e38-aec1-c0b4d4abb1dc", - "Expires" : "-1", - "x-ms-request-id" : "c04ec4e7-6b38-4e07-b08d-62425e6d3eb9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "6dd3cd7d-5f68-46e4-9dc8-c1bd17b8c642", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "743a0b9e-cb0c-4b76-9e06-cec6cb207bf6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd778263-b9fb-42b1-9093-b9bf859e79c1", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12773,Microsoft.Compute/GetVMImageFromLocation30Min;73773", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:cd778263-b9fb-42b1-9093-b9bf859e79c1", - "Expires" : "-1", - "x-ms-request-id" : "5c77e7cb-b48e-465e-82d7-3c8d59fd3a3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "743a0b9e-cb0c-4b76-9e06-cec6cb207bf6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7f0a342-e422-4578-9b5a-c7c4c0e36e67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1052", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4f8613b-99b5-4d33-b25c-8a9520e8305d", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12772,Microsoft.Compute/GetVMImageFromLocation30Min;73772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:f4f8613b-99b5-4d33-b25c-8a9520e8305d", - "Expires" : "-1", - "x-ms-request-id" : "7b338134-4c9f-420e-a33b-706fbfde5a74", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "f7f0a342-e422-4578-9b5a-c7c4c0e36e67", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla/skus/20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1aa5216-0c6b-44aa-90f2-ff2bcfa02bfd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e07a4e2e-be79-48c4-8494-0a6c6d082b3f", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12777,Microsoft.Compute/GetVMImageFromLocation30Min;73777", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:e07a4e2e-be79-48c4-8494-0a6c6d082b3f", - "Expires" : "-1", - "x-ms-request-id" : "25b1f285-7d8c-4eb3-b5c1-cd41701f3fd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla/Skus/20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "f1aa5216-0c6b-44aa-90f2-ff2bcfa02bfd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da758e83-2622-49db-b123-a66faecde9e3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3375", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49510700-e8b8-4343-9c00-9cf7b478d045", - "Date" : "Tue, 24 May 2022 13:00:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9989,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130036Z:49510700-e8b8-4343-9c00-9cf7b478d045", - "Expires" : "-1", - "x-ms-request-id" : "65a92a3f-92f9-42a5-9b78-e3edc4227af8", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"02-pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "da758e83-2622-49db-b123-a66faecde9e3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9cc664d-63b0-498d-8af8-77760b2bd3f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2595", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6c17e0d-661d-4d59-bc48-5b6ef6dfab6f", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15974,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:a6c17e0d-661d-4d59-bc48-5b6ef6dfab6f", - "Expires" : "-1", - "x-ms-request-id" : "e63a511a-3181-400c-8a99-e024f5b6154a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "f9cc664d-63b0-498d-8af8-77760b2bd3f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e97c3e0-9d28-413a-a540-1cd1c0acf0f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e41227c-ee9a-4cba-bad9-6dd8b7998b90", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12771,Microsoft.Compute/GetVMImageFromLocation30Min;73771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:6e41227c-ee9a-4cba-bad9-6dd8b7998b90", - "Expires" : "-1", - "x-ms-request-id" : "7dfe05db-55fb-4769-8b1d-55cc1f87c9b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "2e97c3e0-9d28-413a-a540-1cd1c0acf0f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b73a20b-9289-46b3-a0b4-aea528f5c050", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af792370-6509-4c04-95c5-b6be597575d7", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12769,Microsoft.Compute/GetVMImageFromLocation30Min;73769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:af792370-6509-4c04-95c5-b6be597575d7", - "Expires" : "-1", - "x-ms-request-id" : "ff06a1b3-c523-41ef-98c6-e59063e56c3d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "7b73a20b-9289-46b3-a0b4-aea528f5c050", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3cf9159-75e3-4424-846a-abb88e57c942", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de2b2d37-5fc7-49dc-a88b-e973bb884241", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12768,Microsoft.Compute/GetVMImageFromLocation30Min;73768", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:de2b2d37-5fc7-49dc-a88b-e973bb884241", - "Expires" : "-1", - "x-ms-request-id" : "76fc7af7-a425-477b-93d0-b655b3aca21b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "c3cf9159-75e3-4424-846a-abb88e57c942", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6494a2f-73c6-4b25-a59b-685a7fb83d84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3f397853-f19d-4d30-9a8c-148a3810f2e8", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12770,Microsoft.Compute/GetVMImageFromLocation30Min;73770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:3f397853-f19d-4d30-9a8c-148a3810f2e8", - "Expires" : "-1", - "x-ms-request-id" : "c8c02041-2088-40fb-8198-bb3ded539d27", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "b6494a2f-73c6-4b25-a59b-685a7fb83d84", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8da31390-e382-4662-8118-02899264d69d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bee26cc9-1472-45eb-b984-4e9ad5d267e8", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12767,Microsoft.Compute/GetVMImageFromLocation30Min;73767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:bee26cc9-1472-45eb-b984-4e9ad5d267e8", - "Expires" : "-1", - "x-ms-request-id" : "659d23e8-3132-403d-a4c9-0ab7a9995707", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "8da31390-e382-4662-8118-02899264d69d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d7fdfc5-4625-4997-a784-92b7a0f2b1ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f40f58e-40bb-458a-9a2d-1515c09913e4", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12766,Microsoft.Compute/GetVMImageFromLocation30Min;73766", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:4f40f58e-40bb-458a-9a2d-1515c09913e4", - "Expires" : "-1", - "x-ms-request-id" : "6714117e-6e4c-4a34-8f6d-bc5a8a0d48da", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "8d7fdfc5-4625-4997-a784-92b7a0f2b1ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c30a927-0e6a-44ce-a008-a8b72ce8688b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24c8b7cc-7649-4a79-840c-6dbcc74f6634", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12765,Microsoft.Compute/GetVMImageFromLocation30Min;73765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:24c8b7cc-7649-4a79-840c-6dbcc74f6634", - "Expires" : "-1", - "x-ms-request-id" : "53aa902d-497a-4bf2-bcc5-ffb7eea20a25", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "6c30a927-0e6a-44ce-a008-a8b72ce8688b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d9e11a3-70b2-4f39-9310-2ec9993f7d60", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a40e5124-536c-4afe-b869-a77c2dbc471f", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12764,Microsoft.Compute/GetVMImageFromLocation30Min;73764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:a40e5124-536c-4afe-b869-a77c2dbc471f", - "Expires" : "-1", - "x-ms-request-id" : "99372cba-88d0-460b-98c9-6fa31157bf35", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "7d9e11a3-70b2-4f39-9310-2ec9993f7d60", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f77bed6f-3b60-492b-bcd0-37be22eee4e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2635", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f71d60fc-19aa-4b7f-9905-01a539322353", - "Date" : "Tue, 24 May 2022 13:00:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15973,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130037Z:f71d60fc-19aa-4b7f-9905-01a539322353", - "Expires" : "-1", - "x-ms-request-id" : "b310dc69-a456-4c78-85d1-f9b048208dc2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "f77bed6f-3b60-492b-bcd0-37be22eee4e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91812edd-0ca5-4f5f-b6ff-b6f486d2d508", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e94f7eb-1ae0-44b4-aad9-fac2d3e36624", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12762,Microsoft.Compute/GetVMImageFromLocation30Min;73762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:8e94f7eb-1ae0-44b4-aad9-fac2d3e36624", - "Expires" : "-1", - "x-ms-request-id" : "21d229ab-2c33-4306-a511-12f60ad98a40", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "91812edd-0ca5-4f5f-b6ff-b6f486d2d508", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4961a15-8da4-4814-b1c6-5ade9544c4d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6094faf-c381-4085-9dad-647025dd55af", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12763,Microsoft.Compute/GetVMImageFromLocation30Min;73763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:b6094faf-c381-4085-9dad-647025dd55af", - "Expires" : "-1", - "x-ms-request-id" : "97078604-7c93-4751-9143-fd99dfbb1752", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "f4961a15-8da4-4814-b1c6-5ade9544c4d5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0063e53-8d7d-46c4-814c-6fad6b058f15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4089ca64-81f1-4788-88f5-b800fa8b3941", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12761,Microsoft.Compute/GetVMImageFromLocation30Min;73761", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:4089ca64-81f1-4788-88f5-b800fa8b3941", - "Expires" : "-1", - "x-ms-request-id" : "03ce9d5c-fd1a-40c4-a646-db4b2212650f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "f0063e53-8d7d-46c4-814c-6fad6b058f15", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8076d381-19aa-4973-a83e-03afce720bed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b952cc2b-be40-4b13-b42a-756cf287abd1", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12759,Microsoft.Compute/GetVMImageFromLocation30Min;73759", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:b952cc2b-be40-4b13-b42a-756cf287abd1", - "Expires" : "-1", - "x-ms-request-id" : "56085188-061f-49c9-924f-ace68769f530", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "8076d381-19aa-4973-a83e-03afce720bed", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62ffce16-ef68-49d8-bb88-e9a8e305bfb8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e1cc969-5c9b-451d-b50a-98045a336f24", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12758,Microsoft.Compute/GetVMImageFromLocation30Min;73758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:9e1cc969-5c9b-451d-b50a-98045a336f24", - "Expires" : "-1", - "x-ms-request-id" : "9a963487-b7fc-4d30-a3d7-6a6d1d637971", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "62ffce16-ef68-49d8-bb88-e9a8e305bfb8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc1e0e48-f4ff-4653-a00e-52124c3d46d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06931761-19f4-4ab4-b2f4-fe1857f85c87", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12760,Microsoft.Compute/GetVMImageFromLocation30Min;73760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:06931761-19f4-4ab4-b2f4-fe1857f85c87", - "Expires" : "-1", - "x-ms-request-id" : "e27731f7-95c1-4150-ad9b-ab14f11e97f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "dc1e0e48-f4ff-4653-a00e-52124c3d46d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "356f6a13-2663-409a-972f-0a325f7bbb5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c96a3da-1571-4059-8e63-36337e3c8ca4", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12756,Microsoft.Compute/GetVMImageFromLocation30Min;73756", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:9c96a3da-1571-4059-8e63-36337e3c8ca4", - "Expires" : "-1", - "x-ms-request-id" : "87570e9f-b551-4a05-90e7-c1b5a4a299cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "356f6a13-2663-409a-972f-0a325f7bbb5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/02-pro-16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "523405d0-ae69-4951-91f5-1c4323a4efc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eded553a-2ab5-4cad-89cb-dba870c8cdca", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12757,Microsoft.Compute/GetVMImageFromLocation30Min;73757", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:eded553a-2ab5-4cad-89cb-dba870c8cdca", - "Expires" : "-1", - "x-ms-request-id" : "c83ff7ad-0451-45be-a39f-6cb390f6dd26", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"02-pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/02-pro-16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "523405d0-ae69-4951-91f5-1c4323a4efc0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73346b51-56f7-46de-b86b-6d8ca0bc1569", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1606", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a390bc9-e905-47cf-8a09-0c34c7c9f3f2", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15972,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:1a390bc9-e905-47cf-8a09-0c34c7c9f3f2", - "Expires" : "-1", - "x-ms-request-id" : "89c3ce6d-6a07-4bc1-8fcb-549d632b1604", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202104290\"\r\n }\r\n]", - "x-ms-client-request-id" : "73346b51-56f7-46de-b86b-6d8ca0bc1569", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04/versions/16.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f1208f7-7710-4c9e-9ac7-fd6b4a218316", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66c4bbe9-6596-45f0-a4a6-31a8439b8fb7", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12755,Microsoft.Compute/GetVMImageFromLocation30Min;73755", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:66c4bbe9-6596-45f0-a4a6-31a8439b8fb7", - "Expires" : "-1", - "x-ms-request-id" : "9300385f-4f78-402f-bb60-047af832f984", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202103100\"\r\n}", - "x-ms-client-request-id" : "2f1208f7-7710-4c9e-9ac7-fd6b4a218316", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "963a7791-c04e-4a3d-abb2-b05f2b9b0e0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f41e7318-61d0-4db2-acc5-0c344f5d00e3", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12753,Microsoft.Compute/GetVMImageFromLocation30Min;73753", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:f41e7318-61d0-4db2-acc5-0c344f5d00e3", - "Expires" : "-1", - "x-ms-request-id" : "9ffe43ea-6626-4aa0-9e94-752be1896fd8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "963a7791-c04e-4a3d-abb2-b05f2b9b0e0b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "76ff6bfb-def5-43f1-a8cf-4c87c1bceb12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e80030e0-0886-4b6e-854f-4787dcb9cb79", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12752,Microsoft.Compute/GetVMImageFromLocation30Min;73752", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:e80030e0-0886-4b6e-854f-4787dcb9cb79", - "Expires" : "-1", - "x-ms-request-id" : "f4cfe8fe-1019-4b68-a20a-9ecd7042c297", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "76ff6bfb-def5-43f1-a8cf-4c87c1bceb12", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04/versions/16.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6e26a3b-013b-4983-aa14-5662df2172db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34d0a82b-980b-4b58-9ef8-f71322cd3f1a", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12754,Microsoft.Compute/GetVMImageFromLocation30Min;73754", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:34d0a82b-980b-4b58-9ef8-f71322cd3f1a", - "Expires" : "-1", - "x-ms-request-id" : "22af44d0-8789-4317-b20a-09990ba65cb4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.20201014\"\r\n}", - "x-ms-client-request-id" : "a6e26a3b-013b-4983-aa14-5662df2172db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db6d3497-69ee-45db-a138-e0b944a821a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45aa2fcf-14cf-41b1-b90c-3b0e4ae9682d", - "Date" : "Tue, 24 May 2022 13:00:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12751,Microsoft.Compute/GetVMImageFromLocation30Min;73751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:45aa2fcf-14cf-41b1-b90c-3b0e4ae9682d", - "Expires" : "-1", - "x-ms-request-id" : "f28fc85b-bb42-4c8d-ae97-bbb15bd9852c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "db6d3497-69ee-45db-a138-e0b944a821a5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87278ffb-bf43-4179-a956-c42ecef47851", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "329", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f4c70fd-7f7a-486b-9757-7cc7fecad67e", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15971,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130038Z:9f4c70fd-7f7a-486b-9757-7cc7fecad67e", - "Expires" : "-1", - "x-ms-request-id" : "132d519f-efa0-4233-a642-3f515f56fa6b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04-gen2/Versions/16.04.202104290\"\r\n }\r\n]", - "x-ms-client-request-id" : "87278ffb-bf43-4179-a956-c42ecef47851", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-16_04-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11da5fb7-90cd-47a2-9d3c-5b81db1dee83", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59bc01c6-a3c4-4aab-b053-564316bd5840", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12750,Microsoft.Compute/GetVMImageFromLocation30Min;73750", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:59bc01c6-a3c4-4aab-b053-564316bd5840", - "Expires" : "-1", - "x-ms-request-id" : "bf5cfc9d-3e6f-47cd-85e9-db8614a199c0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-16_04-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "11da5fb7-90cd-47a2-9d3c-5b81db1dee83", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7972854-92f9-4017-8f71-d03bed6f4cd6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "9310", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "441d6718-ed6a-4ae9-a207-f79358cbfabe", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15970,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:441d6718-ed6a-4ae9-a207-f79358cbfabe", - "Expires" : "-1", - "x-ms-request-id" : "a1fbf914-0eed-40b1-8c36-bc40e1916df7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "a7972854-92f9-4017-8f71-d03bed6f4cd6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bf33ced-383f-4024-b0cb-9d36b3240a41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ccae299b-0ca2-4a98-a493-af1442dfd476", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12749,Microsoft.Compute/GetVMImageFromLocation30Min;73749", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:ccae299b-0ca2-4a98-a493-af1442dfd476", - "Expires" : "-1", - "x-ms-request-id" : "f2d2a398-bf48-4189-9ff6-a6a5555d669e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.20201014\"\r\n}", - "x-ms-client-request-id" : "1bf33ced-383f-4024-b0cb-9d36b3240a41", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5e7d96a-82bb-429a-9623-ce08a45f88ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad6e3f1c-ea44-40a2-a49f-deb43de0b525", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12744,Microsoft.Compute/GetVMImageFromLocation30Min;73744", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:ad6e3f1c-ea44-40a2-a49f-deb43de0b525", - "Expires" : "-1", - "x-ms-request-id" : "5c70dc69-8204-43a3-aea2-1954a4bbe7e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "b5e7d96a-82bb-429a-9623-ce08a45f88ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5877b31b-5cc6-401d-b1af-d0809a3ab6d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e714c3c1-c849-4a94-ad00-1b8f39f086c7", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12745,Microsoft.Compute/GetVMImageFromLocation30Min;73745", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:e714c3c1-c849-4a94-ad00-1b8f39f086c7", - "Expires" : "-1", - "x-ms-request-id" : "e04bfe58-b005-4920-9bff-07ccf0dcab6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "5877b31b-5cc6-401d-b1af-d0809a3ab6d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "138d14a1-1b01-409d-9902-bd498be1f8a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "727b392a-cb0d-4614-9ca6-620e6d4b6901", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12743,Microsoft.Compute/GetVMImageFromLocation30Min;73743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:727b392a-cb0d-4614-9ca6-620e6d4b6901", - "Expires" : "-1", - "x-ms-request-id" : "8e6df77f-f519-4857-942a-50cb7be701fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "138d14a1-1b01-409d-9902-bd498be1f8a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc638a80-3296-4bf9-b124-6d1b7b3e5dd6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c912b96f-4b75-444d-8d39-945932ec11ce", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12742,Microsoft.Compute/GetVMImageFromLocation30Min;73742", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:c912b96f-4b75-444d-8d39-945932ec11ce", - "Expires" : "-1", - "x-ms-request-id" : "90bfec19-371f-4e1a-a001-6a8434e20ca1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "fc638a80-3296-4bf9-b124-6d1b7b3e5dd6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fe3f4a5-dc68-43d2-be05-aab29478c22e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2a05d2d-198f-4f4c-aecd-2872f7a97989", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12741,Microsoft.Compute/GetVMImageFromLocation30Min;73741", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:b2a05d2d-198f-4f4c-aecd-2872f7a97989", - "Expires" : "-1", - "x-ms-request-id" : "ca0eb042-6ed6-4efa-96c2-91ce605fddf2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "2fe3f4a5-dc68-43d2-be05-aab29478c22e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6db4516a-273b-40a5-9876-30443863ffc5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "442fcc1d-01b8-442a-8f39-70fedd935804", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12740,Microsoft.Compute/GetVMImageFromLocation30Min;73740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:442fcc1d-01b8-442a-8f39-70fedd935804", - "Expires" : "-1", - "x-ms-request-id" : "2bf9e31c-741d-4fe4-8921-b41f55f9b61c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "6db4516a-273b-40a5-9876-30443863ffc5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "edad170e-28d0-493d-aa99-37f1937d4d9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10f37557-0bd2-40ef-b2b1-d222f00895db", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12738,Microsoft.Compute/GetVMImageFromLocation30Min;73738", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:10f37557-0bd2-40ef-b2b1-d222f00895db", - "Expires" : "-1", - "x-ms-request-id" : "d2610637-d25c-41ae-a154-b815a7d6e420", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "edad170e-28d0-493d-aa99-37f1937d4d9e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2f31fbe-c434-46d1-9db9-32f8559e0a41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd29931b-40bf-4232-a4c6-4998303afb0a", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12734,Microsoft.Compute/GetVMImageFromLocation30Min;73734", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:fd29931b-40bf-4232-a4c6-4998303afb0a", - "Expires" : "-1", - "x-ms-request-id" : "df821003-5a83-42e0-901d-a7b79d2f5c06", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "d2f31fbe-c434-46d1-9db9-32f8559e0a41", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "891ec5e7-6020-41da-adbf-cc1e02347949", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9325e246-3926-482c-9ecc-d1760b8018be", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12737,Microsoft.Compute/GetVMImageFromLocation30Min;73737", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:9325e246-3926-482c-9ecc-d1760b8018be", - "Expires" : "-1", - "x-ms-request-id" : "1c78d947-b8a7-4f24-b6d4-f7cdaad5ff04", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "891ec5e7-6020-41da-adbf-cc1e02347949", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c06e4c1-737d-41a1-beae-ab4047f2e962", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0c95906-906c-4f1e-ad86-c7030bdca07a", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12748,Microsoft.Compute/GetVMImageFromLocation30Min;73748", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:d0c95906-906c-4f1e-ad86-c7030bdca07a", - "Expires" : "-1", - "x-ms-request-id" : "b7362353-c050-4e9e-9e9a-8f8f3406c3ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "7c06e4c1-737d-41a1-beae-ab4047f2e962", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9b671a9-a485-4c72-b4c1-98f0ae9e6003", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5067ac18-a46a-4329-92e6-5a3847a7d56a", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12735,Microsoft.Compute/GetVMImageFromLocation30Min;73735", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:5067ac18-a46a-4329-92e6-5a3847a7d56a", - "Expires" : "-1", - "x-ms-request-id" : "eaf048b9-bb57-4cf7-89f0-3f7f297edd85", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "b9b671a9-a485-4c72-b4c1-98f0ae9e6003", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5fb8f852-4d31-4adf-ad59-1c3e177fe88c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80727f7c-ffcd-4237-81c2-1a5518b5c0f4", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12736,Microsoft.Compute/GetVMImageFromLocation30Min;73736", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:80727f7c-ffcd-4237-81c2-1a5518b5c0f4", - "Expires" : "-1", - "x-ms-request-id" : "57c99df7-fa26-472d-9bf5-0920678262da", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "5fb8f852-4d31-4adf-ad59-1c3e177fe88c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "118a8a55-720e-46df-bf9c-0ea1cfaa39fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "272109be-e791-451d-9cf8-05604c90f536", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12732,Microsoft.Compute/GetVMImageFromLocation30Min;73732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:272109be-e791-451d-9cf8-05604c90f536", - "Expires" : "-1", - "x-ms-request-id" : "d73eedcf-cff1-4546-b76a-40179221231f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "118a8a55-720e-46df-bf9c-0ea1cfaa39fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6db3db21-1391-4715-b9c1-2f03cfb81eee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ab0cc06-69ae-4537-bd13-399b2d7a2df8", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12729,Microsoft.Compute/GetVMImageFromLocation30Min;73729", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:1ab0cc06-69ae-4537-bd13-399b2d7a2df8", - "Expires" : "-1", - "x-ms-request-id" : "b4f54f2f-1d11-4bbf-a742-3ec21d281e8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "6db3db21-1391-4715-b9c1-2f03cfb81eee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e5ad62f-9e54-49cb-b237-c4b9343241ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47975839-df1b-414c-8bb6-350a1ff8853e", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12731,Microsoft.Compute/GetVMImageFromLocation30Min;73731", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:47975839-df1b-414c-8bb6-350a1ff8853e", - "Expires" : "-1", - "x-ms-request-id" : "8856b8e0-8250-4eeb-a622-77e376adabf6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "9e5ad62f-9e54-49cb-b237-c4b9343241ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9796bc93-2676-4abd-a552-48042812e075", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d461ec0-8780-4cb0-95d1-56780106a029", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12727,Microsoft.Compute/GetVMImageFromLocation30Min;73727", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:1d461ec0-8780-4cb0-95d1-56780106a029", - "Expires" : "-1", - "x-ms-request-id" : "5ed69828-0d02-4312-ad0b-453e206969e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "9796bc93-2676-4abd-a552-48042812e075", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4092f857-a544-49c7-a3c1-a1115b8cab98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac5ee78b-e1df-4e25-b946-e49541c3d698", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12726,Microsoft.Compute/GetVMImageFromLocation30Min;73726", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:ac5ee78b-e1df-4e25-b946-e49541c3d698", - "Expires" : "-1", - "x-ms-request-id" : "afceb9c0-7bce-4fe9-88cc-03209b89cdb4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "4092f857-a544-49c7-a3c1-a1115b8cab98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0dad1c4b-7237-4ac0-b8c3-16da6405b305", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80aad553-44ba-4400-9942-c63d583f260d", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12730,Microsoft.Compute/GetVMImageFromLocation30Min;73730", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:80aad553-44ba-4400-9942-c63d583f260d", - "Expires" : "-1", - "x-ms-request-id" : "fd5595ed-5495-4196-ae8a-201db9ed4efb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "0dad1c4b-7237-4ac0-b8c3-16da6405b305", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5b81cbe-441d-48ce-a8fd-a8ea53d66b05", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab4ec5f4-355e-4c32-86cc-8cad79bb31c0", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12724,Microsoft.Compute/GetVMImageFromLocation30Min;73724", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:ab4ec5f4-355e-4c32-86cc-8cad79bb31c0", - "Expires" : "-1", - "x-ms-request-id" : "b9ae873a-ce76-4feb-82c7-11508c1531a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "a5b81cbe-441d-48ce-a8fd-a8ea53d66b05", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c4c2449-de83-4f2c-be12-ba738af087d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b1e5fa3-5e4a-43ac-b2db-0cb18af17fb6", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12722,Microsoft.Compute/GetVMImageFromLocation30Min;73722", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:2b1e5fa3-5e4a-43ac-b2db-0cb18af17fb6", - "Expires" : "-1", - "x-ms-request-id" : "e9138a73-477f-44aa-9ec7-771250a62920", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "0c4c2449-de83-4f2c-be12-ba738af087d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b06d9aa-77c6-41b9-bee7-86228a9a20df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56456ec9-6191-4663-9d78-a0abb4eaf0a1", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12725,Microsoft.Compute/GetVMImageFromLocation30Min;73725", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:56456ec9-6191-4663-9d78-a0abb4eaf0a1", - "Expires" : "-1", - "x-ms-request-id" : "082ad771-ede9-4826-aaef-a27375319a4a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "1b06d9aa-77c6-41b9-bee7-86228a9a20df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9fd4d42-8e64-4c2b-ba08-1234d039aa79", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3399b803-a706-49de-a816-ac50b6bef595", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12739,Microsoft.Compute/GetVMImageFromLocation30Min;73739", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:3399b803-a706-49de-a816-ac50b6bef595", - "Expires" : "-1", - "x-ms-request-id" : "ddb6abbc-ba36-4b40-8633-54060f5b870d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "f9fd4d42-8e64-4c2b-ba08-1234d039aa79", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d1fd802-e82c-491f-8d4b-334ebd4bee6d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfdcc207-327b-41d4-b526-33047e2f509d", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12728,Microsoft.Compute/GetVMImageFromLocation30Min;73728", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:cfdcc207-327b-41d4-b526-33047e2f509d", - "Expires" : "-1", - "x-ms-request-id" : "4f506aa9-d729-492a-a5d1-943692ec6fbf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "8d1fd802-e82c-491f-8d4b-334ebd4bee6d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75f868ad-02dc-4d20-a3dd-73d6e8076375", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32a70a52-8dcc-4630-bcec-c443aad99ff3", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12723,Microsoft.Compute/GetVMImageFromLocation30Min;73723", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:32a70a52-8dcc-4630-bcec-c443aad99ff3", - "Expires" : "-1", - "x-ms-request-id" : "26750855-2100-4c78-82dc-c75a4bc27954", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "75f868ad-02dc-4d20-a3dd-73d6e8076375", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cf0d1f4-e6f5-4a44-b953-d3d178679df5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f556f844-8388-4d3b-b40d-ee081b5add01", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12721,Microsoft.Compute/GetVMImageFromLocation30Min;73721", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:f556f844-8388-4d3b-b40d-ee081b5add01", - "Expires" : "-1", - "x-ms-request-id" : "607aa972-0e35-41cc-b938-6db5d70fe345", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "9cf0d1f4-e6f5-4a44-b953-d3d178679df5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6436d92f-0743-4848-a0a8-255af3f4cc99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c7fb962-ca06-4441-85d4-1a89f5ab9d9c", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12746,Microsoft.Compute/GetVMImageFromLocation30Min;73746", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:3c7fb962-ca06-4441-85d4-1a89f5ab9d9c", - "Expires" : "-1", - "x-ms-request-id" : "c0bafab1-c45b-4568-a347-585b485c70fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "6436d92f-0743-4848-a0a8-255af3f4cc99", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ef7a261-7e53-405b-8a68-ff5ba4a9d490", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e29cc68-c4c3-4259-92f7-f17493998eca", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12733,Microsoft.Compute/GetVMImageFromLocation30Min;73733", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:9e29cc68-c4c3-4259-92f7-f17493998eca", - "Expires" : "-1", - "x-ms-request-id" : "a810ac68-8412-453a-b96a-15bdda660d39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "1ef7a261-7e53-405b-8a68-ff5ba4a9d490", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a155f439-375a-4802-b5d5-42f0de098f81", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "052efc53-cb9b-4af4-a381-c9b0ffc8e2d2", - "Date" : "Tue, 24 May 2022 13:00:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12747,Microsoft.Compute/GetVMImageFromLocation30Min;73747", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130039Z:052efc53-cb9b-4af4-a381-c9b0ffc8e2d2", - "Expires" : "-1", - "x-ms-request-id" : "852fb461-bd1c-4e42-adda-ec14f43e6dd5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "a155f439-375a-4802-b5d5-42f0de098f81", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18c0a065-15a7-44bf-a2ce-9ca53a0167db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7827", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7534939-6d55-47fa-af45-36bd263a2623", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15969,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:b7534939-6d55-47fa-af45-36bd263a2623", - "Expires" : "-1", - "x-ms-request-id" : "c600c500-b8d8-49fb-b6d8-d939e9875d68", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "18c0a065-15a7-44bf-a2ce-9ca53a0167db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bf2f41a-289e-4262-809d-c8e701e0776d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2917a855-84a4-4a62-bc92-f6eecbf1a3a5", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12719,Microsoft.Compute/GetVMImageFromLocation30Min;73719", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:2917a855-84a4-4a62-bc92-f6eecbf1a3a5", - "Expires" : "-1", - "x-ms-request-id" : "16a63873-c79c-4803-ab27-f5a1e63b22f6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "6bf2f41a-289e-4262-809d-c8e701e0776d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9335ca43-846f-493c-ad55-5235ec7bdb45", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83f2a188-059c-4cab-b1e3-72b4a942c882", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12716,Microsoft.Compute/GetVMImageFromLocation30Min;73716", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:83f2a188-059c-4cab-b1e3-72b4a942c882", - "Expires" : "-1", - "x-ms-request-id" : "c0debdad-dd9d-4a50-970d-be6170a3a929", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "9335ca43-846f-493c-ad55-5235ec7bdb45", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2482e43-5934-4acf-b86c-f8855fac3dfa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3803bc2-4f27-4990-bede-9e2c458a4ec1", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12720,Microsoft.Compute/GetVMImageFromLocation30Min;73720", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:d3803bc2-4f27-4990-bede-9e2c458a4ec1", - "Expires" : "-1", - "x-ms-request-id" : "ee14c0b9-6ff4-462c-9db2-bb514a361e61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "d2482e43-5934-4acf-b86c-f8855fac3dfa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0bf5f3d-1b07-4614-8a72-64048e6efae9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a3e48d4-6826-4ea6-a4af-bd889fc9af7d", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12717,Microsoft.Compute/GetVMImageFromLocation30Min;73717", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:0a3e48d4-6826-4ea6-a4af-bd889fc9af7d", - "Expires" : "-1", - "x-ms-request-id" : "f373f1df-4ed1-4d87-b9f5-2d2a9d9036ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "d0bf5f3d-1b07-4614-8a72-64048e6efae9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e66e9dd-8bdb-4708-b9d6-b23d2d81b93b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e109357-9f1c-4658-a58c-02fc09b98c66", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12715,Microsoft.Compute/GetVMImageFromLocation30Min;73715", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:6e109357-9f1c-4658-a58c-02fc09b98c66", - "Expires" : "-1", - "x-ms-request-id" : "51f9e21c-022d-4861-b363-0d7d59447cc4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "8e66e9dd-8bdb-4708-b9d6-b23d2d81b93b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4600d5dd-4025-4e2d-9117-a41346ccace9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db8d759a-7b54-422b-8213-c97c444c3944", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12714,Microsoft.Compute/GetVMImageFromLocation30Min;73714", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:db8d759a-7b54-422b-8213-c97c444c3944", - "Expires" : "-1", - "x-ms-request-id" : "ca5802be-e0b4-4e87-a409-e92e8c74c5e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "4600d5dd-4025-4e2d-9117-a41346ccace9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca544f99-f168-4f01-8a29-e5e8fbdf590f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f08c7685-49d6-4f79-bf24-d463aecf3c24", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12713,Microsoft.Compute/GetVMImageFromLocation30Min;73713", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:f08c7685-49d6-4f79-bf24-d463aecf3c24", - "Expires" : "-1", - "x-ms-request-id" : "d1bc15cc-8dca-4bb0-9bb2-0cd34b3bb747", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "ca544f99-f168-4f01-8a29-e5e8fbdf590f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df32ebc5-ea93-44d5-b79d-cfba7150002c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d21906f6-e39e-4876-af71-1910c1ca9ec6", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12712,Microsoft.Compute/GetVMImageFromLocation30Min;73712", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:d21906f6-e39e-4876-af71-1910c1ca9ec6", - "Expires" : "-1", - "x-ms-request-id" : "18b8d872-ffc2-4a97-bd85-2c1afa19269d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "df32ebc5-ea93-44d5-b79d-cfba7150002c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0dd77e4-bde9-435e-a5c1-ed8956dfa88c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb9a2875-69ac-4211-8982-8b274186adc6", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12711,Microsoft.Compute/GetVMImageFromLocation30Min;73711", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:bb9a2875-69ac-4211-8982-8b274186adc6", - "Expires" : "-1", - "x-ms-request-id" : "f036a470-881e-48e6-a0aa-3a4828952c58", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "c0dd77e4-bde9-435e-a5c1-ed8956dfa88c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1dd1b86a-38f6-43e0-8c28-9355e29dfc70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41f51fc8-e418-4bab-acfc-d85d9c6da4ee", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12710,Microsoft.Compute/GetVMImageFromLocation30Min;73710", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:41f51fc8-e418-4bab-acfc-d85d9c6da4ee", - "Expires" : "-1", - "x-ms-request-id" : "6b5c75fe-912e-4dce-abb3-25fe31755c20", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "1dd1b86a-38f6-43e0-8c28-9355e29dfc70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e32ddc16-99d7-4e9e-9636-b24c3ac5e509", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96803da5-b9d0-4c6c-bbe0-0385a8acec98", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12709,Microsoft.Compute/GetVMImageFromLocation30Min;73709", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:96803da5-b9d0-4c6c-bbe0-0385a8acec98", - "Expires" : "-1", - "x-ms-request-id" : "7a8a11a2-a829-4f2d-a878-155108decd5b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "e32ddc16-99d7-4e9e-9636-b24c3ac5e509", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea23c222-9a8a-4b0d-917e-cf735dc91c2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0feae18c-6acc-4d89-901d-003a69c772ed", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12705,Microsoft.Compute/GetVMImageFromLocation30Min;73705", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:0feae18c-6acc-4d89-901d-003a69c772ed", - "Expires" : "-1", - "x-ms-request-id" : "495ecf0e-8f01-4961-b707-26b22b83fe9e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "ea23c222-9a8a-4b0d-917e-cf735dc91c2a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d754f238-b49a-40b3-a610-016fe88e92d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "abd6562a-2b14-480a-a976-f7228e8e8bb0", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12707,Microsoft.Compute/GetVMImageFromLocation30Min;73707", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:abd6562a-2b14-480a-a976-f7228e8e8bb0", - "Expires" : "-1", - "x-ms-request-id" : "01a33b46-00c7-43b5-8aff-ca4b0452981e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "d754f238-b49a-40b3-a610-016fe88e92d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f9362a5-35fb-40ed-ac82-5a8063e5db6a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "50e788c9-badb-4b9e-9608-eab7980277ed", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12708,Microsoft.Compute/GetVMImageFromLocation30Min;73708", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:50e788c9-badb-4b9e-9608-eab7980277ed", - "Expires" : "-1", - "x-ms-request-id" : "033e2067-e7e2-4c28-b653-ca4f0ab040e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "5f9362a5-35fb-40ed-ac82-5a8063e5db6a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca58a589-c1a4-4d07-97fb-23bc2074e332", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dbe4270d-4edd-4d1d-8ee5-3d2a13d24258", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12704,Microsoft.Compute/GetVMImageFromLocation30Min;73704", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:dbe4270d-4edd-4d1d-8ee5-3d2a13d24258", - "Expires" : "-1", - "x-ms-request-id" : "d29032da-a7cc-4f27-a877-bbe7cd65013f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "ca58a589-c1a4-4d07-97fb-23bc2074e332", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61d505a3-6b3a-4539-a04f-5510f52a5bb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de384782-08ea-4752-9eac-bcd21284d8d1", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12702,Microsoft.Compute/GetVMImageFromLocation30Min;73702", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:de384782-08ea-4752-9eac-bcd21284d8d1", - "Expires" : "-1", - "x-ms-request-id" : "8caec050-04d0-434b-ba19-24a34e521f7b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "61d505a3-6b3a-4539-a04f-5510f52a5bb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "085462c3-c9e2-4919-ad9a-bc12025df3c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24beb22d-94b1-4759-bb06-a901a6b4c3f1", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12703,Microsoft.Compute/GetVMImageFromLocation30Min;73703", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:24beb22d-94b1-4759-bb06-a901a6b4c3f1", - "Expires" : "-1", - "x-ms-request-id" : "0033882d-e8e8-4ab7-a187-71ce4bfce09f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "085462c3-c9e2-4919-ad9a-bc12025df3c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c3d7e1a-8078-4f80-a7c1-42ccef9bc898", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc3b986d-b9a2-4fee-b862-f537275080f3", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12699,Microsoft.Compute/GetVMImageFromLocation30Min;73699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:bc3b986d-b9a2-4fee-b862-f537275080f3", - "Expires" : "-1", - "x-ms-request-id" : "ef95197f-295c-4041-9cdf-0300373debb4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "1c3d7e1a-8078-4f80-a7c1-42ccef9bc898", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32e680ff-878f-49b6-b183-6abcddee210d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "071e51ab-c35b-41c1-961f-7f5ef8a2dad5", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12700,Microsoft.Compute/GetVMImageFromLocation30Min;73700", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:071e51ab-c35b-41c1-961f-7f5ef8a2dad5", - "Expires" : "-1", - "x-ms-request-id" : "db834802-564d-42fa-ae9f-3cb1a99f1d19", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "32e680ff-878f-49b6-b183-6abcddee210d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18161daa-6c42-4749-9397-93ea40a8b810", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d1f9102-2243-4622-af7d-69263ef009b4", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12698,Microsoft.Compute/GetVMImageFromLocation30Min;73698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:4d1f9102-2243-4622-af7d-69263ef009b4", - "Expires" : "-1", - "x-ms-request-id" : "c98d11ad-e9da-4c50-9aa9-41747a5b7cb1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "18161daa-6c42-4749-9397-93ea40a8b810", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fedb1d5f-4bc5-424a-9344-debdcef17655", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be2a1e47-7f12-490c-8f46-5dadfbbfc13d", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12718,Microsoft.Compute/GetVMImageFromLocation30Min;73718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:be2a1e47-7f12-490c-8f46-5dadfbbfc13d", - "Expires" : "-1", - "x-ms-request-id" : "5d74eab7-c517-447c-9210-d8fa48bb950b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "fedb1d5f-4bc5-424a-9344-debdcef17655", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6caefd9d-c7b1-42a4-b7b2-eff9eb1d156f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34771978-dbf7-4084-9edb-5cb17054fa29", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12706,Microsoft.Compute/GetVMImageFromLocation30Min;73706", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:34771978-dbf7-4084-9edb-5cb17054fa29", - "Expires" : "-1", - "x-ms-request-id" : "6439bc65-855b-4cc1-850a-b892ae018ada", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "6caefd9d-c7b1-42a4-b7b2-eff9eb1d156f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85a41380-53f6-4d77-9e2f-a4c98d78c799", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9656fc10-ea78-4d56-9b37-35c9dbb6d0d6", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12697,Microsoft.Compute/GetVMImageFromLocation30Min;73697", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:9656fc10-ea78-4d56-9b37-35c9dbb6d0d6", - "Expires" : "-1", - "x-ms-request-id" : "5e2567a0-c796-4b1e-afc8-2f17b61d73f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "85a41380-53f6-4d77-9e2f-a4c98d78c799", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7579de97-bb12-405d-bfa4-0efe711d817f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c89b26e6-ce1a-4bdc-a59d-f4450785cd7d", - "Date" : "Tue, 24 May 2022 13:00:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12701,Microsoft.Compute/GetVMImageFromLocation30Min;73701", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:c89b26e6-ce1a-4bdc-a59d-f4450785cd7d", - "Expires" : "-1", - "x-ms-request-id" : "aafcf669-f08a-40f2-ac47-98e2de4d34b6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "7579de97-bb12-405d-bfa4-0efe711d817f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e5242a7-3d57-418b-840b-8312db413d52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "9310", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3cb8ffab-f5bf-47d2-9833-259903bf578e", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15968,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:3cb8ffab-f5bf-47d2-9833-259903bf578e", - "Expires" : "-1", - "x-ms-request-id" : "b2d5fa5d-37b8-4d39-be74-c4dee3ec4a10", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "6e5242a7-3d57-418b-840b-8312db413d52", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a04182f3-11b1-4c76-860c-699719e8d76c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7b83448-b1ee-4f76-9733-f34aa45903b8", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12696,Microsoft.Compute/GetVMImageFromLocation30Min;73696", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:d7b83448-b1ee-4f76-9733-f34aa45903b8", - "Expires" : "-1", - "x-ms-request-id" : "baa32470-2c86-4ec3-b246-5b3021705f5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "a04182f3-11b1-4c76-860c-699719e8d76c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0abadec6-e380-4a5c-832f-4443364f3c30", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf89d4b4-b10e-4b6a-9456-60cc1bd0e792", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12694,Microsoft.Compute/GetVMImageFromLocation30Min;73694", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:bf89d4b4-b10e-4b6a-9456-60cc1bd0e792", - "Expires" : "-1", - "x-ms-request-id" : "8bc93526-b8a9-4257-86c1-84be673fe23f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "0abadec6-e380-4a5c-832f-4443364f3c30", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "465ffc2f-6dae-4152-b55f-36f519c8f169", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9fcf1d28-171b-4331-a942-40fcbd516025", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12695,Microsoft.Compute/GetVMImageFromLocation30Min;73695", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:9fcf1d28-171b-4331-a942-40fcbd516025", - "Expires" : "-1", - "x-ms-request-id" : "e8df8d36-28cf-495c-9f73-5ce1971983a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "465ffc2f-6dae-4152-b55f-36f519c8f169", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e544690-148e-41f7-9957-3c94b4c1ed2c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6304a465-a00d-4694-887f-5e9c81b76b93", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12693,Microsoft.Compute/GetVMImageFromLocation30Min;73693", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:6304a465-a00d-4694-887f-5e9c81b76b93", - "Expires" : "-1", - "x-ms-request-id" : "cbfb341e-869f-459c-8bfe-f02d26c4241e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "8e544690-148e-41f7-9957-3c94b4c1ed2c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "914d2c85-1b8c-4457-baac-ff9f2cf026cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba154195-c3b7-43a3-b425-ed55204a2a31", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12690,Microsoft.Compute/GetVMImageFromLocation30Min;73690", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:ba154195-c3b7-43a3-b425-ed55204a2a31", - "Expires" : "-1", - "x-ms-request-id" : "47dad4b5-79bc-436b-ae06-42eefc873999", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "914d2c85-1b8c-4457-baac-ff9f2cf026cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32db0038-2069-4246-80e6-57c4dfbe2cbe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b816f39-f5c9-4f57-9a0a-f98f52556500", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12691,Microsoft.Compute/GetVMImageFromLocation30Min;73691", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:0b816f39-f5c9-4f57-9a0a-f98f52556500", - "Expires" : "-1", - "x-ms-request-id" : "20cb77f6-aab4-4373-9f34-cb7cabfeeb31", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "32db0038-2069-4246-80e6-57c4dfbe2cbe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cd99e2a-11ac-4fb0-aa30-3a1ad57f38b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ed5f5a2-847e-42f9-95db-38e9b7a11968", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12687,Microsoft.Compute/GetVMImageFromLocation30Min;73687", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130040Z:7ed5f5a2-847e-42f9-95db-38e9b7a11968", - "Expires" : "-1", - "x-ms-request-id" : "174b3803-3414-4b7e-9323-39dc717d38be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "4cd99e2a-11ac-4fb0-aa30-3a1ad57f38b3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "16bd4d06-29c6-4f77-be3d-81272bb6b8e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8511a672-889c-4125-acf4-76fe1512a33d", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12685,Microsoft.Compute/GetVMImageFromLocation30Min;73685", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:8511a672-889c-4125-acf4-76fe1512a33d", - "Expires" : "-1", - "x-ms-request-id" : "c234168a-a7fb-4e70-8086-e66f9abff243", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "16bd4d06-29c6-4f77-be3d-81272bb6b8e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94857099-50ed-4292-875f-9c2cfc44d46e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ee52819-9190-4843-a460-0841fd42957e", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12684,Microsoft.Compute/GetVMImageFromLocation30Min;73684", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:7ee52819-9190-4843-a460-0841fd42957e", - "Expires" : "-1", - "x-ms-request-id" : "64b4a6b9-b62d-4c70-a4e1-1379fa0903f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "94857099-50ed-4292-875f-9c2cfc44d46e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "787f147e-123c-4b55-9278-a0ca021c5da5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd191656-80da-42b2-a97e-d1e5dcc0f857", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12681,Microsoft.Compute/GetVMImageFromLocation30Min;73681", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:cd191656-80da-42b2-a97e-d1e5dcc0f857", - "Expires" : "-1", - "x-ms-request-id" : "10aaaae3-a162-41ff-9975-4fcc45bbe102", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "787f147e-123c-4b55-9278-a0ca021c5da5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a78b96f-a96e-443d-999f-b8a12f50151b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aacbe00a-2371-4f61-8a75-dd0c57ba5f6c", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12680,Microsoft.Compute/GetVMImageFromLocation30Min;73680", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:aacbe00a-2371-4f61-8a75-dd0c57ba5f6c", - "Expires" : "-1", - "x-ms-request-id" : "3e971d7e-399c-4392-9e24-1a81d6653090", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "0a78b96f-a96e-443d-999f-b8a12f50151b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72621da4-1f9d-4236-9ee4-96b1c4ed7fbe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a2c6852-3f66-479f-97d6-7be0d0c2be80", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12692,Microsoft.Compute/GetVMImageFromLocation30Min;73692", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:4a2c6852-3f66-479f-97d6-7be0d0c2be80", - "Expires" : "-1", - "x-ms-request-id" : "50efa71b-9edd-4872-9de2-9b7d3e7d02d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "72621da4-1f9d-4236-9ee4-96b1c4ed7fbe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c402bbec-8459-40ed-95f0-cc3480d3afe3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "616ae70d-be62-427b-932e-868ee28eb72b", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12683,Microsoft.Compute/GetVMImageFromLocation30Min;73683", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:616ae70d-be62-427b-932e-868ee28eb72b", - "Expires" : "-1", - "x-ms-request-id" : "c8375568-ae25-48f0-a567-d5632d0fccf1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "c402bbec-8459-40ed-95f0-cc3480d3afe3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f43b8e7-a702-4f33-b8fb-18ac2def2c9a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4dbb73d-a45b-479c-8fa3-3e6bb0e42911", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12679,Microsoft.Compute/GetVMImageFromLocation30Min;73679", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:d4dbb73d-a45b-479c-8fa3-3e6bb0e42911", - "Expires" : "-1", - "x-ms-request-id" : "fc422cc9-790d-48fd-aa99-40e22266c538", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "6f43b8e7-a702-4f33-b8fb-18ac2def2c9a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "be48198e-d98e-45e4-be7c-b95add164bff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75bba2d6-f86c-44b0-a629-573c2f526972", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12677,Microsoft.Compute/GetVMImageFromLocation30Min;73677", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:75bba2d6-f86c-44b0-a629-573c2f526972", - "Expires" : "-1", - "x-ms-request-id" : "7cf228ba-2544-4317-bafe-21c6767739f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.20201014\"\r\n}", - "x-ms-client-request-id" : "be48198e-d98e-45e4-be7c-b95add164bff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf23c8ab-11c9-42a2-b810-e327d1af11fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a95b8b58-a568-425b-93a2-ddabe9bccddf", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12678,Microsoft.Compute/GetVMImageFromLocation30Min;73678", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:a95b8b58-a568-425b-93a2-ddabe9bccddf", - "Expires" : "-1", - "x-ms-request-id" : "41ad032f-7472-465f-bf83-1cbc754a1a9a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "bf23c8ab-11c9-42a2-b810-e327d1af11fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2bd499f-c3a7-4fef-8d11-6bd05038bc40", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2cef0a05-cedb-45d0-baf2-c70ec64ab41a", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12682,Microsoft.Compute/GetVMImageFromLocation30Min;73682", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:2cef0a05-cedb-45d0-baf2-c70ec64ab41a", - "Expires" : "-1", - "x-ms-request-id" : "f4606f25-692f-40df-b9a8-d94bb8f352e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202103160\"\r\n}", - "x-ms-client-request-id" : "b2bd499f-c3a7-4fef-8d11-6bd05038bc40", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9e1fd33-a0f9-4ec1-b87c-3b45b748895b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e3f36f8-ea6b-4706-adbe-a314cc1b5e73", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12674,Microsoft.Compute/GetVMImageFromLocation30Min;73674", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:0e3f36f8-ea6b-4706-adbe-a314cc1b5e73", - "Expires" : "-1", - "x-ms-request-id" : "aaf06180-f746-4cc7-8637-29aec9803909", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "a9e1fd33-a0f9-4ec1-b87c-3b45b748895b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93b7568b-afaa-4af4-919e-d4d0404c4d6e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b99b21e-8fbe-4170-bb9d-6c47e9a6a83e", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12676,Microsoft.Compute/GetVMImageFromLocation30Min;73676", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:4b99b21e-8fbe-4170-bb9d-6c47e9a6a83e", - "Expires" : "-1", - "x-ms-request-id" : "d4ffb98e-bcfc-483a-8414-706475266317", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "93b7568b-afaa-4af4-919e-d4d0404c4d6e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd432291-6359-4809-999a-8448a52631c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea9375c9-c640-4457-ae6e-8aaf0c0c51c8", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12675,Microsoft.Compute/GetVMImageFromLocation30Min;73675", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:ea9375c9-c640-4457-ae6e-8aaf0c0c51c8", - "Expires" : "-1", - "x-ms-request-id" : "f879395d-1af4-4263-91bf-725cd470da9c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "dd432291-6359-4809-999a-8448a52631c7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a47b8bf2-1073-48e8-93fa-1a6e5f7fff9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95912439-6004-4a56-b287-ebe6e7d2c998", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12686,Microsoft.Compute/GetVMImageFromLocation30Min;73686", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:95912439-6004-4a56-b287-ebe6e7d2c998", - "Expires" : "-1", - "x-ms-request-id" : "29503339-b23a-4140-8a86-3822bca50278", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "a47b8bf2-1073-48e8-93fa-1a6e5f7fff9f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a42341f-7cf5-42dc-b12e-6fb23ac1fd7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2662ba80-3528-43c8-85f9-62167433ea81", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12671,Microsoft.Compute/GetVMImageFromLocation30Min;73671", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:2662ba80-3528-43c8-85f9-62167433ea81", - "Expires" : "-1", - "x-ms-request-id" : "1f0e1878-0bde-486f-97ac-d7a8bfcfdc37", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "7a42341f-7cf5-42dc-b12e-6fb23ac1fd7e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59973101-aac9-472e-87a8-6eaf860ca6ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7b5f5d8-87c0-4108-8986-209a929bd7be", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12673,Microsoft.Compute/GetVMImageFromLocation30Min;73673", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:c7b5f5d8-87c0-4108-8986-209a929bd7be", - "Expires" : "-1", - "x-ms-request-id" : "0fe92e03-c7b2-4454-ba05-15e53b001b30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "59973101-aac9-472e-87a8-6eaf860ca6ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04487b41-3e22-4131-95ac-afe2590f55bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "740d5d33-3131-4b6f-aeef-74e6cab7bc74", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12670,Microsoft.Compute/GetVMImageFromLocation30Min;73670", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:740d5d33-3131-4b6f-aeef-74e6cab7bc74", - "Expires" : "-1", - "x-ms-request-id" : "36340cdd-4e73-4004-a40a-33a7bc851163", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "04487b41-3e22-4131-95ac-afe2590f55bb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f01ee84f-d597-4f8d-b317-b22da9cc8e4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "649d6580-e3bc-4fce-9ecc-f6be747b08fd", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12688,Microsoft.Compute/GetVMImageFromLocation30Min;73688", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:649d6580-e3bc-4fce-9ecc-f6be747b08fd", - "Expires" : "-1", - "x-ms-request-id" : "1e18bae2-7d2f-4634-85ce-a253919064ff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "f01ee84f-d597-4f8d-b317-b22da9cc8e4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b32bbc35-e407-4272-a994-ade8087b4495", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a98495a3-db42-409c-a64c-1e52156f1689", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12689,Microsoft.Compute/GetVMImageFromLocation30Min;73689", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:a98495a3-db42-409c-a64c-1e52156f1689", - "Expires" : "-1", - "x-ms-request-id" : "116a4b92-e579-4f6b-8979-631fe8aa46e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "b32bbc35-e407-4272-a994-ade8087b4495", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb4d2558-81b1-48cb-95a5-59eb6394bc85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "089b464c-a665-4a2b-a0a3-3005e50d63aa", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12672,Microsoft.Compute/GetVMImageFromLocation30Min;73672", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:089b464c-a665-4a2b-a0a3-3005e50d63aa", - "Expires" : "-1", - "x-ms-request-id" : "4c1b7851-7f7f-43fe-8950-f5c62bb73ff1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "fb4d2558-81b1-48cb-95a5-59eb6394bc85", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1e58371-e952-4db4-af3f-780add8bfe2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "251e58b1-4224-4fd1-9efe-f53717bf650e", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12669,Microsoft.Compute/GetVMImageFromLocation30Min;73669", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:251e58b1-4224-4fd1-9efe-f53717bf650e", - "Expires" : "-1", - "x-ms-request-id" : "734d3f3b-491f-4c58-af02-a275220b469b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "f1e58371-e952-4db4-af3f-780add8bfe2e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "febffe80-a3a1-4730-853e-46ed527ebe99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3f79441d-0333-4ed9-b81d-096a5764c5d2", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12668,Microsoft.Compute/GetVMImageFromLocation30Min;73668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:3f79441d-0333-4ed9-b81d-096a5764c5d2", - "Expires" : "-1", - "x-ms-request-id" : "d9d9ed29-1bce-4371-824f-e814f7959de3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "febffe80-a3a1-4730-853e-46ed527ebe99", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad334ee3-c10a-4608-b54b-3f6e6b1f7f77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7827", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc603865-d166-47f5-8097-b509ff17322a", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15967,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:bc603865-d166-47f5-8097-b509ff17322a", - "Expires" : "-1", - "x-ms-request-id" : "3d69f4f7-2883-47a8-8972-65e713809d1e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "ad334ee3-c10a-4608-b54b-3f6e6b1f7f77", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce73d0e5-f3ec-429c-93c4-a04a194a99eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db1c970c-7cad-4a22-b641-2db06c9303fe", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12667,Microsoft.Compute/GetVMImageFromLocation30Min;73667", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:db1c970c-7cad-4a22-b641-2db06c9303fe", - "Expires" : "-1", - "x-ms-request-id" : "a3865c7d-bbb6-4ba4-8353-6fe71eb65652", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "ce73d0e5-f3ec-429c-93c4-a04a194a99eb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e133d85-be4a-4c47-b893-d28a6b317e83", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17ee0b5f-77dc-4c15-a98d-12a8be84076d", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12664,Microsoft.Compute/GetVMImageFromLocation30Min;73664", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:17ee0b5f-77dc-4c15-a98d-12a8be84076d", - "Expires" : "-1", - "x-ms-request-id" : "b307fcb0-901a-41e9-89a0-39acbe6555a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "3e133d85-be4a-4c47-b893-d28a6b317e83", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "826d6f0f-8d64-46ac-a978-6a7abe967922", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f173b5aa-7d02-4393-9d08-718e048f5bca", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12662,Microsoft.Compute/GetVMImageFromLocation30Min;73662", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:f173b5aa-7d02-4393-9d08-718e048f5bca", - "Expires" : "-1", - "x-ms-request-id" : "c7bcb6ef-cc9f-4a68-97ab-cac83f53b159", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "826d6f0f-8d64-46ac-a978-6a7abe967922", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2d50068-109c-4dc2-88f7-ed5a345e1f6a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38074463-f11b-4451-9088-42926ca8ffad", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12661,Microsoft.Compute/GetVMImageFromLocation30Min;73661", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:38074463-f11b-4451-9088-42926ca8ffad", - "Expires" : "-1", - "x-ms-request-id" : "4215735c-2a74-443d-a139-2300d9bf34dc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "c2d50068-109c-4dc2-88f7-ed5a345e1f6a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "403cb1f8-02e2-4ab6-ae34-8057d0116eff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8de77cf9-61a1-4ca7-8184-a14cb7b443ea", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12666,Microsoft.Compute/GetVMImageFromLocation30Min;73666", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:8de77cf9-61a1-4ca7-8184-a14cb7b443ea", - "Expires" : "-1", - "x-ms-request-id" : "d5b56268-31b6-473f-9125-7e76b71d518a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "403cb1f8-02e2-4ab6-ae34-8057d0116eff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9baea15d-759a-4dd3-befa-4c74ead53de2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31083560-bb0e-4b43-9ae3-1950fb2d9d2c", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12660,Microsoft.Compute/GetVMImageFromLocation30Min;73660", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:31083560-bb0e-4b43-9ae3-1950fb2d9d2c", - "Expires" : "-1", - "x-ms-request-id" : "37420c7c-6319-424b-b4ae-cc9b5bf09f9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "9baea15d-759a-4dd3-befa-4c74ead53de2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "05a1ecfd-fcf9-4467-962d-beb8dcff5134", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e45083be-12a4-48e2-afe6-a1135af8756e", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12658,Microsoft.Compute/GetVMImageFromLocation30Min;73658", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:e45083be-12a4-48e2-afe6-a1135af8756e", - "Expires" : "-1", - "x-ms-request-id" : "d0a1a94f-432b-4bd9-8d0f-7e8dda57f8e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "05a1ecfd-fcf9-4467-962d-beb8dcff5134", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3037ff7b-2624-4c75-b020-624000465da6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "703cf3f8-edcb-425b-8f6b-eece7d60c73f", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12659,Microsoft.Compute/GetVMImageFromLocation30Min;73659", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:703cf3f8-edcb-425b-8f6b-eece7d60c73f", - "Expires" : "-1", - "x-ms-request-id" : "f2102228-76b5-4532-9622-f521e439f292", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "3037ff7b-2624-4c75-b020-624000465da6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aee3310-d275-4aa6-83be-a08d0132c4cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4341f0b0-6a82-4521-af41-8b8b80932ebb", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12657,Microsoft.Compute/GetVMImageFromLocation30Min;73657", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:4341f0b0-6a82-4521-af41-8b8b80932ebb", - "Expires" : "-1", - "x-ms-request-id" : "9e89fe31-2278-4cea-b7d9-709d0c0dcb1c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "6aee3310-d275-4aa6-83be-a08d0132c4cd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e663a341-8156-4b42-9303-172fafb86946", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ad3612e-2cbf-4e5f-94e9-40dd0a4a15ae", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12655,Microsoft.Compute/GetVMImageFromLocation30Min;73655", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:7ad3612e-2cbf-4e5f-94e9-40dd0a4a15ae", - "Expires" : "-1", - "x-ms-request-id" : "69720d00-d58e-4081-869a-4fb092af4a12", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "e663a341-8156-4b42-9303-172fafb86946", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2154382f-0034-46a1-939c-893414be05aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "b7e9c92f-3a85-4e8f-b914-7eda3dc58fa6", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12656,Microsoft.Compute/GetVMImageFromLocation30Min;73656", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:b7e9c92f-3a85-4e8f-b914-7eda3dc58fa6", - "Expires" : "-1", - "x-ms-request-id" : "7c744044-2c1c-4356-b745-c37a1622b14f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "2154382f-0034-46a1-939c-893414be05aa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "047549f3-182d-4ef5-9b2c-98d68586a2c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6d44c9a-9fe4-4190-a0b0-e7b9a4b4a921", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12654,Microsoft.Compute/GetVMImageFromLocation30Min;73654", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:b6d44c9a-9fe4-4190-a0b0-e7b9a4b4a921", - "Expires" : "-1", - "x-ms-request-id" : "945d47ca-d5a3-44f4-99e5-1354c6170633", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "047549f3-182d-4ef5-9b2c-98d68586a2c0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6da21f93-d622-4662-9412-1e055dec1878", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05d31436-13d9-4c8b-912f-3a508c52b314", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12653,Microsoft.Compute/GetVMImageFromLocation30Min;73653", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:05d31436-13d9-4c8b-912f-3a508c52b314", - "Expires" : "-1", - "x-ms-request-id" : "85ce5e83-7a30-4b25-b5cf-fcfb79c0d722", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "6da21f93-d622-4662-9412-1e055dec1878", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a509ad36-3022-49d1-895e-15b94e5d2e11", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "731a83ca-7eae-42a7-97f6-75856c776048", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12650,Microsoft.Compute/GetVMImageFromLocation30Min;73650", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:731a83ca-7eae-42a7-97f6-75856c776048", - "Expires" : "-1", - "x-ms-request-id" : "d932d41d-a43e-486c-be04-538233d46ea6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "a509ad36-3022-49d1-895e-15b94e5d2e11", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69da4a0a-1e38-4996-9f8c-fac298302e8e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a46a9f4c-10e3-4ed5-b1c7-bfd89777a3e6", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12646,Microsoft.Compute/GetVMImageFromLocation30Min;73646", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:a46a9f4c-10e3-4ed5-b1c7-bfd89777a3e6", - "Expires" : "-1", - "x-ms-request-id" : "e4d3282e-64b8-4c43-8bb0-bb6f186565bd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "69da4a0a-1e38-4996-9f8c-fac298302e8e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b66717ab-d2be-478b-8f99-807da8c621a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "9b7d2200-87c7-46cc-8d81-1c9054faa7af", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12645,Microsoft.Compute/GetVMImageFromLocation30Min;73645", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:9b7d2200-87c7-46cc-8d81-1c9054faa7af", - "Expires" : "-1", - "x-ms-request-id" : "3773792b-c07f-45bc-b7aa-80ad7092645c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "b66717ab-d2be-478b-8f99-807da8c621a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c27447f-bb31-4427-894f-1f4e9ceabb06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4688d471-7c10-4bb4-869c-ed455e955c66", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12647,Microsoft.Compute/GetVMImageFromLocation30Min;73647", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:4688d471-7c10-4bb4-869c-ed455e955c66", - "Expires" : "-1", - "x-ms-request-id" : "2c6306f7-135c-4cdf-bf2f-139ebc98a3aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "6c27447f-bb31-4427-894f-1f4e9ceabb06", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcb3904e-da3c-432a-815c-6c3553f15ece", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2681c17f-d02c-4490-a7b3-b4c8c6ea8305", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12651,Microsoft.Compute/GetVMImageFromLocation30Min;73651", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:2681c17f-d02c-4490-a7b3-b4c8c6ea8305", - "Expires" : "-1", - "x-ms-request-id" : "6d767645-a9f9-4c59-8ab7-e88584f2ec15", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "fcb3904e-da3c-432a-815c-6c3553f15ece", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "419d1442-28f6-4f60-baa3-3c748da52833", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b784defd-b10e-4c31-8c21-abd2e7b3f6ea", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12649,Microsoft.Compute/GetVMImageFromLocation30Min;73649", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:b784defd-b10e-4c31-8c21-abd2e7b3f6ea", - "Expires" : "-1", - "x-ms-request-id" : "2895d354-f770-4616-8da8-63a6161298f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "419d1442-28f6-4f60-baa3-3c748da52833", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1842c7d3-1d3c-4f86-bcbb-06573eb5fcc4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "bf99c620-b2c2-4252-bfa0-519c79591d41", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12652,Microsoft.Compute/GetVMImageFromLocation30Min;73652", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:bf99c620-b2c2-4252-bfa0-519c79591d41", - "Expires" : "-1", - "x-ms-request-id" : "3366690b-542a-4474-b6f2-48d1231794d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "1842c7d3-1d3c-4f86-bcbb-06573eb5fcc4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "858c23db-8f71-436d-bcd8-3afb2abbb495", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ca4dd90-7973-4c53-9034-b35a1adfd0e7", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12665,Microsoft.Compute/GetVMImageFromLocation30Min;73665", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:8ca4dd90-7973-4c53-9034-b35a1adfd0e7", - "Expires" : "-1", - "x-ms-request-id" : "3a2fa750-5339-4371-a866-8e897d33ded1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "858c23db-8f71-436d-bcd8-3afb2abbb495", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1305f38a-c952-4950-a77b-d421c87d10fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "caf106af-0b57-4676-8477-85e04c4da3bd", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12648,Microsoft.Compute/GetVMImageFromLocation30Min;73648", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:caf106af-0b57-4676-8477-85e04c4da3bd", - "Expires" : "-1", - "x-ms-request-id" : "4e588470-8cc3-4cd2-9df9-cbbf5ff40817", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "1305f38a-c952-4950-a77b-d421c87d10fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cafd866-e2ea-446f-9fdf-0cab534c75c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02448592-8c4c-4b78-9d58-d6c7e404f981", - "Date" : "Tue, 24 May 2022 13:00:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12663,Microsoft.Compute/GetVMImageFromLocation30Min;73663", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:02448592-8c4c-4b78-9d58-d6c7e404f981", - "Expires" : "-1", - "x-ms-request-id" : "04142f65-8550-4d3d-a8f1-70a646841720", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "2cafd866-e2ea-446f-9fdf-0cab534c75c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-att/skus/pro-20_04-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbe27a66-355d-4fdf-bcdb-5af067b5ddfd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e6da095-0cc3-43cd-bf99-6adf1aa2f06e", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12644,Microsoft.Compute/GetVMImageFromLocation30Min;73644", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130041Z:3e6da095-0cc3-43cd-bf99-6adf1aa2f06e", - "Expires" : "-1", - "x-ms-request-id" : "42b6efb2-ac4d-4ad5-8b97-da6197590a69", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-att\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-att/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "cbe27a66-355d-4fdf-bcdb-5af067b5ddfd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40584268-cea2-402a-b938-fcc3ee0e9453", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1651", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f3608bf-bf6b-415b-b6de-3a65874c44f3", - "Date" : "Tue, 24 May 2022 13:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9988,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:0f3608bf-bf6b-415b-b6de-3a65874c44f3", - "Expires" : "-1", - "x-ms-request-id" : "35b8701f-4784-42fb-99b3-c0a6a896433b", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "40584268-cea2-402a-b938-fcc3ee0e9453", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc0b640f-c84d-4ee1-a10f-fe0f33d168f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "320", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ee5ac8a-0056-4b6e-9ebf-c2306aa432bf", - "Date" : "Tue, 24 May 2022 13:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15966,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:4ee5ac8a-0056-4b6e-9ebf-c2306aa432bf", - "Expires" : "-1", - "x-ms-request-id" : "4f06be8f-5796-476c-8c3b-28a0df8ad59a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "dc0b640f-c84d-4ee1-a10f-fe0f33d168f8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a96a5871-f173-4df4-b84a-a1e16bd033ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1050", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e767cc3-32d1-4e3d-9518-7dfe75f73e69", - "Date" : "Tue, 24 May 2022 13:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12643,Microsoft.Compute/GetVMImageFromLocation30Min;73643", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:9e767cc3-32d1-4e3d-9518-7dfe75f73e69", - "Expires" : "-1", - "x-ms-request-id" : "ed384566-e5bc-4cc0-ac94-2367af3406ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-cfx\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "a96a5871-f173-4df4-b84a-a1e16bd033ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "403cffe6-ba3c-4fb1-a4f3-8706726b6b87", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "325", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c9e3583-1a5e-4aac-95ca-8a612961c798", - "Date" : "Tue, 24 May 2022 13:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15965,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130042Z:1c9e3583-1a5e-4aac-95ca-8a612961c798", - "Expires" : "-1", - "x-ms-request-id" : "e0f16697-881c-4789-89e7-7df4ecadd58b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "403cffe6-ba3c-4fb1-a4f3-8706726b6b87", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75ce5c8b-cea9-420b-a01d-3632abfae70a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1047", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26301199-0242-439d-baab-7d68cc2d44af", - "Date" : "Tue, 24 May 2022 13:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12642,Microsoft.Compute/GetVMImageFromLocation30Min;73642", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130043Z:26301199-0242-439d-baab-7d68cc2d44af", - "Expires" : "-1", - "x-ms-request-id" : "1a867861-7150-4da4-89a8-5c353705d1b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-cfx\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "75ce5c8b-cea9-420b-a01d-3632abfae70a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d71c655-1c38-4346-bbbc-c4283865c09c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "320", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fc882df-6866-43ae-8c58-20e710f24948", - "Date" : "Tue, 24 May 2022 13:00:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15964,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130043Z:2fc882df-6866-43ae-8c58-20e710f24948", - "Expires" : "-1", - "x-ms-request-id" : "4a184db8-1696-4b10-b3c9-d96856a238f3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "9d71c655-1c38-4346-bbbc-c4283865c09c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3e72935-303f-4d6c-ae96-4f53a9c3f724", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1050", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "721146e1-ab95-41ef-a258-aad2e17208d3", - "Date" : "Tue, 24 May 2022 13:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12641,Microsoft.Compute/GetVMImageFromLocation30Min;73641", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130043Z:721146e1-ab95-41ef-a258-aad2e17208d3", - "Expires" : "-1", - "x-ms-request-id" : "3a02c57d-3ab3-44b9-a09c-f836426003ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-cfx\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "b3e72935-303f-4d6c-ae96-4f53a9c3f724", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4f6d98c-2e6a-42f2-8486-770396d31c76", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "325", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4f29dc4-a59a-411d-af3a-6e06f789549f", - "Date" : "Tue, 24 May 2022 13:00:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15963,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130044Z:e4f29dc4-a59a-411d-af3a-6e06f789549f", - "Expires" : "-1", - "x-ms-request-id" : "bdbdc8ef-e69e-4ba3-94ad-f941ed46f984", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "f4f6d98c-2e6a-42f2-8486-770396d31c76", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-cfx/skus/20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a99374d-a296-4850-bced-47b4c565436f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1047", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3649cffb-7fc5-4abf-9ddc-137122f44ecb", - "Date" : "Tue, 24 May 2022 13:00:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12640,Microsoft.Compute/GetVMImageFromLocation30Min;73640", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130044Z:3649cffb-7fc5-4abf-9ddc-137122f44ecb", - "Expires" : "-1", - "x-ms-request-id" : "75e7ae95-0f18-4392-90b7-64949c52e7ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-cfx\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-cfx/Skus/20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "0a99374d-a296-4850-bced-47b4c565436f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "78cdae97-a295-4885-b169-689169b48036", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2523", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "411e79ff-5b8b-480d-bbce-2c73d7d7d99a", - "Date" : "Tue, 24 May 2022 13:00:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9987,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130044Z:411e79ff-5b8b-480d-bbce-2c73d7d7d99a", - "Expires" : "-1", - "x-ms-request-id" : "76dc5d3e-f25f-4e16-bcdf-da0a11eda460", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "78cdae97-a295-4885-b169-689169b48036", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d37b8f7a-926e-485f-b7df-df3870ef95fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1608", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92b47ade-8a1c-4e0e-b7ee-f0bfe5fc9817", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15962,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130044Z:92b47ade-8a1c-4e0e-b7ee-f0bfe5fc9817", - "Expires" : "-1", - "x-ms-request-id" : "8149b61c-f73d-44ef-8d5a-69d626d8b681", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "d37b8f7a-926e-485f-b7df-df3870ef95fb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d867427-7324-4037-a161-28e7d38bc8d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a59dcab0-aa9c-42d4-aa5f-40b6cf67bc42", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12638,Microsoft.Compute/GetVMImageFromLocation30Min;73638", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:a59dcab0-aa9c-42d4-aa5f-40b6cf67bc42", - "Expires" : "-1", - "x-ms-request-id" : "1bfbde8d-44bc-42ba-9db9-afb6a817fb4e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "4d867427-7324-4037-a161-28e7d38bc8d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fdd908d-c60e-4229-af61-531bd91923e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "128575e3-166c-4377-9baa-23b969fde477", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12639,Microsoft.Compute/GetVMImageFromLocation30Min;73639", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:128575e3-166c-4377-9baa-23b969fde477", - "Expires" : "-1", - "x-ms-request-id" : "b58a1fc0-330e-4474-a7fd-9a24de5ae460", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "6fdd908d-c60e-4229-af61-531bd91923e4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f97707e6-cba0-4aab-8db8-9b02124362cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44229161-8c2d-4c37-b91f-ce2276b8915c", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12637,Microsoft.Compute/GetVMImageFromLocation30Min;73637", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:44229161-8c2d-4c37-b91f-ce2276b8915c", - "Expires" : "-1", - "x-ms-request-id" : "4cf63776-409b-41d2-8b89-a090b4d07322", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "f97707e6-cba0-4aab-8db8-9b02124362cd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5be29dc1-604e-4436-abab-a223bf77a688", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d49f58e-0de5-408b-a29f-a78f228ddcca", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12636,Microsoft.Compute/GetVMImageFromLocation30Min;73636", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:1d49f58e-0de5-408b-a29f-a78f228ddcca", - "Expires" : "-1", - "x-ms-request-id" : "c60b6179-e927-4ba0-ac25-3e8c4e770340", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "5be29dc1-604e-4436-abab-a223bf77a688", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "228829b9-47ec-47ca-82ab-e9689887b206", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f83d1e7-790a-46ea-a828-d038e4229f1b", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12635,Microsoft.Compute/GetVMImageFromLocation30Min;73635", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:5f83d1e7-790a-46ea-a828-d038e4229f1b", - "Expires" : "-1", - "x-ms-request-id" : "b01163d3-7e08-427d-a0c8-61db2740f06d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "228829b9-47ec-47ca-82ab-e9689887b206", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39380816-063d-4e8f-a9e3-78e4ef331821", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1633", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0c29fd8-5b5e-4c2e-98b9-a907a9298806", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15961,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:d0c29fd8-5b5e-4c2e-98b9-a907a9298806", - "Expires" : "-1", - "x-ms-request-id" : "1fd49290-f901-4025-be4e-a3b51a960cfb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "39380816-063d-4e8f-a9e3-78e4ef331821", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e090d1b-ac3a-47dc-b475-a8c753eac312", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12a06699-e08d-425b-affa-2c6b886bc7fc", - "Date" : "Tue, 24 May 2022 13:00:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12634,Microsoft.Compute/GetVMImageFromLocation30Min;73634", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:12a06699-e08d-425b-affa-2c6b886bc7fc", - "Expires" : "-1", - "x-ms-request-id" : "8222cce8-a16f-4afb-b290-eb25417b9ad3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "8e090d1b-ac3a-47dc-b475-a8c753eac312", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0a928c1-fd27-4e9c-bd43-21d341ee5784", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1fe422fe-8170-47ee-8760-41ff3cc624fd", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12633,Microsoft.Compute/GetVMImageFromLocation30Min;73633", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:1fe422fe-8170-47ee-8760-41ff3cc624fd", - "Expires" : "-1", - "x-ms-request-id" : "b51cfaea-998e-47a7-ade1-56f435d2a833", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "d0a928c1-fd27-4e9c-bd43-21d341ee5784", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b11abbc-d2b2-4780-921b-c367174d47b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "348607fc-a6cd-4435-a7fa-49bd5ff26570", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12632,Microsoft.Compute/GetVMImageFromLocation30Min;73632", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:348607fc-a6cd-4435-a7fa-49bd5ff26570", - "Expires" : "-1", - "x-ms-request-id" : "47631933-f760-4ffd-8f6b-8f38e256c9b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "2b11abbc-d2b2-4780-921b-c367174d47b3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e313e1e9-c7ee-408e-aa66-2d79139348fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d23eddac-aba0-443a-ab13-319af6bba58d", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12630,Microsoft.Compute/GetVMImageFromLocation30Min;73630", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:d23eddac-aba0-443a-ab13-319af6bba58d", - "Expires" : "-1", - "x-ms-request-id" : "93ddb12f-4988-4caf-9e89-9a2430d0f799", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "e313e1e9-c7ee-408e-aa66-2d79139348fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f9da7c2-d3ce-4ef4-ac53-1142c701f599", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3640cdab-f31e-459c-860d-4a07ea338353", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12631,Microsoft.Compute/GetVMImageFromLocation30Min;73631", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130045Z:3640cdab-f31e-459c-860d-4a07ea338353", - "Expires" : "-1", - "x-ms-request-id" : "1b8705db-5244-4ba9-b39d-da1625c0027c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "7f9da7c2-d3ce-4ef4-ac53-1142c701f599", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a1c9957-a5bf-4d10-833d-02ba07acf3e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5460", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9659f389-f48c-4b72-876d-dbde5c2e7ea0", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15960,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:9659f389-f48c-4b72-876d-dbde5c2e7ea0", - "Expires" : "-1", - "x-ms-request-id" : "59d78806-75c3-4067-9acd-60b8d2991824", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "6a1c9957-a5bf-4d10-833d-02ba07acf3e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42827493-7ad8-419c-bcd5-46582819a427", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75d5aa69-df2f-490d-bf3d-4aaddaeaae64", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12627,Microsoft.Compute/GetVMImageFromLocation30Min;73627", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:75d5aa69-df2f-490d-bf3d-4aaddaeaae64", - "Expires" : "-1", - "x-ms-request-id" : "fc5fba1f-c23d-452c-9ee9-83d9d094b51d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "42827493-7ad8-419c-bcd5-46582819a427", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9e70cf2-68e2-4e3c-b319-6a06cfbf42ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2751eff-9f0d-45bb-949d-2bc9b3120c70", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12626,Microsoft.Compute/GetVMImageFromLocation30Min;73626", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:e2751eff-9f0d-45bb-949d-2bc9b3120c70", - "Expires" : "-1", - "x-ms-request-id" : "c03f0398-f91f-4f04-94cc-83496ed60e59", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "b9e70cf2-68e2-4e3c-b319-6a06cfbf42ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bdbcc17-db0d-49d0-a5fb-cebf9db19228", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13cbcc1c-9c14-44e9-974f-614769ca9d62", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12624,Microsoft.Compute/GetVMImageFromLocation30Min;73624", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:13cbcc1c-9c14-44e9-974f-614769ca9d62", - "Expires" : "-1", - "x-ms-request-id" : "efce2268-69d0-4c8d-9829-c85c21a1c633", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "7bdbcc17-db0d-49d0-a5fb-cebf9db19228", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34c30248-88a9-41b1-b735-a02d09df8087", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d64dc23b-822f-4fc9-abc9-c684d12e24a3", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12629,Microsoft.Compute/GetVMImageFromLocation30Min;73629", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:d64dc23b-822f-4fc9-abc9-c684d12e24a3", - "Expires" : "-1", - "x-ms-request-id" : "8e9285bf-ff8d-4bb4-825d-aaf8ebdc3588", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "34c30248-88a9-41b1-b735-a02d09df8087", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "647ad857-57cb-4f5b-94b5-83d979d5ae38", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1d2ab90-5cc2-46db-ab88-7585f020c1ba", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12620,Microsoft.Compute/GetVMImageFromLocation30Min;73620", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:f1d2ab90-5cc2-46db-ab88-7585f020c1ba", - "Expires" : "-1", - "x-ms-request-id" : "9e931c34-8c5f-447d-ba6b-58ba9130876e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "647ad857-57cb-4f5b-94b5-83d979d5ae38", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bdf0407-c51a-41d0-9ddf-5f321aa025ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b987bf99-8334-4e1e-a171-e0bf8c37280f", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12622,Microsoft.Compute/GetVMImageFromLocation30Min;73622", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:b987bf99-8334-4e1e-a171-e0bf8c37280f", - "Expires" : "-1", - "x-ms-request-id" : "56a94b66-ba02-4038-bfb7-216b6c3eb5d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "8bdf0407-c51a-41d0-9ddf-5f321aa025ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94c7effd-e3c1-48eb-ba2f-c18d59cb9ea2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0747f988-ce4e-47ee-98c0-df843becfb59", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12621,Microsoft.Compute/GetVMImageFromLocation30Min;73621", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:0747f988-ce4e-47ee-98c0-df843becfb59", - "Expires" : "-1", - "x-ms-request-id" : "67473b15-6983-4486-9762-de6749fb05e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "94c7effd-e3c1-48eb-ba2f-c18d59cb9ea2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "619f0b1b-3b16-4e91-afd9-4104b1337e2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6e6b9df-3ed4-4bfb-989e-b9fb6649b06f", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12623,Microsoft.Compute/GetVMImageFromLocation30Min;73623", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:c6e6b9df-3ed4-4bfb-989e-b9fb6649b06f", - "Expires" : "-1", - "x-ms-request-id" : "30a50f75-0e15-4eb3-9349-3b51107e7b58", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "619f0b1b-3b16-4e91-afd9-4104b1337e2a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f351c998-eecf-4339-95ed-e147f4a4eb09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24679739-d196-4262-a905-051f3e278ca0", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12616,Microsoft.Compute/GetVMImageFromLocation30Min;73616", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:24679739-d196-4262-a905-051f3e278ca0", - "Expires" : "-1", - "x-ms-request-id" : "1ccab416-be8b-4885-b7f4-c402ec22538f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "f351c998-eecf-4339-95ed-e147f4a4eb09", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb3f51ed-6dce-4d44-b097-466dc8bf4af1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8111bc3-0e7f-45d9-8f8d-1c24a6bb01d9", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12617,Microsoft.Compute/GetVMImageFromLocation30Min;73617", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:a8111bc3-0e7f-45d9-8f8d-1c24a6bb01d9", - "Expires" : "-1", - "x-ms-request-id" : "42166a05-2cdc-4e24-be4e-e0ddd04f3e13", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "bb3f51ed-6dce-4d44-b097-466dc8bf4af1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62ce7c75-c3a9-4405-b298-11a99bc24454", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06adfe96-59c9-4e33-94a5-071ca4394804", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12618,Microsoft.Compute/GetVMImageFromLocation30Min;73618", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:06adfe96-59c9-4e33-94a5-071ca4394804", - "Expires" : "-1", - "x-ms-request-id" : "d9e322b3-ac53-445f-bfb7-8e7900f8c068", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "62ce7c75-c3a9-4405-b298-11a99bc24454", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48a167f6-2376-4bd7-b882-2d659fa0e5d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3eb50527-526a-453d-b4c7-ce28631e7cdc", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12628,Microsoft.Compute/GetVMImageFromLocation30Min;73628", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:3eb50527-526a-453d-b4c7-ce28631e7cdc", - "Expires" : "-1", - "x-ms-request-id" : "587464a9-6631-48c1-a087-023ff1e4df0d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "48a167f6-2376-4bd7-b882-2d659fa0e5d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb868849-f3c3-4ce8-8733-870f2a7c3086", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "416a294e-b032-4409-a6c2-4d0123ceb66f", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12619,Microsoft.Compute/GetVMImageFromLocation30Min;73619", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:416a294e-b032-4409-a6c2-4d0123ceb66f", - "Expires" : "-1", - "x-ms-request-id" : "fb44a6ea-67ae-4a51-82d6-c3506bd0bcb6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "cb868849-f3c3-4ce8-8733-870f2a7c3086", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "954fb8dd-e392-4ddb-8d3a-aaec5d536901", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26d2c2f1-847a-4ab0-819b-a2f4a74a3630", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12614,Microsoft.Compute/GetVMImageFromLocation30Min;73614", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:26d2c2f1-847a-4ab0-819b-a2f4a74a3630", - "Expires" : "-1", - "x-ms-request-id" : "0e8e0935-92ce-4c29-bae2-b28ef2501c9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "954fb8dd-e392-4ddb-8d3a-aaec5d536901", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0180edc2-b384-41b2-93f4-2209e244e729", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93a5d84a-9af0-4dad-a4e3-3fb116540b49", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12615,Microsoft.Compute/GetVMImageFromLocation30Min;73615", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:93a5d84a-9af0-4dad-a4e3-3fb116540b49", - "Expires" : "-1", - "x-ms-request-id" : "b681eff0-fcd0-4b2b-8687-731bbfba1a50", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "0180edc2-b384-41b2-93f4-2209e244e729", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e699656-0bb7-4262-b97e-2e21d36d53b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "385f240b-759b-4f85-82a2-62e886fcf672", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12613,Microsoft.Compute/GetVMImageFromLocation30Min;73613", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:385f240b-759b-4f85-82a2-62e886fcf672", - "Expires" : "-1", - "x-ms-request-id" : "bc647c46-4eb8-4900-9fa9-c4a258de30d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "9e699656-0bb7-4262-b97e-2e21d36d53b5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d0613fa-e53b-418b-8e98-1a44ad40db5d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86b07795-7fe8-4bb4-a28e-d368eb90343a", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12625,Microsoft.Compute/GetVMImageFromLocation30Min;73625", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:86b07795-7fe8-4bb4-a28e-d368eb90343a", - "Expires" : "-1", - "x-ms-request-id" : "cf474ace-5da9-482b-8a86-b4c1e27af709", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "8d0613fa-e53b-418b-8e98-1a44ad40db5d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41c1f3e0-28e9-402b-8a3e-aa04be6b482c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5545", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "922cf253-9062-489f-b661-b0b935e50183", - "Date" : "Tue, 24 May 2022 13:00:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15959,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:922cf253-9062-489f-b661-b0b935e50183", - "Expires" : "-1", - "x-ms-request-id" : "a7069ea2-f0a5-4095-85a5-794c39575e69", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "41c1f3e0-28e9-402b-8a3e-aa04be6b482c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8d3c989-f645-4494-916d-c337a13fda44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e324f720-de98-44b2-997b-393f8dfd291f", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12612,Microsoft.Compute/GetVMImageFromLocation30Min;73612", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:e324f720-de98-44b2-997b-393f8dfd291f", - "Expires" : "-1", - "x-ms-request-id" : "9a1a328c-2af9-47ed-b19b-8619f293f196", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "a8d3c989-f645-4494-916d-c337a13fda44", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb767677-f04b-4360-bf77-05878437673e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78d26cba-77bc-4453-bc16-7fccbc1240bc", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12609,Microsoft.Compute/GetVMImageFromLocation30Min;73609", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:78d26cba-77bc-4453-bc16-7fccbc1240bc", - "Expires" : "-1", - "x-ms-request-id" : "dc1ddde6-cef0-41db-bf7d-8c7031ce2e94", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "cb767677-f04b-4360-bf77-05878437673e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d4dd771-b48c-49cd-b34c-6dd31bce2dd5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0e64bb0-e239-4f6a-9563-4f0ba7724a28", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12607,Microsoft.Compute/GetVMImageFromLocation30Min;73607", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:a0e64bb0-e239-4f6a-9563-4f0ba7724a28", - "Expires" : "-1", - "x-ms-request-id" : "702a46e7-3d42-4532-833e-91a5d609ec36", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "0d4dd771-b48c-49cd-b34c-6dd31bce2dd5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00c1212d-9305-4922-8d26-a5c17669d6cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86853c53-87b7-40d9-9784-6bfabda6da84", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12611,Microsoft.Compute/GetVMImageFromLocation30Min;73611", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:86853c53-87b7-40d9-9784-6bfabda6da84", - "Expires" : "-1", - "x-ms-request-id" : "48453b48-2dc3-49ed-8159-8b665b6b6555", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "00c1212d-9305-4922-8d26-a5c17669d6cf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12d7dd8d-a94e-44ca-a7aa-d77e7ceb6b11", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b014a564-e9d6-451e-82d1-913d525c16e1", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12610,Microsoft.Compute/GetVMImageFromLocation30Min;73610", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:b014a564-e9d6-451e-82d1-913d525c16e1", - "Expires" : "-1", - "x-ms-request-id" : "3e399e00-95d8-4ec2-a32e-7b5bce9e5a52", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "12d7dd8d-a94e-44ca-a7aa-d77e7ceb6b11", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e30ee42d-7230-4ceb-b067-ae111af60892", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e59fcf27-3d5d-4f90-a62b-01ff1cd3c62a", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12603,Microsoft.Compute/GetVMImageFromLocation30Min;73603", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:e59fcf27-3d5d-4f90-a62b-01ff1cd3c62a", - "Expires" : "-1", - "x-ms-request-id" : "a99746d2-6c72-43d1-8946-43b681169996", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "e30ee42d-7230-4ceb-b067-ae111af60892", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96a39cf3-3611-4be5-8f75-6c986b84a74d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bcfd0207-978f-40b6-83d9-8b1e251f4837", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12604,Microsoft.Compute/GetVMImageFromLocation30Min;73604", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:bcfd0207-978f-40b6-83d9-8b1e251f4837", - "Expires" : "-1", - "x-ms-request-id" : "6fa13286-ecaf-4cb6-ab2c-e0489083caa1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "96a39cf3-3611-4be5-8f75-6c986b84a74d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e4f19b3-a45b-4420-b426-da6d0cef3c9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29a33627-16ed-4ac1-8834-fb3a15f00b19", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12601,Microsoft.Compute/GetVMImageFromLocation30Min;73601", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:29a33627-16ed-4ac1-8834-fb3a15f00b19", - "Expires" : "-1", - "x-ms-request-id" : "7fa3dcfc-cada-41c4-b7ff-09bef3074d18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "2e4f19b3-a45b-4420-b426-da6d0cef3c9d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e95428b-40d3-496a-86d6-220589ffe9c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87ff7239-5b32-4480-90b9-a6a2354872ce", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12599,Microsoft.Compute/GetVMImageFromLocation30Min;73599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:87ff7239-5b32-4480-90b9-a6a2354872ce", - "Expires" : "-1", - "x-ms-request-id" : "951535a0-4b7e-4045-95b1-32d14973b2d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "7e95428b-40d3-496a-86d6-220589ffe9c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93bf183d-cb0a-4d17-b312-171af48dd2ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cc060fe6-b8cc-4c97-978c-9280773d8c0b", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12608,Microsoft.Compute/GetVMImageFromLocation30Min;73608", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:cc060fe6-b8cc-4c97-978c-9280773d8c0b", - "Expires" : "-1", - "x-ms-request-id" : "44ec5d1b-c921-486d-a9b0-5a6d04728587", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "93bf183d-cb0a-4d17-b312-171af48dd2ed", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b754a8ab-8684-4191-b6f2-bb0ccc52a447", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d0c0086-91bd-4854-9494-95c495847b3b", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12600,Microsoft.Compute/GetVMImageFromLocation30Min;73600", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:0d0c0086-91bd-4854-9494-95c495847b3b", - "Expires" : "-1", - "x-ms-request-id" : "fc87e086-ac6c-426f-81ce-a991f0292345", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "b754a8ab-8684-4191-b6f2-bb0ccc52a447", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6296d5c9-eb4e-4a11-bb94-b6334b4da50e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83962df1-efba-4aa6-96bf-3beacff157f9", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12602,Microsoft.Compute/GetVMImageFromLocation30Min;73602", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:83962df1-efba-4aa6-96bf-3beacff157f9", - "Expires" : "-1", - "x-ms-request-id" : "6086a776-a932-4d2e-ac19-146bdc019abb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "6296d5c9-eb4e-4a11-bb94-b6334b4da50e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "510bd44c-48c4-4864-aebb-ec1352a8c577", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4857510-d62f-4260-a0ed-240c1685a8f3", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12605,Microsoft.Compute/GetVMImageFromLocation30Min;73605", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:a4857510-d62f-4260-a0ed-240c1685a8f3", - "Expires" : "-1", - "x-ms-request-id" : "b5f2106b-3910-43a0-b43d-0aa26dabbc1a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "510bd44c-48c4-4864-aebb-ec1352a8c577", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6da035b-8283-4389-9657-6a55ea71a489", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f501251-9017-4567-adce-f0168e87b545", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12606,Microsoft.Compute/GetVMImageFromLocation30Min;73606", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130046Z:2f501251-9017-4567-adce-f0168e87b545", - "Expires" : "-1", - "x-ms-request-id" : "f4b41015-3b3e-4917-a198-53bf7e7e5ff2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "c6da035b-8283-4389-9657-6a55ea71a489", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee1a141a-5c01-409d-9094-91e17359b67b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "014e2287-7458-4f85-8050-347f6a730b27", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12598,Microsoft.Compute/GetVMImageFromLocation30Min;73598", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:014e2287-7458-4f85-8050-347f6a730b27", - "Expires" : "-1", - "x-ms-request-id" : "cdf1519e-29cd-49cd-9710-b7c7a9ef4be9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "ee1a141a-5c01-409d-9094-91e17359b67b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cba2a1f6-4b2a-4abd-80be-6ea673373c67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f936a52a-ceff-4bd3-aeb6-42c28dbc77ed", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12597,Microsoft.Compute/GetVMImageFromLocation30Min;73597", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:f936a52a-ceff-4bd3-aeb6-42c28dbc77ed", - "Expires" : "-1", - "x-ms-request-id" : "cd961cff-257b-47cf-b591-7efcc1b2f89c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "cba2a1f6-4b2a-4abd-80be-6ea673373c67", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "782ac57d-77f5-43d2-b7a0-7ac74a254b42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbbd95d8-cba0-4f0c-a0d7-b6d7f10a3ca7", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12596,Microsoft.Compute/GetVMImageFromLocation30Min;73596", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:cbbd95d8-cba0-4f0c-a0d7-b6d7f10a3ca7", - "Expires" : "-1", - "x-ms-request-id" : "8361b77b-0911-4f8d-b5c4-58f9c15670be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "782ac57d-77f5-43d2-b7a0-7ac74a254b42", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3c04b75-6c7e-4688-a794-afb6c51551df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3661766a-1d7f-4b89-9ead-f2a2abd48efb", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15958,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:3661766a-1d7f-4b89-9ead-f2a2abd48efb", - "Expires" : "-1", - "x-ms-request-id" : "c02a8741-28f5-4d6f-b7bf-58ed77c8c837", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "a3c04b75-6c7e-4688-a794-afb6c51551df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81b6bfb8-70d0-4ea6-a43b-7898eb8a9f67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a549ad58-872c-4d26-a8a2-3f5a1a0a431a", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12595,Microsoft.Compute/GetVMImageFromLocation30Min;73595", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:a549ad58-872c-4d26-a8a2-3f5a1a0a431a", - "Expires" : "-1", - "x-ms-request-id" : "75b97c27-b9a7-40e6-ac1d-c6bc56c1c44e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "81b6bfb8-70d0-4ea6-a43b-7898eb8a9f67", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2ca3aaa-b0f8-44f8-bc37-54625716b6c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ddf78848-acbc-449d-8584-765c5000d7f5", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12594,Microsoft.Compute/GetVMImageFromLocation30Min;73594", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:ddf78848-acbc-449d-8584-765c5000d7f5", - "Expires" : "-1", - "x-ms-request-id" : "9a1d70b9-156b-42ac-b362-7759adb564fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "d2ca3aaa-b0f8-44f8-bc37-54625716b6c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85c56bd0-236e-45ca-b522-de30fb2587fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ddd0f98-b3c2-4d25-8b90-ac7ff9a882a0", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12592,Microsoft.Compute/GetVMImageFromLocation30Min;73592", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:4ddd0f98-b3c2-4d25-8b90-ac7ff9a882a0", - "Expires" : "-1", - "x-ms-request-id" : "fce3e26a-b27a-4e91-ad39-8b32a5cd5d99", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "85c56bd0-236e-45ca-b522-de30fb2587fb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3682b599-3fa2-436b-8330-d336ef40370d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "16c9b0de-7bb6-4cc9-a24e-be86f4d484e4", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12593,Microsoft.Compute/GetVMImageFromLocation30Min;73593", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:16c9b0de-7bb6-4cc9-a24e-be86f4d484e4", - "Expires" : "-1", - "x-ms-request-id" : "ca397bc0-009e-41c2-a4a4-39601f997e16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "3682b599-3fa2-436b-8330-d336ef40370d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85eb657e-f0be-473e-b754-946ea5689875", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a66a7a96-9bbb-46c5-be8d-38861555e325", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12590,Microsoft.Compute/GetVMImageFromLocation30Min;73590", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:a66a7a96-9bbb-46c5-be8d-38861555e325", - "Expires" : "-1", - "x-ms-request-id" : "6cddf7ca-4c6f-443e-8cd7-1032c17c880d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "85eb657e-f0be-473e-b754-946ea5689875", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6922b9d4-002f-469f-8d56-a375906050f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13940b56-4773-4469-a94d-bb8db0dc8cc9", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12588,Microsoft.Compute/GetVMImageFromLocation30Min;73588", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:13940b56-4773-4469-a94d-bb8db0dc8cc9", - "Expires" : "-1", - "x-ms-request-id" : "f89a8f17-aebd-46b9-a081-c106d81a939a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "6922b9d4-002f-469f-8d56-a375906050f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd883bf6-c1bc-46b6-b7a9-756b20020939", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "138c447b-428f-4b4f-900b-cf53ea7e95b6", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12585,Microsoft.Compute/GetVMImageFromLocation30Min;73585", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:138c447b-428f-4b4f-900b-cf53ea7e95b6", - "Expires" : "-1", - "x-ms-request-id" : "ce2a2a2c-9961-45cd-b5c0-f5d2654a8487", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "fd883bf6-c1bc-46b6-b7a9-756b20020939", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfad78ac-83aa-4686-b5b6-7a25ff9a9ae3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ee380e6-b663-4e08-85b5-582e3ed9db9f", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12586,Microsoft.Compute/GetVMImageFromLocation30Min;73586", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:7ee380e6-b663-4e08-85b5-582e3ed9db9f", - "Expires" : "-1", - "x-ms-request-id" : "17e7a36b-05eb-44ce-aa20-cf967d5bfdab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "bfad78ac-83aa-4686-b5b6-7a25ff9a9ae3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3806af3-5aaf-4430-9709-cd8393ffd163", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "514d717d-09eb-4462-a0a5-f77fd953aab0", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12584,Microsoft.Compute/GetVMImageFromLocation30Min;73584", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:514d717d-09eb-4462-a0a5-f77fd953aab0", - "Expires" : "-1", - "x-ms-request-id" : "5ea683f9-b19d-430a-9fbb-3feabcb84b32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "c3806af3-5aaf-4430-9709-cd8393ffd163", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2566cdd2-79bb-4d18-bfe0-255d3daa2682", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be732e5d-931b-4a9b-89ae-91ef4043c8f4", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12581,Microsoft.Compute/GetVMImageFromLocation30Min;73581", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:be732e5d-931b-4a9b-89ae-91ef4043c8f4", - "Expires" : "-1", - "x-ms-request-id" : "b5128960-fb90-4562-ac56-7eb408f503ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "2566cdd2-79bb-4d18-bfe0-255d3daa2682", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1aff3c90-f7c1-4359-a847-e599c4175e15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa0e207e-c8ab-4a60-b94e-286cc4ff196c", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12580,Microsoft.Compute/GetVMImageFromLocation30Min;73580", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:fa0e207e-c8ab-4a60-b94e-286cc4ff196c", - "Expires" : "-1", - "x-ms-request-id" : "d8aae4d0-b1fb-4b48-8d7c-a0f4343eb384", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "1aff3c90-f7c1-4359-a847-e599c4175e15", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c6d6ab8-2197-4be0-8d00-2cb82a67a220", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e61e1840-baf1-4994-884c-f56344c55ba6", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12589,Microsoft.Compute/GetVMImageFromLocation30Min;73589", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:e61e1840-baf1-4994-884c-f56344c55ba6", - "Expires" : "-1", - "x-ms-request-id" : "9429b2c2-5406-4230-9adf-12ebff40363d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "6c6d6ab8-2197-4be0-8d00-2cb82a67a220", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fefe59c-ea4b-4932-aafe-b4e175494d33", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fb270c6f-9ee2-4114-8c23-589e7f2cef36", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12583,Microsoft.Compute/GetVMImageFromLocation30Min;73583", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:fb270c6f-9ee2-4114-8c23-589e7f2cef36", - "Expires" : "-1", - "x-ms-request-id" : "8e36f1b9-73aa-4861-b50d-a045dde66ba1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "0fefe59c-ea4b-4932-aafe-b4e175494d33", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0928b68e-00f7-4971-8f40-2acf239ce48d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c7bbc16-4acc-42dc-bee4-04c4c054d6d4", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12591,Microsoft.Compute/GetVMImageFromLocation30Min;73591", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:1c7bbc16-4acc-42dc-bee4-04c4c054d6d4", - "Expires" : "-1", - "x-ms-request-id" : "b4b1dba2-725d-4aca-9dd2-60293e2a6553", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "0928b68e-00f7-4971-8f40-2acf239ce48d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84a77770-aa7f-4227-80de-ee835f936a37", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ac71140-d24f-4a52-a843-1711eead8585", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12579,Microsoft.Compute/GetVMImageFromLocation30Min;73579", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:0ac71140-d24f-4a52-a843-1711eead8585", - "Expires" : "-1", - "x-ms-request-id" : "64bdb97e-b622-4c80-86d9-9d07046fa13c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "84a77770-aa7f-4227-80de-ee835f936a37", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "201b0080-3174-4739-976f-0b293fc703b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a95b2df-e0a3-4771-8aaa-b2643da1857b", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12578,Microsoft.Compute/GetVMImageFromLocation30Min;73578", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:1a95b2df-e0a3-4771-8aaa-b2643da1857b", - "Expires" : "-1", - "x-ms-request-id" : "d070a973-714f-4630-b5d1-b2d439b4a8e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "201b0080-3174-4739-976f-0b293fc703b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26476dd6-813b-49dd-918b-86e6b50ac295", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14861ebf-3146-4170-a407-9235890ad71b", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12582,Microsoft.Compute/GetVMImageFromLocation30Min;73582", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:14861ebf-3146-4170-a407-9235890ad71b", - "Expires" : "-1", - "x-ms-request-id" : "c1d26db9-6c43-4ca8-bbc7-9d7ae8878bb3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "26476dd6-813b-49dd-918b-86e6b50ac295", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11d603a5-db74-4e71-ab78-d76cf87d4bf1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed0676e6-7112-454a-bb84-893f352b10bc", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12587,Microsoft.Compute/GetVMImageFromLocation30Min;73587", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:ed0676e6-7112-454a-bb84-893f352b10bc", - "Expires" : "-1", - "x-ms-request-id" : "2acdda88-9f3d-411c-b364-8901f9039e48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "11d603a5-db74-4e71-ab78-d76cf87d4bf1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "442439d4-5a5b-4b1d-b80e-ea5fa48979cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63f5cd22-d532-42d8-b49f-dc6f96ad5e21", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12577,Microsoft.Compute/GetVMImageFromLocation30Min;73577", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:63f5cd22-d532-42d8-b49f-dc6f96ad5e21", - "Expires" : "-1", - "x-ms-request-id" : "aba61a42-833f-4c03-9eac-d91c02234df1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "442439d4-5a5b-4b1d-b80e-ea5fa48979cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f29fc027-7d94-4a57-b996-f9d3bc18aaaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb37de3e-ebdf-42b6-a71a-dde4b92c138d", - "Date" : "Tue, 24 May 2022 13:00:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12576,Microsoft.Compute/GetVMImageFromLocation30Min;73576", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130047Z:bb37de3e-ebdf-42b6-a71a-dde4b92c138d", - "Expires" : "-1", - "x-ms-request-id" : "2cac237c-ecc2-4c5c-9a28-695c945bcdf0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "f29fc027-7d94-4a57-b996-f9d3bc18aaaa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ed77d34-ee26-4601-9d2a-129b4d7e345a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6523", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5dcd0ff-16fc-4365-ad50-96a1734d99ed", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15957,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:e5dcd0ff-16fc-4365-ad50-96a1734d99ed", - "Expires" : "-1", - "x-ms-request-id" : "00e88673-b53b-450e-8dff-6fbda2d1d845", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "5ed77d34-ee26-4601-9d2a-129b4d7e345a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "222b5b62-55fb-4154-bc30-6695cdcf9e44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06cdac8a-3e0a-475a-9552-be9db7d29f01", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12573,Microsoft.Compute/GetVMImageFromLocation30Min;73573", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:06cdac8a-3e0a-475a-9552-be9db7d29f01", - "Expires" : "-1", - "x-ms-request-id" : "eda8e248-e443-4393-9224-da6809cf64cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "222b5b62-55fb-4154-bc30-6695cdcf9e44", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b564e44c-b5c3-475b-98e7-4770e8b33d4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0405f22a-6af1-4fdb-ae52-42db0ca53266", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12575,Microsoft.Compute/GetVMImageFromLocation30Min;73575", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:0405f22a-6af1-4fdb-ae52-42db0ca53266", - "Expires" : "-1", - "x-ms-request-id" : "d51fefd5-215b-4332-a4ea-5d87a2838f56", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "b564e44c-b5c3-475b-98e7-4770e8b33d4e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd9dbf88-2c31-4071-b25e-eba4537eab27", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14d8b869-cb8e-4654-81cc-48efabbfc0a4", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12570,Microsoft.Compute/GetVMImageFromLocation30Min;73570", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:14d8b869-cb8e-4654-81cc-48efabbfc0a4", - "Expires" : "-1", - "x-ms-request-id" : "4ee7a635-b11c-422f-96e0-2df547b40ce9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "bd9dbf88-2c31-4071-b25e-eba4537eab27", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c96e7f13-278f-4c42-9c4c-9ba29fb986b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9c35a00-c873-40b2-860b-1035fdd9d78b", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12572,Microsoft.Compute/GetVMImageFromLocation30Min;73572", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:f9c35a00-c873-40b2-860b-1035fdd9d78b", - "Expires" : "-1", - "x-ms-request-id" : "ab911b96-8537-4839-a614-0e7ff6f07245", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "c96e7f13-278f-4c42-9c4c-9ba29fb986b0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c575390-1cf0-4a83-8a4f-78bb33ed6567", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c123ccbc-31ae-49e2-b442-0530b4dd88fe", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12568,Microsoft.Compute/GetVMImageFromLocation30Min;73568", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:c123ccbc-31ae-49e2-b442-0530b4dd88fe", - "Expires" : "-1", - "x-ms-request-id" : "9d7e9997-129b-4a08-ab47-ff096509a5ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "8c575390-1cf0-4a83-8a4f-78bb33ed6567", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3a385f6-c130-4bf8-856f-2bb1b382b62a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "100071ed-7bd2-4f3d-9410-0fb194b02730", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12569,Microsoft.Compute/GetVMImageFromLocation30Min;73569", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:100071ed-7bd2-4f3d-9410-0fb194b02730", - "Expires" : "-1", - "x-ms-request-id" : "b9dc8191-a4bb-409d-b8ee-5c9d8fec7a91", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "e3a385f6-c130-4bf8-856f-2bb1b382b62a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2189f472-5dda-4e69-8675-94d986d1beef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c60abeca-c02b-4cbf-80ff-735b57d02583", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12566,Microsoft.Compute/GetVMImageFromLocation30Min;73566", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:c60abeca-c02b-4cbf-80ff-735b57d02583", - "Expires" : "-1", - "x-ms-request-id" : "3bc13f47-166f-45f1-92c9-aac74e9802d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "2189f472-5dda-4e69-8675-94d986d1beef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "16062004-4202-4438-9b66-01ea00c08857", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98c15b9e-7627-47d2-b4aa-f5c7cac0cb32", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12563,Microsoft.Compute/GetVMImageFromLocation30Min;73563", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:98c15b9e-7627-47d2-b4aa-f5c7cac0cb32", - "Expires" : "-1", - "x-ms-request-id" : "1c9c41a2-9362-42f3-839a-68f9ac9a9e9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "16062004-4202-4438-9b66-01ea00c08857", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70564aee-24d2-4ece-8cba-c0409cf1a8fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88c469dc-2e26-449d-ab31-47df792b9b56", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12564,Microsoft.Compute/GetVMImageFromLocation30Min;73564", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:88c469dc-2e26-449d-ab31-47df792b9b56", - "Expires" : "-1", - "x-ms-request-id" : "a170a574-3220-47f8-adb5-dcf63b832e86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "70564aee-24d2-4ece-8cba-c0409cf1a8fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3df8ad3-e9cf-4a0f-9402-26fd9c57a666", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "400819f0-bd5f-4127-85e1-2e0f65237c54", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12567,Microsoft.Compute/GetVMImageFromLocation30Min;73567", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:400819f0-bd5f-4127-85e1-2e0f65237c54", - "Expires" : "-1", - "x-ms-request-id" : "04e229e5-abd3-469f-871b-e22f93900d45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "c3df8ad3-e9cf-4a0f-9402-26fd9c57a666", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a330bd37-2879-4753-a9cd-95911c450988", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "159e0883-f5fc-4d0e-a889-c2148db981d0", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12561,Microsoft.Compute/GetVMImageFromLocation30Min;73561", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:159e0883-f5fc-4d0e-a889-c2148db981d0", - "Expires" : "-1", - "x-ms-request-id" : "424445cc-74ad-4d0a-a5b7-3b21fa49a708", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "a330bd37-2879-4753-a9cd-95911c450988", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45fd2b03-9da3-4633-9de2-ae7324965fb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "102cebb4-ead8-43de-b1c0-1c5808e1c148", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12560,Microsoft.Compute/GetVMImageFromLocation30Min;73560", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:102cebb4-ead8-43de-b1c0-1c5808e1c148", - "Expires" : "-1", - "x-ms-request-id" : "c920d27a-3acb-445d-8226-c32a78d96cd2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "45fd2b03-9da3-4633-9de2-ae7324965fb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e859d9e9-7cec-4cd3-9ccc-ccf1f49af8b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0a1c37e-9981-4b96-8a3b-7828eb38c39a", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12559,Microsoft.Compute/GetVMImageFromLocation30Min;73559", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:e0a1c37e-9981-4b96-8a3b-7828eb38c39a", - "Expires" : "-1", - "x-ms-request-id" : "3846fb62-9d4b-4614-b532-323c103306aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "e859d9e9-7cec-4cd3-9ccc-ccf1f49af8b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6bbf96b-5d4d-4656-8fc3-51da0474e1ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71b6fe6f-dc22-4a3e-bf20-91421400b1b6", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12565,Microsoft.Compute/GetVMImageFromLocation30Min;73565", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:71b6fe6f-dc22-4a3e-bf20-91421400b1b6", - "Expires" : "-1", - "x-ms-request-id" : "e568ab7e-48fe-4335-b812-0ab5dd0656ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "c6bbf96b-5d4d-4656-8fc3-51da0474e1ce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6534d33d-58f6-4bc6-81da-77be64f0a7f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "85f6055c-28ea-45e3-807f-988a3670e41c", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12557,Microsoft.Compute/GetVMImageFromLocation30Min;73557", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:85f6055c-28ea-45e3-807f-988a3670e41c", - "Expires" : "-1", - "x-ms-request-id" : "2c0cb525-918d-4384-b863-679032a72ebe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "6534d33d-58f6-4bc6-81da-77be64f0a7f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0da5438c-e67d-4d9a-991b-fa689aae8c88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9fd75ca1-4d9f-4954-9813-341cbfbfdab1", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12558,Microsoft.Compute/GetVMImageFromLocation30Min;73558", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:9fd75ca1-4d9f-4954-9813-341cbfbfdab1", - "Expires" : "-1", - "x-ms-request-id" : "678602e4-3d28-4ec7-a157-c1179aacebf6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "0da5438c-e67d-4d9a-991b-fa689aae8c88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96c0c989-c306-4646-ba8a-5154d4c9e120", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4dd0dab0-e1b9-425e-9fed-c4daabb1ee4a", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12556,Microsoft.Compute/GetVMImageFromLocation30Min;73556", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:4dd0dab0-e1b9-425e-9fed-c4daabb1ee4a", - "Expires" : "-1", - "x-ms-request-id" : "84de3808-581b-4ed1-8187-066062ee1639", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "96c0c989-c306-4646-ba8a-5154d4c9e120", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e28ccc8a-9bfd-4a56-8bb9-7fe3257912bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56888f83-f879-43dc-80ad-7b6eda2883ab", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12574,Microsoft.Compute/GetVMImageFromLocation30Min;73574", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:56888f83-f879-43dc-80ad-7b6eda2883ab", - "Expires" : "-1", - "x-ms-request-id" : "de05dff2-2837-4ffa-8e71-d6224b63a86e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "e28ccc8a-9bfd-4a56-8bb9-7fe3257912bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bac34b2e-df67-43e5-b03d-b09ab36ef321", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df1ffd3e-d5f3-4464-a733-9ebc55d8efc9", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12562,Microsoft.Compute/GetVMImageFromLocation30Min;73562", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:df1ffd3e-d5f3-4464-a733-9ebc55d8efc9", - "Expires" : "-1", - "x-ms-request-id" : "2932bb4b-becf-4496-98e1-d57595d57952", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "bac34b2e-df67-43e5-b03d-b09ab36ef321", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-csw/skus/pro-20_04-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2583e77-23ec-4a40-8eef-154b971ed391", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71365563-a667-4308-81bb-ce4ede4fc68b", - "Date" : "Tue, 24 May 2022 13:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12571,Microsoft.Compute/GetVMImageFromLocation30Min;73571", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:71365563-a667-4308-81bb-ce4ede4fc68b", - "Expires" : "-1", - "x-ms-request-id" : "508084d8-b60c-44e1-b7bb-b5885a1a08e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-csw\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-csw/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "c2583e77-23ec-4a40-8eef-154b971ed391", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6db688db-0113-480f-a4c0-8528ee940e6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2517", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31490393-a532-4b63-86ed-2ad083ed0309", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9986,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:31490393-a532-4b63-86ed-2ad083ed0309", - "Expires" : "-1", - "x-ms-request-id" : "d42c4c10-6ebc-4b27-b2f0-16e59ce28d01", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "6db688db-0113-480f-a4c0-8528ee940e6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "937b7b7d-0ef6-4f02-a80d-53b68661f4c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1283", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d1d980e-9de2-4af1-abe3-ea1a861ac958", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15956,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130048Z:3d1d980e-9de2-4af1-abe3-ea1a861ac958", - "Expires" : "-1", - "x-ms-request-id" : "e38c197a-47a4-4b44-8f58-3b6068e470ce", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "937b7b7d-0ef6-4f02-a80d-53b68661f4c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4906b5a6-387d-4146-8235-863370cf1692", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf19da67-cce2-46e4-9e45-c6866394cd01", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12555,Microsoft.Compute/GetVMImageFromLocation30Min;73555", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:bf19da67-cce2-46e4-9e45-c6866394cd01", - "Expires" : "-1", - "x-ms-request-id" : "da56a07a-dc99-4b9c-b859-934f0396df78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "4906b5a6-387d-4146-8235-863370cf1692", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4c1bc81-c83c-449d-a970-20d0f152df96", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a9010b1-aec7-4c35-90bd-b4b12e2347b6", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12554,Microsoft.Compute/GetVMImageFromLocation30Min;73554", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:9a9010b1-aec7-4c35-90bd-b4b12e2347b6", - "Expires" : "-1", - "x-ms-request-id" : "426455a9-61c5-4e72-9224-a3693fa1f5bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "c4c1bc81-c83c-449d-a970-20d0f152df96", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4b37c8b-0d0b-4801-9694-648d31794a19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8fc013a8-0708-494f-bb41-a5b4b127b075", - "Date" : "Tue, 24 May 2022 13:00:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12553,Microsoft.Compute/GetVMImageFromLocation30Min;73553", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:8fc013a8-0708-494f-bb41-a5b4b127b075", - "Expires" : "-1", - "x-ms-request-id" : "42fba089-17fa-40a9-8d0a-53df31ed1657", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "a4b37c8b-0d0b-4801-9694-648d31794a19", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42f9a9ba-9d59-4b2a-a605-66e639cb525d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "62ab9d63-2e48-4e87-8e1b-fdf7eedaa1a9", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12552,Microsoft.Compute/GetVMImageFromLocation30Min;73552", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:62ab9d63-2e48-4e87-8e1b-fdf7eedaa1a9", - "Expires" : "-1", - "x-ms-request-id" : "4a3a8746-8df5-4952-9721-91eda5b61e19", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "42f9a9ba-9d59-4b2a-a605-66e639cb525d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cc962fe-b789-4efa-8989-8191ffa8e0de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1303", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3d61968-14f6-4744-a7c9-1abe940d11b1", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15955,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:e3d61968-14f6-4744-a7c9-1abe940d11b1", - "Expires" : "-1", - "x-ms-request-id" : "77242a6c-e4e6-43a9-8650-2017ab560da4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "8cc962fe-b789-4efa-8989-8191ffa8e0de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f70d3fe-bd20-4b6f-b984-8cb9f1aee83f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "487cbf47-4066-41b5-944e-f7b6b179ec81", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12551,Microsoft.Compute/GetVMImageFromLocation30Min;73551", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:487cbf47-4066-41b5-944e-f7b6b179ec81", - "Expires" : "-1", - "x-ms-request-id" : "3c310347-cb85-431e-84ce-ec6ab060a464", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "8f70d3fe-bd20-4b6f-b984-8cb9f1aee83f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9ab793d-1fd0-464b-8168-aec81832f0b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a65386ef-3fe4-4372-8d64-a2139de93bef", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12550,Microsoft.Compute/GetVMImageFromLocation30Min;73550", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:a65386ef-3fe4-4372-8d64-a2139de93bef", - "Expires" : "-1", - "x-ms-request-id" : "b8d05539-4465-4f6d-8da3-bd2f8b9d48bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "a9ab793d-1fd0-464b-8168-aec81832f0b6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34108878-88be-4d2d-8ae3-fd8fbb7c2ee0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b819045-c935-4c51-8dfc-55cf943f9e64", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12549,Microsoft.Compute/GetVMImageFromLocation30Min;73549", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:9b819045-c935-4c51-8dfc-55cf943f9e64", - "Expires" : "-1", - "x-ms-request-id" : "17b5d20e-d87c-4102-9e6d-35cccc0055b6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "34108878-88be-4d2d-8ae3-fd8fbb7c2ee0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ce7972f-b539-4522-903e-3bbd10502d01", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99e3021b-c2a1-42e7-842b-493f027798cf", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12548,Microsoft.Compute/GetVMImageFromLocation30Min;73548", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130049Z:99e3021b-c2a1-42e7-842b-493f027798cf", - "Expires" : "-1", - "x-ms-request-id" : "b3af74d0-9e90-4c5d-8fa8-b177a3f95a85", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "0ce7972f-b539-4522-903e-3bbd10502d01", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72dd96c6-28f4-46c7-b1c3-75dbf824611e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3203", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d41a3ca-14e5-459a-a40a-4f36c8a31301", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15954,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:2d41a3ca-14e5-459a-a40a-4f36c8a31301", - "Expires" : "-1", - "x-ms-request-id" : "6717ad3b-ff3e-48e8-b52d-42c4de6c7f9d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "72dd96c6-28f4-46c7-b1c3-75dbf824611e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "529f0e33-dcb9-44df-be2a-97835868cb5b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b980e3c2-10e1-4ba0-b4b5-89370e8b96df", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12547,Microsoft.Compute/GetVMImageFromLocation30Min;73547", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:b980e3c2-10e1-4ba0-b4b5-89370e8b96df", - "Expires" : "-1", - "x-ms-request-id" : "a4291f03-bb9a-4c88-be8e-aceaa1d25495", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "529f0e33-dcb9-44df-be2a-97835868cb5b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b83159b0-bf4b-49b5-98a7-3b9e22248987", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5edf623-8440-4d14-862c-5bf835355afd", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12546,Microsoft.Compute/GetVMImageFromLocation30Min;73546", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:a5edf623-8440-4d14-862c-5bf835355afd", - "Expires" : "-1", - "x-ms-request-id" : "b670f2eb-0c77-4b3d-8492-4d4ab6ed7f6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "b83159b0-bf4b-49b5-98a7-3b9e22248987", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e02ee35d-69cb-4499-b1b7-cbd09f65cec1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "051a9dda-832a-420c-8858-600cc6dd4957", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12542,Microsoft.Compute/GetVMImageFromLocation30Min;73542", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:051a9dda-832a-420c-8858-600cc6dd4957", - "Expires" : "-1", - "x-ms-request-id" : "1a8e6af6-507c-4325-b502-a3a8830f0e8b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "e02ee35d-69cb-4499-b1b7-cbd09f65cec1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "127f4b65-9954-4c28-aa40-6873b568681e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4189a37c-da01-4127-95f5-8f6d3dc80c74", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12543,Microsoft.Compute/GetVMImageFromLocation30Min;73543", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:4189a37c-da01-4127-95f5-8f6d3dc80c74", - "Expires" : "-1", - "x-ms-request-id" : "b23f7010-a1a1-4ef2-adee-aa5e39294c89", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "127f4b65-9954-4c28-aa40-6873b568681e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "02a5e315-aa8d-4ddb-a79e-7b7e27a8cdb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "69b6fb72-3672-450e-b158-4c83a785d90f", - "Date" : "Tue, 24 May 2022 13:00:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12544,Microsoft.Compute/GetVMImageFromLocation30Min;73544", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:69b6fb72-3672-450e-b158-4c83a785d90f", - "Expires" : "-1", - "x-ms-request-id" : "a4f31e57-e217-4001-af90-7c9c321b762b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "02a5e315-aa8d-4ddb-a79e-7b7e27a8cdb7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef9ce1df-03af-46ce-a6b6-d13e7a2785f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9221883a-0b16-4e40-8614-c33d9c309d0d", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12539,Microsoft.Compute/GetVMImageFromLocation30Min;73539", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:9221883a-0b16-4e40-8614-c33d9c309d0d", - "Expires" : "-1", - "x-ms-request-id" : "dbc48aa9-fc2c-49e6-be31-ff2671c09697", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "ef9ce1df-03af-46ce-a6b6-d13e7a2785f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ece54c20-bcbd-45da-a977-8f083792ad70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf9dae1d-640f-45b3-bc70-430de572e436", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12545,Microsoft.Compute/GetVMImageFromLocation30Min;73545", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:cf9dae1d-640f-45b3-bc70-430de572e436", - "Expires" : "-1", - "x-ms-request-id" : "2778622d-fa52-4d2b-a946-a5dcda878893", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "ece54c20-bcbd-45da-a977-8f083792ad70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09de2646-c54c-450e-b65a-3ab931f985cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43b407c8-6c15-44a6-9bbf-f944308e4ee2", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12540,Microsoft.Compute/GetVMImageFromLocation30Min;73540", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:43b407c8-6c15-44a6-9bbf-f944308e4ee2", - "Expires" : "-1", - "x-ms-request-id" : "b297f289-39e8-4cf9-b271-3dfc74e892b8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "09de2646-c54c-450e-b65a-3ab931f985cb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5e3d304-0e33-480a-af8b-79dda4492efe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "056530e6-85cd-4298-bf8b-3441dd66333b", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12541,Microsoft.Compute/GetVMImageFromLocation30Min;73541", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:056530e6-85cd-4298-bf8b-3441dd66333b", - "Expires" : "-1", - "x-ms-request-id" : "dea2403c-3b2b-41a6-bdbc-b1c5fa285e07", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "d5e3d304-0e33-480a-af8b-79dda4492efe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a71d737a-42e6-4445-be20-399a269ca422", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9601f57e-f7f5-4c76-94e4-9b2ab436259c", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12538,Microsoft.Compute/GetVMImageFromLocation30Min;73538", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:9601f57e-f7f5-4c76-94e4-9b2ab436259c", - "Expires" : "-1", - "x-ms-request-id" : "ea845628-cbd1-4358-be5c-227e60bf8231", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "a71d737a-42e6-4445-be20-399a269ca422", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "536cf2ba-a90c-4705-84ed-b8fe224d7a24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3253", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8033dc5d-c150-4ba8-a98c-a2a4ae478db2", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15953,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130050Z:8033dc5d-c150-4ba8-a98c-a2a4ae478db2", - "Expires" : "-1", - "x-ms-request-id" : "d073bdc0-0352-42aa-8faa-1c23701e546c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "536cf2ba-a90c-4705-84ed-b8fe224d7a24", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c75c5b1-5cc3-467b-8a8e-24f318183822", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06c30a4d-413b-49a8-b62e-199ba014f4cf", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12537,Microsoft.Compute/GetVMImageFromLocation30Min;73537", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:06c30a4d-413b-49a8-b62e-199ba014f4cf", - "Expires" : "-1", - "x-ms-request-id" : "65a7f1ec-a6e3-4456-b008-30ce9c301eff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "1c75c5b1-5cc3-467b-8a8e-24f318183822", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a62afffe-a870-4260-bc64-fd55f98d46ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35525ef2-a428-4277-833f-edbb19e18f19", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12535,Microsoft.Compute/GetVMImageFromLocation30Min;73535", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:35525ef2-a428-4277-833f-edbb19e18f19", - "Expires" : "-1", - "x-ms-request-id" : "8f87ef5f-30d5-4491-8d5e-921dd837936f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "a62afffe-a870-4260-bc64-fd55f98d46ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "422ee6bd-262f-4978-8087-7ddeadb11248", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7ffa5d9-6c87-4d1c-ba65-ecac360f30f4", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12536,Microsoft.Compute/GetVMImageFromLocation30Min;73536", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:a7ffa5d9-6c87-4d1c-ba65-ecac360f30f4", - "Expires" : "-1", - "x-ms-request-id" : "cc3c9fb5-c275-4fb3-8085-d313ff0bff6f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "422ee6bd-262f-4978-8087-7ddeadb11248", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de98c6b9-99e8-4cb0-ac9a-4ded2e747635", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b44645ae-2787-4350-8f60-4498819f7baa", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12534,Microsoft.Compute/GetVMImageFromLocation30Min;73534", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:b44645ae-2787-4350-8f60-4498819f7baa", - "Expires" : "-1", - "x-ms-request-id" : "6583117d-2e80-4a3b-ad93-87e84cbdaa05", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "de98c6b9-99e8-4cb0-ac9a-4ded2e747635", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a11d838-797f-41f9-a89c-3b7eff1bd115", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a395ef9c-89fb-47b1-a721-9cb13649eae2", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12532,Microsoft.Compute/GetVMImageFromLocation30Min;73532", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:a395ef9c-89fb-47b1-a721-9cb13649eae2", - "Expires" : "-1", - "x-ms-request-id" : "bb8032b4-4588-4695-9221-5d5a2242be90", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "6a11d838-797f-41f9-a89c-3b7eff1bd115", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98587ab2-225e-4304-9502-cb699e3f4501", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "795e836d-2b4a-46c7-a21c-d95405cf7524", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12531,Microsoft.Compute/GetVMImageFromLocation30Min;73531", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:795e836d-2b4a-46c7-a21c-d95405cf7524", - "Expires" : "-1", - "x-ms-request-id" : "7396d142-83fa-4a1b-87b4-035f9f54b5c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "98587ab2-225e-4304-9502-cb699e3f4501", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fc54fdc-4003-4d2e-a4c4-8e01afa8f856", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d093129e-2fc6-44da-a2ee-de64cf05f5f5", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12530,Microsoft.Compute/GetVMImageFromLocation30Min;73530", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:d093129e-2fc6-44da-a2ee-de64cf05f5f5", - "Expires" : "-1", - "x-ms-request-id" : "5de24ea5-acee-498f-8bb9-a1c4701ab622", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "2fc54fdc-4003-4d2e-a4c4-8e01afa8f856", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "798925d8-23ae-49a2-938f-84f20611edbe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e00f9b8b-c56f-46c6-b50e-15b398f3ad10", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12529,Microsoft.Compute/GetVMImageFromLocation30Min;73529", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:e00f9b8b-c56f-46c6-b50e-15b398f3ad10", - "Expires" : "-1", - "x-ms-request-id" : "1a5513d6-8346-4507-a381-89cfc8624770", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "798925d8-23ae-49a2-938f-84f20611edbe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "520e386d-f752-4dc2-8ed3-3bce2ae67baa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5172b2f8-dded-4f0d-80d2-05bbcff1228a", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12533,Microsoft.Compute/GetVMImageFromLocation30Min;73533", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:5172b2f8-dded-4f0d-80d2-05bbcff1228a", - "Expires" : "-1", - "x-ms-request-id" : "fd86163c-e916-49c4-b674-664549311a87", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "520e386d-f752-4dc2-8ed3-3bce2ae67baa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "512465bc-a6cc-4fbd-b39b-9abae5ff1c3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1aafc5fe-ed20-454a-995c-3994568007d4", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12528,Microsoft.Compute/GetVMImageFromLocation30Min;73528", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:1aafc5fe-ed20-454a-995c-3994568007d4", - "Expires" : "-1", - "x-ms-request-id" : "3d908f30-547a-4b53-b55c-745ec3854cf2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "512465bc-a6cc-4fbd-b39b-9abae5ff1c3e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3d8e30e-2d93-4554-9cca-65fa99bf3db1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4483", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9caf609c-a004-4ef8-8a41-4e34cad5adbc", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15952,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:9caf609c-a004-4ef8-8a41-4e34cad5adbc", - "Expires" : "-1", - "x-ms-request-id" : "b8a09af3-a0f9-4528-8dbb-e88f219cc67e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "a3d8e30e-2d93-4554-9cca-65fa99bf3db1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa5dd77f-ac1a-4721-a4c0-87d9f3c4cd36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8fa3f0a5-0f65-4758-a5fa-eadefa903186", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12526,Microsoft.Compute/GetVMImageFromLocation30Min;73526", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:8fa3f0a5-0f65-4758-a5fa-eadefa903186", - "Expires" : "-1", - "x-ms-request-id" : "2f92873f-12ab-4f44-a349-2b52e8fe2daa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "aa5dd77f-ac1a-4721-a4c0-87d9f3c4cd36", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bc0ab83-af57-4d41-b83c-0dff13a92d91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "261caee6-711a-4212-af2a-05ca2ae6e74c", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12527,Microsoft.Compute/GetVMImageFromLocation30Min;73527", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:261caee6-711a-4212-af2a-05ca2ae6e74c", - "Expires" : "-1", - "x-ms-request-id" : "111dc1ff-260a-437e-9130-973c520ea07a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "7bc0ab83-af57-4d41-b83c-0dff13a92d91", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd836781-5b30-436c-90ff-ce1364796071", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "72852972-07e0-4b67-9436-1e5a4bcbc40d", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12522,Microsoft.Compute/GetVMImageFromLocation30Min;73522", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:72852972-07e0-4b67-9436-1e5a4bcbc40d", - "Expires" : "-1", - "x-ms-request-id" : "dea7b7f5-e60c-4e65-a437-f318b83eebff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "bd836781-5b30-436c-90ff-ce1364796071", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5589129a-b457-4e61-b30b-1950e4bf151f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a8faae2-4073-4d94-8a8f-6b90725bb912", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12523,Microsoft.Compute/GetVMImageFromLocation30Min;73523", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:6a8faae2-4073-4d94-8a8f-6b90725bb912", - "Expires" : "-1", - "x-ms-request-id" : "19feeb24-ab5b-4815-badb-69b7a4551461", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "5589129a-b457-4e61-b30b-1950e4bf151f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81ee2c6a-b3f3-4c2c-b5e5-601a69cd2308", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4691052c-bada-459f-81f0-c865954239b3", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12521,Microsoft.Compute/GetVMImageFromLocation30Min;73521", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:4691052c-bada-459f-81f0-c865954239b3", - "Expires" : "-1", - "x-ms-request-id" : "5bcd5fa0-c916-42c0-bc38-60a47976b2db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "81ee2c6a-b3f3-4c2c-b5e5-601a69cd2308", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "460f1982-0cda-41b3-9146-331605bd8e44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04686de2-5a50-4ca0-90c4-4c19da76631d", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12520,Microsoft.Compute/GetVMImageFromLocation30Min;73520", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:04686de2-5a50-4ca0-90c4-4c19da76631d", - "Expires" : "-1", - "x-ms-request-id" : "2f96b7a9-7416-4a52-8a96-e866e8654671", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "460f1982-0cda-41b3-9146-331605bd8e44", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "889eaf59-47cc-491f-811e-e72faf062129", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa062146-8403-4e89-a267-bae31b70616b", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12525,Microsoft.Compute/GetVMImageFromLocation30Min;73525", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:aa062146-8403-4e89-a267-bae31b70616b", - "Expires" : "-1", - "x-ms-request-id" : "a78d66fd-f88d-4ac7-a389-5f603e2a9355", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "889eaf59-47cc-491f-811e-e72faf062129", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "162986b3-6ce3-480d-b1f0-2baf177298df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94e8acf3-eeda-4a39-b48a-40ecab622949", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12519,Microsoft.Compute/GetVMImageFromLocation30Min;73519", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:94e8acf3-eeda-4a39-b48a-40ecab622949", - "Expires" : "-1", - "x-ms-request-id" : "f729ede2-fa15-47b8-9cc6-ce4c422095ff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "162986b3-6ce3-480d-b1f0-2baf177298df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e338015e-27e5-4cb5-a3d9-49b8133e52fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7400c72d-a2fd-4728-ab33-4cd5c4913c7d", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12518,Microsoft.Compute/GetVMImageFromLocation30Min;73518", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:7400c72d-a2fd-4728-ab33-4cd5c4913c7d", - "Expires" : "-1", - "x-ms-request-id" : "a5bef070-be2e-4b50-9a6c-292fdcd39a28", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "e338015e-27e5-4cb5-a3d9-49b8133e52fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9948ecaa-04cd-49ae-81a8-1983459af937", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4990a649-7d65-4bfe-84ba-ea89e9e693c6", - "Date" : "Tue, 24 May 2022 13:00:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12524,Microsoft.Compute/GetVMImageFromLocation30Min;73524", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:4990a649-7d65-4bfe-84ba-ea89e9e693c6", - "Expires" : "-1", - "x-ms-request-id" : "1b415911-f4e2-4f28-94c4-4b253e54db5c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "9948ecaa-04cd-49ae-81a8-1983459af937", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8685cc74-34d5-4980-b4ba-d63db1cba70d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6fff4c8-3f69-4d75-825d-70fd742506f5", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12517,Microsoft.Compute/GetVMImageFromLocation30Min;73517", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:a6fff4c8-3f69-4d75-825d-70fd742506f5", - "Expires" : "-1", - "x-ms-request-id" : "7f441605-9fda-467d-8b0e-3cf792550104", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "8685cc74-34d5-4980-b4ba-d63db1cba70d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3e88b2d-4cd8-41e7-8236-09c4869b3fb0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d3e014c-e6f9-444c-93b8-3d4c45bb0d70", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12516,Microsoft.Compute/GetVMImageFromLocation30Min;73516", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:1d3e014c-e6f9-444c-93b8-3d4c45bb0d70", - "Expires" : "-1", - "x-ms-request-id" : "b6639b8f-33b6-4c9e-af23-e03548e7b47e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "a3e88b2d-4cd8-41e7-8236-09c4869b3fb0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "582b40d2-264b-4c58-85fa-fff276d0b819", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fc4483b-a722-4d72-a406-75431ef6c3c3", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12515,Microsoft.Compute/GetVMImageFromLocation30Min;73515", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:0fc4483b-a722-4d72-a406-75431ef6c3c3", - "Expires" : "-1", - "x-ms-request-id" : "fd5aaa67-18e3-46d0-bbcc-79d24246ba8d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "582b40d2-264b-4c58-85fa-fff276d0b819", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "607462ef-a67d-4dbd-9976-82ceaea1d503", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1056", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30189144-6f5d-4ff8-a2c3-05e4fb332d0f", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12514,Microsoft.Compute/GetVMImageFromLocation30Min;73514", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130051Z:30189144-6f5d-4ff8-a2c3-05e4fb332d0f", - "Expires" : "-1", - "x-ms-request-id" : "606c44cd-4e7c-4fff-8baa-302383eba3df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "607462ef-a67d-4dbd-9976-82ceaea1d503", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e9efe68-95c2-4af3-adf9-62a1d8f8a683", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4553", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fec4418f-e365-4e64-91e3-3b16c7ef87fc", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15951,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:fec4418f-e365-4e64-91e3-3b16c7ef87fc", - "Expires" : "-1", - "x-ms-request-id" : "65e20800-703b-459c-87be-3d3736d66365", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "2e9efe68-95c2-4af3-adf9-62a1d8f8a683", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f440aac6-c58a-4f3b-9793-bf01c0586486", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f76de5b4-8405-4eaf-b20e-5985e044f3fe", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12512,Microsoft.Compute/GetVMImageFromLocation30Min;73512", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:f76de5b4-8405-4eaf-b20e-5985e044f3fe", - "Expires" : "-1", - "x-ms-request-id" : "a9e417e8-f143-4797-ae51-9c2b4871b301", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "f440aac6-c58a-4f3b-9793-bf01c0586486", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5e5eefd-aa26-42ec-b495-d84b25a483db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c8aefa7-c165-4892-8fe6-f8c05448fb3b", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12511,Microsoft.Compute/GetVMImageFromLocation30Min;73511", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:7c8aefa7-c165-4892-8fe6-f8c05448fb3b", - "Expires" : "-1", - "x-ms-request-id" : "bf90c2b1-31a2-459a-b6f6-d27270aa74c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "f5e5eefd-aa26-42ec-b495-d84b25a483db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01dade8d-56bd-46e4-bdbc-50ba0fef6dbc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c763f9b-749d-48e9-9b64-b6005279939f", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12513,Microsoft.Compute/GetVMImageFromLocation30Min;73513", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:8c763f9b-749d-48e9-9b64-b6005279939f", - "Expires" : "-1", - "x-ms-request-id" : "4652ca98-ba91-4dad-b4a8-6cac450f2796", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "01dade8d-56bd-46e4-bdbc-50ba0fef6dbc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f131a030-ef0c-4fea-b90f-4d4d24294ab5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bdc999d1-8957-4200-a011-414386bf1dd6", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12509,Microsoft.Compute/GetVMImageFromLocation30Min;73509", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:bdc999d1-8957-4200-a011-414386bf1dd6", - "Expires" : "-1", - "x-ms-request-id" : "5a03b8ce-0cbf-413a-bbdd-58f9cec8532f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "f131a030-ef0c-4fea-b90f-4d4d24294ab5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d31f693-c55f-4645-a6ef-bcaf7d40f203", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2c33e4e-7472-4d64-a591-f8dde8bd520e", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12508,Microsoft.Compute/GetVMImageFromLocation30Min;73508", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:d2c33e4e-7472-4d64-a591-f8dde8bd520e", - "Expires" : "-1", - "x-ms-request-id" : "4c85b81c-9bcc-4c39-880a-4a9e49f4cb44", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "5d31f693-c55f-4645-a6ef-bcaf7d40f203", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebd0f1d9-b4cc-4328-b138-fd75bba2953e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7890e52-43e3-48c1-9b6d-43e71b9fd663", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12505,Microsoft.Compute/GetVMImageFromLocation30Min;73505", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:b7890e52-43e3-48c1-9b6d-43e71b9fd663", - "Expires" : "-1", - "x-ms-request-id" : "ba9060b2-c8db-4da1-81bd-7ff583ca758d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "ebd0f1d9-b4cc-4328-b138-fd75bba2953e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4884776-b13f-47ec-b2a6-a2d4021376df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44611b5f-2503-427e-a778-4cd22a01ed36", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12506,Microsoft.Compute/GetVMImageFromLocation30Min;73506", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:44611b5f-2503-427e-a778-4cd22a01ed36", - "Expires" : "-1", - "x-ms-request-id" : "950840b9-c5c2-4a80-b6f7-e2e19527705e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "c4884776-b13f-47ec-b2a6-a2d4021376df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b523c9e-2889-446a-9a97-d4c6ab3b9f6a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "006fec20-bfdb-4c26-844b-1f9fbe0e9215", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12504,Microsoft.Compute/GetVMImageFromLocation30Min;73504", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:006fec20-bfdb-4c26-844b-1f9fbe0e9215", - "Expires" : "-1", - "x-ms-request-id" : "80944ffa-03d3-452b-89db-49b73bf6bd32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "1b523c9e-2889-446a-9a97-d4c6ab3b9f6a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91c479d1-d949-449b-b147-809a72179cae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b930e126-3153-4b4e-b24f-495326f0787a", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12503,Microsoft.Compute/GetVMImageFromLocation30Min;73503", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:b930e126-3153-4b4e-b24f-495326f0787a", - "Expires" : "-1", - "x-ms-request-id" : "7635dddd-51a7-4027-ab0c-f7396cfbe9c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "91c479d1-d949-449b-b147-809a72179cae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8dd4bdc0-54df-49f7-8f5b-9c5669e10725", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93bd5020-1e55-4d20-834a-f5019e44578e", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12507,Microsoft.Compute/GetVMImageFromLocation30Min;73507", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:93bd5020-1e55-4d20-834a-f5019e44578e", - "Expires" : "-1", - "x-ms-request-id" : "a3e34fd1-dc75-498e-b6b9-893bb0a3d0e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "8dd4bdc0-54df-49f7-8f5b-9c5669e10725", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "909e43c3-dae1-42f9-8164-f182bcb14182", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "777a140e-0568-4ae8-8056-7c78cba6b20c", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12501,Microsoft.Compute/GetVMImageFromLocation30Min;73501", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:777a140e-0568-4ae8-8056-7c78cba6b20c", - "Expires" : "-1", - "x-ms-request-id" : "186643b7-6d84-4103-9bd2-2cf531cb0136", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "909e43c3-dae1-42f9-8164-f182bcb14182", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b36bf51-10f1-4807-a36d-767bf8be1acb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bb34efd-7fc0-45fd-acd3-119d946d7269", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12510,Microsoft.Compute/GetVMImageFromLocation30Min;73510", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:3bb34efd-7fc0-45fd-acd3-119d946d7269", - "Expires" : "-1", - "x-ms-request-id" : "00961311-42f6-400d-b6e6-44c2a48ee6f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "9b36bf51-10f1-4807-a36d-767bf8be1acb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73a879d6-8cfd-4e26-855d-eb935cea4287", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "951d6b84-c476-4a51-92c8-6266ad6a428a", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12500,Microsoft.Compute/GetVMImageFromLocation30Min;73500", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:951d6b84-c476-4a51-92c8-6266ad6a428a", - "Expires" : "-1", - "x-ms-request-id" : "ad8ce873-20fc-4071-a406-d43226631ca1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "73a879d6-8cfd-4e26-855d-eb935cea4287", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-dd/skus/pro-20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ab71d10-cf79-4d0f-8656-6f1b279fff62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8434d9e5-02ef-4dff-95ff-b9920585bb2c", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12502,Microsoft.Compute/GetVMImageFromLocation30Min;73502", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:8434d9e5-02ef-4dff-95ff-b9920585bb2c", - "Expires" : "-1", - "x-ms-request-id" : "7d4fa0c7-d399-4c36-8582-5fc8bf809587", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-dd\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-dd/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "6ab71d10-cf79-4d0f-8656-6f1b279fff62", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-kudsec/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13be167e-5012-4938-bd54-79d8adbf715e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "833", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d56fe6c6-91a0-473b-adf9-f78bdbfc7466", - "Date" : "Tue, 24 May 2022 13:00:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9985,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:d56fe6c6-91a0-473b-adf9-f78bdbfc7466", - "Expires" : "-1", - "x-ms-request-id" : "d35d552b-3db9-4574-869f-783c6da92500", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec/Skus/22_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec/Skus/22_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "13be167e-5012-4938-bd54-79d8adbf715e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-kudsec/skus/22_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "087f81e0-2be2-4288-9fae-dfc02d7f7c0d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "323", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa556293-3039-40fe-a62b-c9ffb4bb0f29", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15950,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130052Z:fa556293-3039-40fe-a62b-c9ffb4bb0f29", - "Expires" : "-1", - "x-ms-request-id" : "cdbcfa82-3ab2-4a06-86df-38d679417560", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec/Skus/22_04/Versions/22.04.202205060\"\r\n }\r\n]", - "x-ms-client-request-id" : "087f81e0-2be2-4288-9fae-dfc02d7f7c0d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-kudsec/skus/22_04/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5a0b5d0-11c2-4c8b-aed1-d348a3e33bc5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab7ad646-050e-40f7-84e9-a20ff8d8aa14", - "Date" : "Tue, 24 May 2022 13:00:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12499,Microsoft.Compute/GetVMImageFromLocation30Min;73499", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130053Z:ab7ad646-050e-40f7-84e9-a20ff8d8aa14", - "Expires" : "-1", - "x-ms-request-id" : "2a970a8f-ca20-4d10-9398-614bbed28dfc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"22_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-kudsec\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec/Skus/22_04/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "e5a0b5d0-11c2-4c8b-aed1-d348a3e33bc5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-kudsec/skus/22_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "839401f6-1653-4aff-b635-d90fc9b3f9d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "328", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8002ad21-8d65-4e4b-81d1-e1aea76f2896", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15949,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130053Z:8002ad21-8d65-4e4b-81d1-e1aea76f2896", - "Expires" : "-1", - "x-ms-request-id" : "a20d2248-1dae-4f3c-9f07-b4b8c081e4e6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec/Skus/22_04-gen2/Versions/22.04.202205060\"\r\n }\r\n]", - "x-ms-client-request-id" : "839401f6-1653-4aff-b635-d90fc9b3f9d3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-kudsec/skus/22_04-gen2/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8d1c417-4b6e-4fe7-9604-67d978ba51d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1223", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e3bc76c-cf13-47f8-a19c-3a9c6cb13033", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12498,Microsoft.Compute/GetVMImageFromLocation30Min;73498", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130053Z:1e3bc76c-cf13-47f8-a19c-3a9c6cb13033", - "Expires" : "-1", - "x-ms-request-id" : "e8a82c56-3905-49f7-ac7e-a5162d76ae66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"22_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-kudsec\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-kudsec/Skus/22_04-gen2/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "e8d1c417-4b6e-4fe7-9604-67d978ba51d4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7e2a61c-ff3d-4214-89d3-a52b3ae60f5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "849", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c54b720-2167-4dd7-9a62-f0c8fbca89cf", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9984,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:4c54b720-2167-4dd7-9a62-f0c8fbca89cf", - "Expires" : "-1", - "x-ms-request-id" : "c51d7261-38a9-41f1-b621-be223bd4149f", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "d7e2a61c-ff3d-4214-89d3-a52b3ae60f5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2100611-dbf3-43fa-9636-b511bc762607", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "9397", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e6339b5-54e7-4a23-8f12-c30446c2a957", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15948,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:5e6339b5-54e7-4a23-8f12-c30446c2a957", - "Expires" : "-1", - "x-ms-request-id" : "24614335-f0fc-4428-808a-29d88657c1fd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202103080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "c2100611-dbf3-43fa-9636-b511bc762607", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "682347a5-f048-4f1b-8e93-6f0cbb4ea063", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee6182f3-9396-4f42-ba3f-dcd95f846db1", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12496,Microsoft.Compute/GetVMImageFromLocation30Min;73496", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:ee6182f3-9396-4f42-ba3f-dcd95f846db1", - "Expires" : "-1", - "x-ms-request-id" : "e1c6c0a7-bcaa-45a1-a896-afe3e72da0ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "682347a5-f048-4f1b-8e93-6f0cbb4ea063", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cb1e9cd-ba52-4382-a401-a8fef32a4c51", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32f12c19-2984-4ea7-aa25-027ce848e8b9", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12493,Microsoft.Compute/GetVMImageFromLocation30Min;73493", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:32f12c19-2984-4ea7-aa25-027ce848e8b9", - "Expires" : "-1", - "x-ms-request-id" : "f136f9ea-7a2e-48ca-88cb-1e60edf1b8f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "0cb1e9cd-ba52-4382-a401-a8fef32a4c51", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe651c04-80ff-4ec2-8bc2-8369a403bd6e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e6489c7-0362-459d-a27c-ca420717ace0", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12492,Microsoft.Compute/GetVMImageFromLocation30Min;73492", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:8e6489c7-0362-459d-a27c-ca420717ace0", - "Expires" : "-1", - "x-ms-request-id" : "7eede9e4-9071-40e2-802f-e9a72914fe5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "fe651c04-80ff-4ec2-8bc2-8369a403bd6e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d08828b-5e7f-4e13-bfe9-540b805c4ac8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "651f2b1f-baf2-408f-999f-1467d76fe744", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12490,Microsoft.Compute/GetVMImageFromLocation30Min;73490", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:651f2b1f-baf2-408f-999f-1467d76fe744", - "Expires" : "-1", - "x-ms-request-id" : "6cfd955b-ddeb-4da0-8e39-e2dbde2c356e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "6d08828b-5e7f-4e13-bfe9-540b805c4ac8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbb4a56c-f5b5-48d3-83fb-c0d8be7da040", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3aaf70e5-ca48-4940-859c-36d0f6e37c19", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12489,Microsoft.Compute/GetVMImageFromLocation30Min;73489", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:3aaf70e5-ca48-4940-859c-36d0f6e37c19", - "Expires" : "-1", - "x-ms-request-id" : "edcaea48-b817-432e-9994-200d6ddda6bc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "cbb4a56c-f5b5-48d3-83fb-c0d8be7da040", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf4f8133-e676-4071-9fdf-c7cbcf8b7807", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2c9f2ec-d9b7-452b-88f0-3f3b93beb51a", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12494,Microsoft.Compute/GetVMImageFromLocation30Min;73494", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:f2c9f2ec-d9b7-452b-88f0-3f3b93beb51a", - "Expires" : "-1", - "x-ms-request-id" : "2cfbc0b8-6d26-4d51-ac2c-db0bfbba4f55", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "cf4f8133-e676-4071-9fdf-c7cbcf8b7807", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06b491e9-caa7-496e-918a-72ce089c706b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b01edc26-ec12-4929-8fbd-c799a561451e", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12488,Microsoft.Compute/GetVMImageFromLocation30Min;73488", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:b01edc26-ec12-4929-8fbd-c799a561451e", - "Expires" : "-1", - "x-ms-request-id" : "fba60977-74a7-46a9-9842-b4e87ddc11d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "06b491e9-caa7-496e-918a-72ce089c706b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "333a5821-f4f3-4ecf-868f-95a1715c3f53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a29abf74-7d22-4137-bcce-4422aecda64a", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12487,Microsoft.Compute/GetVMImageFromLocation30Min;73487", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:a29abf74-7d22-4137-bcce-4422aecda64a", - "Expires" : "-1", - "x-ms-request-id" : "8cc4e97d-5fbc-4a8e-abe1-68a3747fe3b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "333a5821-f4f3-4ecf-868f-95a1715c3f53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80214533-4fbc-4ccd-b8a1-140681a83387", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e76e161-9d8d-4796-980f-84d5aa118f59", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12497,Microsoft.Compute/GetVMImageFromLocation30Min;73497", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:7e76e161-9d8d-4796-980f-84d5aa118f59", - "Expires" : "-1", - "x-ms-request-id" : "1cbe207c-8acb-4ad3-b89d-89f621710f80", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.20201014\"\r\n}", - "x-ms-client-request-id" : "80214533-4fbc-4ccd-b8a1-140681a83387", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "10737b09-bfab-4c26-8d79-edcf08bb8a27", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "46f0c2fe-8226-46cf-89fb-69d2f91117d3", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12491,Microsoft.Compute/GetVMImageFromLocation30Min;73491", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:46f0c2fe-8226-46cf-89fb-69d2f91117d3", - "Expires" : "-1", - "x-ms-request-id" : "e317a8ed-7b92-444d-8b1f-e3e2a2872fda", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "10737b09-bfab-4c26-8d79-edcf08bb8a27", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea4e4bf8-0925-4b42-b092-6ea2678b65c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "91dfa442-b0ad-4e81-9b2e-82b279afba49", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12485,Microsoft.Compute/GetVMImageFromLocation30Min;73485", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:91dfa442-b0ad-4e81-9b2e-82b279afba49", - "Expires" : "-1", - "x-ms-request-id" : "a6081185-5d5b-4ec2-9a7c-912b97c95c30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "ea4e4bf8-0925-4b42-b092-6ea2678b65c4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91d99691-d711-4722-983b-53ec2e3adeba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ddaed79b-d6f7-4081-81fa-10a8b2915c73", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12479,Microsoft.Compute/GetVMImageFromLocation30Min;73479", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:ddaed79b-d6f7-4081-81fa-10a8b2915c73", - "Expires" : "-1", - "x-ms-request-id" : "3eac653d-757c-44e5-aad2-4047a49dbd91", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "91d99691-d711-4722-983b-53ec2e3adeba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acc0cfe6-bdfc-49c1-82c5-70683dbf8a9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "532d94bd-544f-41f9-8920-d50e82f1c976", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12480,Microsoft.Compute/GetVMImageFromLocation30Min;73480", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:532d94bd-544f-41f9-8920-d50e82f1c976", - "Expires" : "-1", - "x-ms-request-id" : "0a7e5f7b-2fd8-4276-a0fe-a4df3961629e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "acc0cfe6-bdfc-49c1-82c5-70683dbf8a9f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a7631c4-5861-4170-8f8f-35272949b0dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a35afde-2890-4efd-b172-d6ae442f451f", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12478,Microsoft.Compute/GetVMImageFromLocation30Min;73478", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:5a35afde-2890-4efd-b172-d6ae442f451f", - "Expires" : "-1", - "x-ms-request-id" : "24ca2569-13ad-4ac1-a607-c0b6fd7d892d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "7a7631c4-5861-4170-8f8f-35272949b0dc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f2e3008-4c27-4fc9-837c-24c0ffcf2a6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a20aa4b-f4a0-4eb2-9a7d-54873f524f39", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12476,Microsoft.Compute/GetVMImageFromLocation30Min;73476", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:5a20aa4b-f4a0-4eb2-9a7d-54873f524f39", - "Expires" : "-1", - "x-ms-request-id" : "26b0691f-5256-48f8-95b9-04f996ec5c18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "9f2e3008-4c27-4fc9-837c-24c0ffcf2a6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e540f0b1-0a55-4458-a2a2-57c8d033c95d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c25f882d-a57e-4a54-aa30-0f10c0a9bb7e", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12482,Microsoft.Compute/GetVMImageFromLocation30Min;73482", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:c25f882d-a57e-4a54-aa30-0f10c0a9bb7e", - "Expires" : "-1", - "x-ms-request-id" : "00088bfb-24fc-4388-b0f3-75c0434d21ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "e540f0b1-0a55-4458-a2a2-57c8d033c95d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "257e28a5-bc3b-4e02-ab3d-250ce752406a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "253b0ff7-913e-4100-b736-d6dacae2c8f5", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12481,Microsoft.Compute/GetVMImageFromLocation30Min;73481", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:253b0ff7-913e-4100-b736-d6dacae2c8f5", - "Expires" : "-1", - "x-ms-request-id" : "c5bd6557-0a8b-4420-b91f-26286558f298", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "257e28a5-bc3b-4e02-ab3d-250ce752406a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87ac9dd8-15e2-49cc-a772-9b4c6d0c4839", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9596ed4c-b0bd-4e59-b857-8cb832101267", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12484,Microsoft.Compute/GetVMImageFromLocation30Min;73484", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:9596ed4c-b0bd-4e59-b857-8cb832101267", - "Expires" : "-1", - "x-ms-request-id" : "776c213f-571d-479d-8206-76314dce4df8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "87ac9dd8-15e2-49cc-a772-9b4c6d0c4839", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9b0d87b-be89-4ae6-8a60-ad52c92a6fad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6396c20f-48e1-4ac4-b0b5-a23d38a314f4", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12483,Microsoft.Compute/GetVMImageFromLocation30Min;73483", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:6396c20f-48e1-4ac4-b0b5-a23d38a314f4", - "Expires" : "-1", - "x-ms-request-id" : "be154e12-f56f-43fb-b5e9-207b65a6e49d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "d9b0d87b-be89-4ae6-8a60-ad52c92a6fad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01af749f-1aab-4eed-aa9f-04a5445e0290", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc4d926e-0760-4f0d-99f1-3bb628d6b449", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12477,Microsoft.Compute/GetVMImageFromLocation30Min;73477", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:dc4d926e-0760-4f0d-99f1-3bb628d6b449", - "Expires" : "-1", - "x-ms-request-id" : "ba6aa6a2-ff7b-4880-931a-237167e4661d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "01af749f-1aab-4eed-aa9f-04a5445e0290", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20760490-5d40-4746-9f71-f2cfb28e5e1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d07fbea-bbce-4b0d-ae57-5f3db5a597c2", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12475,Microsoft.Compute/GetVMImageFromLocation30Min;73475", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:5d07fbea-bbce-4b0d-ae57-5f3db5a597c2", - "Expires" : "-1", - "x-ms-request-id" : "709d515d-5123-4230-9ff2-36c4990d0cd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "20760490-5d40-4746-9f71-f2cfb28e5e1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8e9d3ea-988c-4e9a-a8c0-2846d1923d00", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2517589-a04b-499a-a85c-d4a7d4d5c84d", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12474,Microsoft.Compute/GetVMImageFromLocation30Min;73474", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:c2517589-a04b-499a-a85c-d4a7d4d5c84d", - "Expires" : "-1", - "x-ms-request-id" : "ab9db68c-27bb-45ad-8920-5c2c037c3ca0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "d8e9d3ea-988c-4e9a-a8c0-2846d1923d00", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0670c5a-89fb-4bc9-ab0a-1a1655c2c956", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c8f8dc6-1301-42f3-818a-4431c1b00f9a", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12473,Microsoft.Compute/GetVMImageFromLocation30Min;73473", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:7c8f8dc6-1301-42f3-818a-4431c1b00f9a", - "Expires" : "-1", - "x-ms-request-id" : "cb8d4f23-205a-4d74-ab86-bdc6ba18349b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "d0670c5a-89fb-4bc9-ab0a-1a1655c2c956", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2b92f94-94b8-4ea5-b47a-9c46bc1b97ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "655d66fb-af76-4528-a589-efa8e692cc8b", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12495,Microsoft.Compute/GetVMImageFromLocation30Min;73495", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:655d66fb-af76-4528-a589-efa8e692cc8b", - "Expires" : "-1", - "x-ms-request-id" : "b474e328-206c-48c6-83f6-f605c3967247", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "f2b92f94-94b8-4ea5-b47a-9c46bc1b97ce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b071d0f-0cce-4a77-9708-70563bc55b8b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9aa6cdd-2a16-4364-adeb-7d36970b67fd", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12486,Microsoft.Compute/GetVMImageFromLocation30Min;73486", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:c9aa6cdd-2a16-4364-adeb-7d36970b67fd", - "Expires" : "-1", - "x-ms-request-id" : "3609b1c6-0679-4ba4-b0c4-3c989dc8a8a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "2b071d0f-0cce-4a77-9708-70563bc55b8b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0df3f69-073e-4084-88c4-531190bc6e9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f79d7b3-9fde-463e-a5c2-af377e798021", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12472,Microsoft.Compute/GetVMImageFromLocation30Min;73472", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:6f79d7b3-9fde-463e-a5c2-af377e798021", - "Expires" : "-1", - "x-ms-request-id" : "b1bb8c43-b1df-45df-a914-c98a644eed9e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "d0df3f69-073e-4084-88c4-531190bc6e9d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "affc882a-d4c8-4d93-8760-9ea084aa33e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b2c0935-a275-460c-b2f1-67f6686aae8a", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12470,Microsoft.Compute/GetVMImageFromLocation30Min;73470", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:0b2c0935-a275-460c-b2f1-67f6686aae8a", - "Expires" : "-1", - "x-ms-request-id" : "4ad0ff3a-3ed4-4a61-b42a-806efab20305", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "affc882a-d4c8-4d93-8760-9ea084aa33e5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202103080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c36532a4-af36-4840-a557-3d176b5d9806", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f39ba21c-a9a8-4816-887d-1cf2a3000fe5", - "Date" : "Tue, 24 May 2022 13:00:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12469,Microsoft.Compute/GetVMImageFromLocation30Min;73469", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:f39ba21c-a9a8-4816-887d-1cf2a3000fe5", - "Expires" : "-1", - "x-ms-request-id" : "861652a2-d5af-4d40-999a-9708ae005072", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202103080\"\r\n}", - "x-ms-client-request-id" : "c36532a4-af36-4840-a557-3d176b5d9806", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "213db62e-e498-4e20-b70c-4c5213f834a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed82182a-47ce-4b2a-8778-fc08faba5c12", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12471,Microsoft.Compute/GetVMImageFromLocation30Min;73471", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:ed82182a-47ce-4b2a-8778-fc08faba5c12", - "Expires" : "-1", - "x-ms-request-id" : "bdb369e6-9ebd-4d52-a48d-aa2a4268de63", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "213db62e-e498-4e20-b70c-4c5213f834a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9174b5c5-404a-4bc6-bc60-1c157b889f1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7570", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ca815f5-7991-4347-8e83-c3d35b314915", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15947,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130054Z:9ca815f5-7991-4347-8e83-c3d35b314915", - "Expires" : "-1", - "x-ms-request-id" : "3f03f16f-d60f-4b7d-a8cd-50f983ec86de", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "9174b5c5-404a-4bc6-bc60-1c157b889f1c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0be809d6-bac1-4887-b7be-6dd0933faea3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58fc37e6-0902-4fa0-9fb6-6b3c18080dde", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12468,Microsoft.Compute/GetVMImageFromLocation30Min;73468", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:58fc37e6-0902-4fa0-9fb6-6b3c18080dde", - "Expires" : "-1", - "x-ms-request-id" : "8bf08ec4-dd07-41bf-b453-ecd471be02cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "0be809d6-bac1-4887-b7be-6dd0933faea3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6ab2f3e-005a-4c52-89f7-ad26aa0d45dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08a3b5d8-6a16-4354-a0bd-9636b8c35ec5", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12467,Microsoft.Compute/GetVMImageFromLocation30Min;73467", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:08a3b5d8-6a16-4354-a0bd-9636b8c35ec5", - "Expires" : "-1", - "x-ms-request-id" : "a6c7c3fc-092d-48b4-85ea-1568ff9a31a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "f6ab2f3e-005a-4c52-89f7-ad26aa0d45dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "820b6194-10c9-4fc6-9781-6b75b6b2da1a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89e6aa5b-0cfe-4599-82bb-e532be6c221d", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12466,Microsoft.Compute/GetVMImageFromLocation30Min;73466", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:89e6aa5b-0cfe-4599-82bb-e532be6c221d", - "Expires" : "-1", - "x-ms-request-id" : "cf4f8e26-1ff4-44c1-ab1c-584eb6934a5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "820b6194-10c9-4fc6-9781-6b75b6b2da1a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5ef76b9-464e-4ca1-9fa5-0ad155e666c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5722612-1b5e-4fe8-9f20-ff9e52c7d661", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12464,Microsoft.Compute/GetVMImageFromLocation30Min;73464", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:a5722612-1b5e-4fe8-9f20-ff9e52c7d661", - "Expires" : "-1", - "x-ms-request-id" : "b442839c-d798-48b1-991b-e380b73e7517", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "f5ef76b9-464e-4ca1-9fa5-0ad155e666c1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b42549d4-c680-463f-a630-21e2ff1d8ed6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93a2d737-0cc1-4f66-a8fa-40fc5bdd36ab", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12462,Microsoft.Compute/GetVMImageFromLocation30Min;73462", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:93a2d737-0cc1-4f66-a8fa-40fc5bdd36ab", - "Expires" : "-1", - "x-ms-request-id" : "c1615369-bc46-4623-b841-63c831584744", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "b42549d4-c680-463f-a630-21e2ff1d8ed6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "71a685c7-e74a-48f6-8a1e-d3b6e4eb36e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f77f8a7-3ec2-45dd-9780-b09f3f016055", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12465,Microsoft.Compute/GetVMImageFromLocation30Min;73465", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:4f77f8a7-3ec2-45dd-9780-b09f3f016055", - "Expires" : "-1", - "x-ms-request-id" : "4040daa7-38a2-428e-a7eb-94a46a7a3a23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "71a685c7-e74a-48f6-8a1e-d3b6e4eb36e4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37c66381-95f8-4e38-8a48-4d54c8f580e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1034de66-07e5-452f-8ba0-10356a7ba874", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12458,Microsoft.Compute/GetVMImageFromLocation30Min;73458", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:1034de66-07e5-452f-8ba0-10356a7ba874", - "Expires" : "-1", - "x-ms-request-id" : "925eefff-105f-4949-8ea5-1ba8e15648e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "37c66381-95f8-4e38-8a48-4d54c8f580e2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ee7deba-ef14-46a6-b0d6-4d053242844f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0e2c59e-f75a-4669-be64-8b524e4a6211", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12457,Microsoft.Compute/GetVMImageFromLocation30Min;73457", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:a0e2c59e-f75a-4669-be64-8b524e4a6211", - "Expires" : "-1", - "x-ms-request-id" : "63b9b600-9a31-4ea3-ad76-c962040fbe48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "0ee7deba-ef14-46a6-b0d6-4d053242844f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fb89eff-3f99-4e13-9850-0179bc6c882f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6fb0a85b-35e1-4f62-bd2b-6c297a43c97f", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12454,Microsoft.Compute/GetVMImageFromLocation30Min;73454", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:6fb0a85b-35e1-4f62-bd2b-6c297a43c97f", - "Expires" : "-1", - "x-ms-request-id" : "7694b6d6-7355-4a45-a7e4-640416780529", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "3fb89eff-3f99-4e13-9850-0179bc6c882f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bdb43363-57e7-45ad-88fd-4fac3b5b1f71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d203c4d8-8290-4c4d-bf16-d0251e732420", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12455,Microsoft.Compute/GetVMImageFromLocation30Min;73455", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:d203c4d8-8290-4c4d-bf16-d0251e732420", - "Expires" : "-1", - "x-ms-request-id" : "bc74e400-2217-4701-a315-1a4b5acff0cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "bdb43363-57e7-45ad-88fd-4fac3b5b1f71", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2bed8085-a3ab-4b9b-95ed-819a86651367", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ddfdcfd-1070-4cf1-ac54-ee98d35c432b", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12460,Microsoft.Compute/GetVMImageFromLocation30Min;73460", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:4ddfdcfd-1070-4cf1-ac54-ee98d35c432b", - "Expires" : "-1", - "x-ms-request-id" : "ded64232-0dfe-411c-a5b1-fc5452ef4078", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "2bed8085-a3ab-4b9b-95ed-819a86651367", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86eeb851-3e4a-4a95-9740-5551e8985ace", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d0f5bcb-bde8-42e4-ab09-0d62e397b121", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12452,Microsoft.Compute/GetVMImageFromLocation30Min;73452", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:4d0f5bcb-bde8-42e4-ab09-0d62e397b121", - "Expires" : "-1", - "x-ms-request-id" : "6552c7d3-4292-4944-a4af-4621df191303", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "86eeb851-3e4a-4a95-9740-5551e8985ace", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08b31435-d74d-4324-813a-351758ca94a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b278a256-1b2c-48b2-b0a2-1872bdb06503", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12459,Microsoft.Compute/GetVMImageFromLocation30Min;73459", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:b278a256-1b2c-48b2-b0a2-1872bdb06503", - "Expires" : "-1", - "x-ms-request-id" : "0c735cdd-5569-411c-88e8-1edcc39532b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "08b31435-d74d-4324-813a-351758ca94a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "897c84c5-f76d-40fa-89af-35145694b2f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d54590a-3277-4a1b-bc20-031555e97bc9", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12451,Microsoft.Compute/GetVMImageFromLocation30Min;73451", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:9d54590a-3277-4a1b-bc20-031555e97bc9", - "Expires" : "-1", - "x-ms-request-id" : "8bed7ac0-9198-42f6-878e-10ea8423f213", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "897c84c5-f76d-40fa-89af-35145694b2f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "efa8e5d1-4cc7-48f0-a8f8-1ad2e0630fb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e1b5b11-e665-448b-acb8-daa0c82dcb01", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12463,Microsoft.Compute/GetVMImageFromLocation30Min;73463", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:4e1b5b11-e665-448b-acb8-daa0c82dcb01", - "Expires" : "-1", - "x-ms-request-id" : "45c323db-929b-4e49-a085-49ea60acef73", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "efa8e5d1-4cc7-48f0-a8f8-1ad2e0630fb7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "099fa0b4-21be-4615-a667-0965ba4ad28a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "11765914-100f-4aca-a601-30ff1822fb6b", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12453,Microsoft.Compute/GetVMImageFromLocation30Min;73453", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:11765914-100f-4aca-a601-30ff1822fb6b", - "Expires" : "-1", - "x-ms-request-id" : "44da5531-11f5-4f5a-af0b-922a28065078", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "099fa0b4-21be-4615-a667-0965ba4ad28a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec980010-69f6-4bdf-81e3-7f030ffc73d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15b759f8-1bad-46eb-b353-ba00375f3be7", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12449,Microsoft.Compute/GetVMImageFromLocation30Min;73449", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:15b759f8-1bad-46eb-b353-ba00375f3be7", - "Expires" : "-1", - "x-ms-request-id" : "fe190be3-dec4-4cbe-b8be-f309a2532d22", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "ec980010-69f6-4bdf-81e3-7f030ffc73d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "758c2cba-9ceb-4b15-8f5b-a29437533f56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4be0bb73-0bda-483b-9025-a4d57cccfe2a", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12456,Microsoft.Compute/GetVMImageFromLocation30Min;73456", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:4be0bb73-0bda-483b-9025-a4d57cccfe2a", - "Expires" : "-1", - "x-ms-request-id" : "b951da9c-e66f-45fb-b2ea-a15b3c78b85c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "758c2cba-9ceb-4b15-8f5b-a29437533f56", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f53a826-b500-473c-87d8-794a3b343a29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7dc8cf4a-bf64-44e7-8fa2-d378ce1cedbe", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12448,Microsoft.Compute/GetVMImageFromLocation30Min;73448", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:7dc8cf4a-bf64-44e7-8fa2-d378ce1cedbe", - "Expires" : "-1", - "x-ms-request-id" : "d47f9184-5245-4157-9f1b-ee3c73c9a8ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "4f53a826-b500-473c-87d8-794a3b343a29", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32faed1f-c449-462a-9c5f-c66d63fcbac4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "802079b8-ea1a-4e60-8fbd-25e96777b2b8", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12446,Microsoft.Compute/GetVMImageFromLocation30Min;73446", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:802079b8-ea1a-4e60-8fbd-25e96777b2b8", - "Expires" : "-1", - "x-ms-request-id" : "c1d07f84-100c-4721-9966-6ea286a5c633", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "32faed1f-c449-462a-9c5f-c66d63fcbac4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "666c419c-ba6f-4ecb-9491-33b0ef9d3a20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "183dc421-2139-43bc-8f2f-34ce9a63bc55", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12450,Microsoft.Compute/GetVMImageFromLocation30Min;73450", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:183dc421-2139-43bc-8f2f-34ce9a63bc55", - "Expires" : "-1", - "x-ms-request-id" : "08d47972-50b1-40d6-9d6f-dbd1e87de000", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "666c419c-ba6f-4ecb-9491-33b0ef9d3a20", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f0ce1ac-d66c-44b6-b847-205867dcbefa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8cfbeb3-e8f2-4ab6-8a59-43cf21a38fbd", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12447,Microsoft.Compute/GetVMImageFromLocation30Min;73447", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:f8cfbeb3-e8f2-4ab6-8a59-43cf21a38fbd", - "Expires" : "-1", - "x-ms-request-id" : "0b6571cd-4cea-452c-a270-e87e6261d514", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "8f0ce1ac-d66c-44b6-b847-205867dcbefa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-nestle/skus/pro-18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88de596c-c8a2-4f65-a92b-cf49e1d6bcb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30934f23-49c6-46e9-82a1-4591a3935aaa", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12461,Microsoft.Compute/GetVMImageFromLocation30Min;73461", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:30934f23-49c6-46e9-82a1-4591a3935aaa", - "Expires" : "-1", - "x-ms-request-id" : "461477f4-e665-4484-89b0-faeef41861a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-nestle\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-nestle/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "88de596c-c8a2-4f65-a92b-cf49e1d6bcb7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f969184d-6d03-4f0b-b462-2816b15e8c4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1715", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47a26a94-148f-4e67-a40f-711a8297d26f", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9983,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:47a26a94-148f-4e67-a40f-711a8297d26f", - "Expires" : "-1", - "x-ms-request-id" : "23b6d8b6-2540-4537-93ff-5903388a56f0", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "f969184d-6d03-4f0b-b462-2816b15e8c4a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb2411fc-b3d7-49da-801a-0145b19b6962", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6805", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a8ae21b-202e-4ad8-946d-67ab92ec99e0", - "Date" : "Tue, 24 May 2022 13:00:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15946,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130055Z:3a8ae21b-202e-4ad8-946d-67ab92ec99e0", - "Expires" : "-1", - "x-ms-request-id" : "b6a532f3-804c-45ac-b8b3-23717c889c7c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "fb2411fc-b3d7-49da-801a-0145b19b6962", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e13cae7f-505f-4877-9f36-8bc41ba38c8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51594974-6460-4afc-a7b4-0a014cd804d9", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12445,Microsoft.Compute/GetVMImageFromLocation30Min;73445", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:51594974-6460-4afc-a7b4-0a014cd804d9", - "Expires" : "-1", - "x-ms-request-id" : "bd8346e9-d7c4-4447-b22f-585150037626", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.20201014\"\r\n}", - "x-ms-client-request-id" : "e13cae7f-505f-4877-9f36-8bc41ba38c8a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5cef57e-35c1-42b3-8b50-1519d7a27096", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2eca22e7-2c76-46c0-b957-30b45258999b", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12442,Microsoft.Compute/GetVMImageFromLocation30Min;73442", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:2eca22e7-2c76-46c0-b957-30b45258999b", - "Expires" : "-1", - "x-ms-request-id" : "401aeeda-de7b-4d36-a319-a5a726c8412b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "b5cef57e-35c1-42b3-8b50-1519d7a27096", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9803b0b-4c3c-45cc-bc46-d4149d3a882b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d6b0eac-389f-4da2-9d16-58ed9b60613e", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12438,Microsoft.Compute/GetVMImageFromLocation30Min;73438", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:0d6b0eac-389f-4da2-9d16-58ed9b60613e", - "Expires" : "-1", - "x-ms-request-id" : "6c1d6764-c408-4163-97eb-623b2d6fe735", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "c9803b0b-4c3c-45cc-bc46-d4149d3a882b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88a49a01-6f98-4129-afc7-be01996a1e67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "482b2e6c-7093-4c34-a143-9a643e5a7cdf", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12439,Microsoft.Compute/GetVMImageFromLocation30Min;73439", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:482b2e6c-7093-4c34-a143-9a643e5a7cdf", - "Expires" : "-1", - "x-ms-request-id" : "e66b581e-4a62-4df4-9721-d29119357a9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "88a49a01-6f98-4129-afc7-be01996a1e67", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "036b4ac3-ff63-453b-aa0a-a130e4ea15dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b19b6f02-f226-4461-963f-f75385c51fa6", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12440,Microsoft.Compute/GetVMImageFromLocation30Min;73440", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:b19b6f02-f226-4461-963f-f75385c51fa6", - "Expires" : "-1", - "x-ms-request-id" : "0f78647b-9831-4666-b9fd-ff2a96300724", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "036b4ac3-ff63-453b-aa0a-a130e4ea15dc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c6fe971-9677-405d-a7d7-398011f5098e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c999fb9-03de-4741-87e7-f79aff280d4d", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12436,Microsoft.Compute/GetVMImageFromLocation30Min;73436", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:4c999fb9-03de-4741-87e7-f79aff280d4d", - "Expires" : "-1", - "x-ms-request-id" : "9ed518c6-dcab-469f-93a5-b468eb58dc62", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "0c6fe971-9677-405d-a7d7-398011f5098e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "99de80ad-4c27-443c-b4c8-37f3c4685770", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e7f80f5-c125-4c5d-b83c-e8c48cee6778", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12435,Microsoft.Compute/GetVMImageFromLocation30Min;73435", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:8e7f80f5-c125-4c5d-b83c-e8c48cee6778", - "Expires" : "-1", - "x-ms-request-id" : "dbe41cf2-a6de-4e11-86db-7de8e554a437", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "99de80ad-4c27-443c-b4c8-37f3c4685770", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b2ae3cf-7dff-4e3a-b43d-be943abf2c9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9100003c-cad7-492d-95a0-3b900a4c51a8", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12444,Microsoft.Compute/GetVMImageFromLocation30Min;73444", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:9100003c-cad7-492d-95a0-3b900a4c51a8", - "Expires" : "-1", - "x-ms-request-id" : "73213b88-a7b8-466c-ba54-65d60f1af48c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "4b2ae3cf-7dff-4e3a-b43d-be943abf2c9c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b45115d6-741e-43e1-abf7-389de1ec7cee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2eea41a7-f6bf-4e80-9d2e-8e118f80e4c7", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12432,Microsoft.Compute/GetVMImageFromLocation30Min;73432", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:2eea41a7-f6bf-4e80-9d2e-8e118f80e4c7", - "Expires" : "-1", - "x-ms-request-id" : "4b45bfaa-1cc8-4ff3-96a6-cc44217880fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "b45115d6-741e-43e1-abf7-389de1ec7cee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f2c187a-fba2-45dd-806d-feb316a7fe97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6b24b75-5eee-4733-9bec-894aa54b4675", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12434,Microsoft.Compute/GetVMImageFromLocation30Min;73434", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:f6b24b75-5eee-4733-9bec-894aa54b4675", - "Expires" : "-1", - "x-ms-request-id" : "ae505a95-6f34-4913-a36d-edb68cfc735b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "8f2c187a-fba2-45dd-806d-feb316a7fe97", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "353843ff-12b5-47c8-ab24-b186bdec5ed6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0777bdf3-bb68-47c8-8659-9d1fd063dce8", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12437,Microsoft.Compute/GetVMImageFromLocation30Min;73437", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:0777bdf3-bb68-47c8-8659-9d1fd063dce8", - "Expires" : "-1", - "x-ms-request-id" : "dd7b3b8f-f574-4bd5-ac58-ab50fdb62056", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "353843ff-12b5-47c8-ab24-b186bdec5ed6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57e74527-7f02-49ad-aef3-65d58e96bee0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed5b7469-1de4-4245-9adb-d0a8ef357c49", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12431,Microsoft.Compute/GetVMImageFromLocation30Min;73431", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:ed5b7469-1de4-4245-9adb-d0a8ef357c49", - "Expires" : "-1", - "x-ms-request-id" : "327e9a8b-a88c-4978-95d0-af8f33418cd8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "57e74527-7f02-49ad-aef3-65d58e96bee0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "49724bb4-e644-4d5d-8761-9a134563c993", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5cd6a3b-117f-4a37-a9e6-b6b217fc03dc", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12430,Microsoft.Compute/GetVMImageFromLocation30Min;73430", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:a5cd6a3b-117f-4a37-a9e6-b6b217fc03dc", - "Expires" : "-1", - "x-ms-request-id" : "82c1f0cf-ea48-49e5-b28e-83bf48354bc9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "49724bb4-e644-4d5d-8761-9a134563c993", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7aca757-6a91-464b-91d9-5df6e0d72189", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54ac9b7c-6cb9-44de-a835-661d7a1ad82a", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12428,Microsoft.Compute/GetVMImageFromLocation30Min;73428", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:54ac9b7c-6cb9-44de-a835-661d7a1ad82a", - "Expires" : "-1", - "x-ms-request-id" : "a1064024-9232-4082-bb49-02b5464fcf7f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "c7aca757-6a91-464b-91d9-5df6e0d72189", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c84dccd-531e-4ec3-995a-c150f03f62d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4fc1bf7-fdc8-4d54-9526-f8a5ae341f03", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12427,Microsoft.Compute/GetVMImageFromLocation30Min;73427", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:d4fc1bf7-fdc8-4d54-9526-f8a5ae341f03", - "Expires" : "-1", - "x-ms-request-id" : "6473a27c-ff6f-43fa-840f-25c08022d532", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "0c84dccd-531e-4ec3-995a-c150f03f62d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "efe0e9c8-f377-4587-bd88-4f0272d59e45", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "870a5d74-3d01-4916-a7bb-ce213c456fc1", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12429,Microsoft.Compute/GetVMImageFromLocation30Min;73429", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:870a5d74-3d01-4916-a7bb-ce213c456fc1", - "Expires" : "-1", - "x-ms-request-id" : "a2d73d1f-d02d-4676-bb99-e79b8647c7a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "efe0e9c8-f377-4587-bd88-4f0272d59e45", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29106b12-a469-473e-9e1b-e8b68255588a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64eda9e8-7820-4ec6-988c-b2eded550d4c", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12426,Microsoft.Compute/GetVMImageFromLocation30Min;73426", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:64eda9e8-7820-4ec6-988c-b2eded550d4c", - "Expires" : "-1", - "x-ms-request-id" : "7aff9cab-e714-4682-a57f-3bbdb628f79c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "29106b12-a469-473e-9e1b-e8b68255588a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dba8cd01-d755-45f0-a4c8-2c30e6e40943", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d137f25a-8c75-49de-9b5f-538448dfa1cd", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12425,Microsoft.Compute/GetVMImageFromLocation30Min;73425", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:d137f25a-8c75-49de-9b5f-538448dfa1cd", - "Expires" : "-1", - "x-ms-request-id" : "88167e07-3e46-4ce3-88ab-eb871166c53a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "dba8cd01-d755-45f0-a4c8-2c30e6e40943", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b97ed86-a222-4ed0-a78e-50e3e6d4ab7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc97c20e-132c-4bbb-8eb8-392fc885ace3", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12433,Microsoft.Compute/GetVMImageFromLocation30Min;73433", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:bc97c20e-132c-4bbb-8eb8-392fc885ace3", - "Expires" : "-1", - "x-ms-request-id" : "c47b7f09-50dd-4207-a1c8-b110be20ad5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "3b97ed86-a222-4ed0-a78e-50e3e6d4ab7c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06872bf0-6e41-498e-9c78-9a03991c9ae8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23e4869f-9a8f-4fcf-a38e-d4902d58615c", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12443,Microsoft.Compute/GetVMImageFromLocation30Min;73443", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:23e4869f-9a8f-4fcf-a38e-d4902d58615c", - "Expires" : "-1", - "x-ms-request-id" : "0eaaf2f3-5165-41b0-9745-11a535663efe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "06872bf0-6e41-498e-9c78-9a03991c9ae8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7cd73e0e-c7c5-4a0d-8a2d-4b64fda47c7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1a1294b-0b32-4ab6-9513-79638fadfb23", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12441,Microsoft.Compute/GetVMImageFromLocation30Min;73441", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:e1a1294b-0b32-4ab6-9513-79638fadfb23", - "Expires" : "-1", - "x-ms-request-id" : "4f6fedd3-a7a2-4a8c-8dc0-c95492d6f398", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "7cd73e0e-c7c5-4a0d-8a2d-4b64fda47c7e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f334ce8-eae5-4834-85c0-be6ae145b4f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5267", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70e6a3a0-f149-4e40-93e1-7328e3166ac6", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15945,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:70e6a3a0-f149-4e40-93e1-7328e3166ac6", - "Expires" : "-1", - "x-ms-request-id" : "9c42c44a-0429-4f05-87ee-e5e1923ac6cc", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "9f334ce8-eae5-4834-85c0-be6ae145b4f8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90b8570f-f26e-4583-9ac4-b883bc88b2b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f3e2ace-0ea5-431d-9549-383eff59b8b5", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12424,Microsoft.Compute/GetVMImageFromLocation30Min;73424", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:1f3e2ace-0ea5-431d-9549-383eff59b8b5", - "Expires" : "-1", - "x-ms-request-id" : "3b173be0-d08e-481e-899e-d680e94700be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "90b8570f-f26e-4583-9ac4-b883bc88b2b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cb0490c-29d0-4803-868c-29879bdcf87d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83e78fa4-e4f7-4ddb-b010-e7d48ab9ad7b", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12421,Microsoft.Compute/GetVMImageFromLocation30Min;73421", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:83e78fa4-e4f7-4ddb-b010-e7d48ab9ad7b", - "Expires" : "-1", - "x-ms-request-id" : "985800d0-ec16-47c4-b9dc-ba68781c53a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "4cb0490c-29d0-4803-868c-29879bdcf87d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "deaa2871-6514-4a0c-9fa3-b6108550a01b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c923406-f308-4609-9acb-7b925cea2c34", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12422,Microsoft.Compute/GetVMImageFromLocation30Min;73422", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:9c923406-f308-4609-9acb-7b925cea2c34", - "Expires" : "-1", - "x-ms-request-id" : "5057c8ea-9f80-41d3-b58a-b516563f0c5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "deaa2871-6514-4a0c-9fa3-b6108550a01b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fdf0a7f-8300-48df-b2a1-fd857e51f2f6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aca12239-9a1a-4f27-8ac0-2de52031fd98", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12420,Microsoft.Compute/GetVMImageFromLocation30Min;73420", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:aca12239-9a1a-4f27-8ac0-2de52031fd98", - "Expires" : "-1", - "x-ms-request-id" : "9eef0e69-f8c0-4eac-9721-9127c4aac5b4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "8fdf0a7f-8300-48df-b2a1-fd857e51f2f6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dff0a4a5-c642-4ef2-b1f0-959fd7a11d71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "509b24ad-0e7e-47c7-838d-afd055609120", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12417,Microsoft.Compute/GetVMImageFromLocation30Min;73417", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:509b24ad-0e7e-47c7-838d-afd055609120", - "Expires" : "-1", - "x-ms-request-id" : "cfb38312-04b0-4b44-8235-03ab5ca49432", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "dff0a4a5-c642-4ef2-b1f0-959fd7a11d71", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c673d99-f12f-482c-af35-e34dddddc4f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "881a3dc5-1ba9-4dc7-9fbf-654f39ea31d6", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12416,Microsoft.Compute/GetVMImageFromLocation30Min;73416", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:881a3dc5-1ba9-4dc7-9fbf-654f39ea31d6", - "Expires" : "-1", - "x-ms-request-id" : "15fcd714-56d7-451e-aa6d-5d637e29abc8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "5c673d99-f12f-482c-af35-e34dddddc4f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "49803ffc-25fe-4035-b2e1-daaf7a09e0e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0186a3e-d93f-44e1-8bfb-a70e9b2d5520", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12414,Microsoft.Compute/GetVMImageFromLocation30Min;73414", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:b0186a3e-d93f-44e1-8bfb-a70e9b2d5520", - "Expires" : "-1", - "x-ms-request-id" : "1eb3f65a-1f82-40d2-9b7e-a7ff51f0bcb5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "49803ffc-25fe-4035-b2e1-daaf7a09e0e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52173dea-bceb-4db9-a3f6-2278f3570319", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d28220cd-018d-4642-9544-78f92237a0b4", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12415,Microsoft.Compute/GetVMImageFromLocation30Min;73415", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:d28220cd-018d-4642-9544-78f92237a0b4", - "Expires" : "-1", - "x-ms-request-id" : "5e4dc714-cdda-4074-a60b-f58093d1c96c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "52173dea-bceb-4db9-a3f6-2278f3570319", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f98d8e32-7190-4810-8eee-0d349c9d01e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9e7ccd7-d106-46a6-9f6f-4037bfa7e506", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12418,Microsoft.Compute/GetVMImageFromLocation30Min;73418", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:f9e7ccd7-d106-46a6-9f6f-4037bfa7e506", - "Expires" : "-1", - "x-ms-request-id" : "68d47661-16ba-4160-a436-caaf38ef6885", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "f98d8e32-7190-4810-8eee-0d349c9d01e5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41d5b6ef-7aad-4111-858d-25f409519181", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4859478c-86b8-4e26-a80e-7e2e30e3025a", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12413,Microsoft.Compute/GetVMImageFromLocation30Min;73413", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:4859478c-86b8-4e26-a80e-7e2e30e3025a", - "Expires" : "-1", - "x-ms-request-id" : "9cb3bfe1-4dfb-4ddf-b970-33d2971848ad", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "41d5b6ef-7aad-4111-858d-25f409519181", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72d45d94-72e1-4acb-b9b1-c49d63bc8fab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6465f045-17a6-4cb2-8017-e4dc5c84dc4d", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12423,Microsoft.Compute/GetVMImageFromLocation30Min;73423", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:6465f045-17a6-4cb2-8017-e4dc5c84dc4d", - "Expires" : "-1", - "x-ms-request-id" : "f7731286-e8b7-4c55-b444-65443bab55a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "72d45d94-72e1-4acb-b9b1-c49d63bc8fab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12ec7edd-0333-4c59-9736-a36b598638c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e9f1726-40dc-49b8-aaa6-b13f25d4a864", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12412,Microsoft.Compute/GetVMImageFromLocation30Min;73412", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:7e9f1726-40dc-49b8-aaa6-b13f25d4a864", - "Expires" : "-1", - "x-ms-request-id" : "504d282c-6ae6-4d49-ad26-edb82157c93f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "12ec7edd-0333-4c59-9736-a36b598638c4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8864cf2-cfb0-4ce0-92c7-8d7fbf3e10dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8b4b7f7-f09c-4147-baab-defa41fec6b7", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12419,Microsoft.Compute/GetVMImageFromLocation30Min;73419", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:d8b4b7f7-f09c-4147-baab-defa41fec6b7", - "Expires" : "-1", - "x-ms-request-id" : "02adbaf4-73b1-44b1-b74d-32d85ed08299", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "d8864cf2-cfb0-4ce0-92c7-8d7fbf3e10dc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb51a935-3cf2-4ffb-93aa-efb103aad4a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e030626-f271-4fbe-8157-9be87116bbdd", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12411,Microsoft.Compute/GetVMImageFromLocation30Min;73411", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:0e030626-f271-4fbe-8157-9be87116bbdd", - "Expires" : "-1", - "x-ms-request-id" : "42fd9abb-42fe-4a9f-8409-c315c80c955d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "cb51a935-3cf2-4ffb-93aa-efb103aad4a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad15b118-b809-42fe-a9ab-2e51ea92201a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e64f6658-15f6-495c-826a-2bbd6022458d", - "Date" : "Tue, 24 May 2022 13:00:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12410,Microsoft.Compute/GetVMImageFromLocation30Min;73410", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:e64f6658-15f6-495c-826a-2bbd6022458d", - "Expires" : "-1", - "x-ms-request-id" : "e70d8916-3c86-4e9e-be6c-70134cb63f90", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "ad15b118-b809-42fe-a9ab-2e51ea92201a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46eadbdc-e700-4ec4-bd53-7d446e16a716", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "033c78fc-9248-429e-ae92-f46337078f9d", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12409,Microsoft.Compute/GetVMImageFromLocation30Min;73409", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130056Z:033c78fc-9248-429e-ae92-f46337078f9d", - "Expires" : "-1", - "x-ms-request-id" : "2af85b1f-7a08-459a-a795-a41e75fbb5be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "46eadbdc-e700-4ec4-bd53-7d446e16a716", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0a7bf49-094d-4e73-936d-dae2ac6d9719", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4998", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75415dd1-2f18-40c3-b032-d4892127b616", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15944,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:75415dd1-2f18-40c3-b032-d4892127b616", - "Expires" : "-1", - "x-ms-request-id" : "d873075f-ca00-43e6-86fb-083c4474bd6e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202010201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202104130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202105260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "a0a7bf49-094d-4e73-936d-dae2ac6d9719", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43fd44a7-158d-48fa-a617-fe24f67ae7d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9ae32ad-523b-4d34-a416-8cee910fe7a6", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12407,Microsoft.Compute/GetVMImageFromLocation30Min;73407", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:e9ae32ad-523b-4d34-a416-8cee910fe7a6", - "Expires" : "-1", - "x-ms-request-id" : "8c8a810c-8b61-438b-8b8f-46ecb32651ff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "43fd44a7-158d-48fa-a617-fe24f67ae7d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202010201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d696210d-d0ef-4f89-a37f-e027b7cddfb3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0b3276c-a786-41b6-be73-8640af6b2d23", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12405,Microsoft.Compute/GetVMImageFromLocation30Min;73405", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:c0b3276c-a786-41b6-be73-8640af6b2d23", - "Expires" : "-1", - "x-ms-request-id" : "f14f77b0-b3e3-4947-ac1d-18f3c7880a4c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202010201\"\r\n}", - "x-ms-client-request-id" : "d696210d-d0ef-4f89-a37f-e027b7cddfb3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19d33a6d-8424-4a13-8b7f-c242cf87849d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0714361c-afc0-49bb-82de-6879dddf7c16", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12406,Microsoft.Compute/GetVMImageFromLocation30Min;73406", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:0714361c-afc0-49bb-82de-6879dddf7c16", - "Expires" : "-1", - "x-ms-request-id" : "b2e100b3-1890-433b-a4fe-265ead292c25", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "19d33a6d-8424-4a13-8b7f-c242cf87849d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b983e0d-64bc-466a-9f3a-924d8b95f7d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bc734f2-b4ce-47b1-92e7-d88b7d1233d9", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12404,Microsoft.Compute/GetVMImageFromLocation30Min;73404", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:6bc734f2-b4ce-47b1-92e7-d88b7d1233d9", - "Expires" : "-1", - "x-ms-request-id" : "974a3cc3-a716-41b0-ba84-e0dbc30d0da4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "2b983e0d-64bc-466a-9f3a-924d8b95f7d1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb85f54c-0c22-41b3-8f5e-38ecc39e7ff5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48b00e03-a4bf-4c04-a572-e58dba8fd96a", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12408,Microsoft.Compute/GetVMImageFromLocation30Min;73408", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:48b00e03-a4bf-4c04-a572-e58dba8fd96a", - "Expires" : "-1", - "x-ms-request-id" : "6a5ed477-5cc2-42dc-aba7-23acfaaf3770", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "fb85f54c-0c22-41b3-8f5e-38ecc39e7ff5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202105260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04badd7a-5d91-4437-8083-37d3124cc2ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5617d4fc-3cc2-4b57-b10e-a388a2c40742", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12402,Microsoft.Compute/GetVMImageFromLocation30Min;73402", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:5617d4fc-3cc2-4b57-b10e-a388a2c40742", - "Expires" : "-1", - "x-ms-request-id" : "84f067e2-199b-4121-9cf9-8328165d5f10", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202105260\"\r\n}", - "x-ms-client-request-id" : "04badd7a-5d91-4437-8083-37d3124cc2ba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5df66dc-1697-4c45-adda-4901f0fa4bd8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec4671f6-c0b2-427f-95bd-5aa7d3ba3a16", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12401,Microsoft.Compute/GetVMImageFromLocation30Min;73401", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:ec4671f6-c0b2-427f-95bd-5aa7d3ba3a16", - "Expires" : "-1", - "x-ms-request-id" : "c05ff9eb-958a-4b02-8454-720dfa5e1e2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "f5df66dc-1697-4c45-adda-4901f0fa4bd8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09c816a4-0efc-4eff-95d1-87660ad202ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c64c777-4f8d-4e5f-8e31-5a0b2124e884", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12403,Microsoft.Compute/GetVMImageFromLocation30Min;73403", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:3c64c777-4f8d-4e5f-8e31-5a0b2124e884", - "Expires" : "-1", - "x-ms-request-id" : "72eeb9f2-ae0c-4f9c-88e7-82f52a950c6d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "09c816a4-0efc-4eff-95d1-87660ad202ba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e413279-a3f1-4ecf-a47c-79e8e28c50e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c06b713-d563-4c0f-87bb-1c99d5fbbaa9", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12400,Microsoft.Compute/GetVMImageFromLocation30Min;73400", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:7c06b713-d563-4c0f-87bb-1c99d5fbbaa9", - "Expires" : "-1", - "x-ms-request-id" : "eeb76d5b-1826-4f5d-9406-f71d6cb7c0f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "9e413279-a3f1-4ecf-a47c-79e8e28c50e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a8d555f-beaf-4d45-9e5e-64044c6dc9b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78cbe940-0bf5-40e6-bfa9-dba9b0cd266d", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12398,Microsoft.Compute/GetVMImageFromLocation30Min;73398", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:78cbe940-0bf5-40e6-bfa9-dba9b0cd266d", - "Expires" : "-1", - "x-ms-request-id" : "40bb0f23-e111-4251-909d-b80af45aa533", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "2a8d555f-beaf-4d45-9e5e-64044c6dc9b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202104130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e19a4781-40c9-420b-9f0c-044a22fef8e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3c220b6-48d2-47de-9a12-c3a0c9fee262", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12399,Microsoft.Compute/GetVMImageFromLocation30Min;73399", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:c3c220b6-48d2-47de-9a12-c3a0c9fee262", - "Expires" : "-1", - "x-ms-request-id" : "c54abb4a-3957-49ba-b14d-d4527bbe90fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202104130\"\r\n}", - "x-ms-client-request-id" : "e19a4781-40c9-420b-9f0c-044a22fef8e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da42fe14-df4b-45ef-a701-d3d8601b0114", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2eb116d-bcbe-490f-afbb-15a15f1f4852", - "Date" : "Tue, 24 May 2022 13:00:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12396,Microsoft.Compute/GetVMImageFromLocation30Min;73396", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:d2eb116d-bcbe-490f-afbb-15a15f1f4852", - "Expires" : "-1", - "x-ms-request-id" : "c847f2f0-b6c1-471f-a6e2-259bb15cf263", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "da42fe14-df4b-45ef-a701-d3d8601b0114", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c2158d3-8e1f-4658-8068-00c0b1c2a03c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ab72e33-eb8b-440e-afb9-bf3883bea901", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12397,Microsoft.Compute/GetVMImageFromLocation30Min;73397", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:5ab72e33-eb8b-440e-afb9-bf3883bea901", - "Expires" : "-1", - "x-ms-request-id" : "25ff8ac6-fc03-401f-b25e-dfd2232cd966", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "9c2158d3-8e1f-4658-8068-00c0b1c2a03c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93262237-3a61-4cad-a29e-d46d175e6129", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82feef2d-3279-41a3-99ec-e2015ab834c5", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12395,Microsoft.Compute/GetVMImageFromLocation30Min;73395", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:82feef2d-3279-41a3-99ec-e2015ab834c5", - "Expires" : "-1", - "x-ms-request-id" : "e734f868-d178-4a28-9695-22504bb24683", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "93262237-3a61-4cad-a29e-d46d175e6129", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b94ec0b7-2386-41cd-ac54-fb7839a61a5f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1077", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29acf5b5-2702-4834-913b-a64b0b78593f", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12394,Microsoft.Compute/GetVMImageFromLocation30Min;73394", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:29acf5b5-2702-4834-913b-a64b0b78593f", - "Expires" : "-1", - "x-ms-request-id" : "ef0a3a9d-3e3b-4603-8ad3-d8dd1bc44ab2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "b94ec0b7-2386-41cd-ac54-fb7839a61a5f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb0e134f-3d60-4f38-ad60-b8d7085935e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3721", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "371b567f-82de-4a9b-8fdf-ab096b1211ab", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15943,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130057Z:371b567f-82de-4a9b-8fdf-ab096b1211ab", - "Expires" : "-1", - "x-ms-request-id" : "d62180e9-63e4-4b6c-9f89-f1f31fba7934", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202105260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "fb0e134f-3d60-4f38-ad60-b8d7085935e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bde9f76-aeb2-4887-b3de-16bf4333088a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "274ab00d-2ef9-4a28-af6c-646f5680ef3c", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12391,Microsoft.Compute/GetVMImageFromLocation30Min;73391", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:274ab00d-2ef9-4a28-af6c-646f5680ef3c", - "Expires" : "-1", - "x-ms-request-id" : "9ef056c3-100b-4869-94dc-21474007839c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "7bde9f76-aeb2-4887-b3de-16bf4333088a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202105260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c87456e6-3fa2-4260-a796-9383f05a3272", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae6a8fad-461e-491c-b531-6a9450f230f2", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12392,Microsoft.Compute/GetVMImageFromLocation30Min;73392", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:ae6a8fad-461e-491c-b531-6a9450f230f2", - "Expires" : "-1", - "x-ms-request-id" : "3dd33325-8900-463e-aee9-790fc7774c36", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202105260\"\r\n}", - "x-ms-client-request-id" : "c87456e6-3fa2-4260-a796-9383f05a3272", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bbe45a3-05fa-4f03-80ef-3bba8f4b9447", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d70a163-ad67-4484-b496-d8f93fb5e60a", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12389,Microsoft.Compute/GetVMImageFromLocation30Min;73389", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:2d70a163-ad67-4484-b496-d8f93fb5e60a", - "Expires" : "-1", - "x-ms-request-id" : "97b4bd95-b528-476a-9a8e-7b2b27b05826", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "0bbe45a3-05fa-4f03-80ef-3bba8f4b9447", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b594642-d5d0-442c-928c-6ca28073540b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "81ca929f-572b-42ec-81a8-812b496d04cf", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12390,Microsoft.Compute/GetVMImageFromLocation30Min;73390", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:81ca929f-572b-42ec-81a8-812b496d04cf", - "Expires" : "-1", - "x-ms-request-id" : "84096bd3-2786-43ef-9273-ef9b2cde91dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "6b594642-d5d0-442c-928c-6ca28073540b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09ec360e-a788-42b3-bff0-7fd74487ebfd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2ce0553-1def-4f15-a40c-0cd629a2963f", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12388,Microsoft.Compute/GetVMImageFromLocation30Min;73388", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:e2ce0553-1def-4f15-a40c-0cd629a2963f", - "Expires" : "-1", - "x-ms-request-id" : "f4f40fa5-1a64-4692-9545-c199e0b83e86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "09ec360e-a788-42b3-bff0-7fd74487ebfd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0673ef29-76d7-4d84-8ae2-d7e8baa9dd18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "903e4784-a856-4102-a197-a9ce953f31b8", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12393,Microsoft.Compute/GetVMImageFromLocation30Min;73393", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:903e4784-a856-4102-a197-a9ce953f31b8", - "Expires" : "-1", - "x-ms-request-id" : "9ac31129-af8d-4747-9ded-9ac4956331fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "0673ef29-76d7-4d84-8ae2-d7e8baa9dd18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "904b9a4a-7cfd-4c73-91d1-2189a37d4d6f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd9e4cb7-add6-4575-a55c-6f417fd20eac", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12387,Microsoft.Compute/GetVMImageFromLocation30Min;73387", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:dd9e4cb7-add6-4575-a55c-6f417fd20eac", - "Expires" : "-1", - "x-ms-request-id" : "e7ccb4a2-4bf9-49cc-baa3-918ecf1e7046", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "904b9a4a-7cfd-4c73-91d1-2189a37d4d6f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e36437a7-ff0b-413c-8d76-4389c1ff7db4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2d68275-8ac0-46e3-b304-e6e2947f743d", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12386,Microsoft.Compute/GetVMImageFromLocation30Min;73386", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:f2d68275-8ac0-46e3-b304-e6e2947f743d", - "Expires" : "-1", - "x-ms-request-id" : "8a749439-7fa5-4a0c-ab59-3c5ffdddf2a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "e36437a7-ff0b-413c-8d76-4389c1ff7db4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfa7e54b-5c04-4799-9364-6da3b65953ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "586b6291-ffb9-4042-aaaa-cccb4d2438cd", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12385,Microsoft.Compute/GetVMImageFromLocation30Min;73385", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:586b6291-ffb9-4042-aaaa-cccb4d2438cd", - "Expires" : "-1", - "x-ms-request-id" : "879bbfe2-8c25-49ba-8b36-34aa07a0edd3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "bfa7e54b-5c04-4799-9364-6da3b65953ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "286975f4-e6ba-4c2c-bdc7-f9026df03bc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eca40fff-4821-42a8-9a06-6f2880f112c5", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12384,Microsoft.Compute/GetVMImageFromLocation30Min;73384", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:eca40fff-4821-42a8-9a06-6f2880f112c5", - "Expires" : "-1", - "x-ms-request-id" : "93454168-cc96-4e9e-b690-4bba9d55a956", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "286975f4-e6ba-4c2c-bdc7-f9026df03bc0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-servicenow/skus/pro-fips-18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28b0edb7-e1f4-4314-a3d3-d59c8efb6748", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1092", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75346ac0-2443-4b81-87ff-710eb3dd3662", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12383,Microsoft.Compute/GetVMImageFromLocation30Min;73383", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:75346ac0-2443-4b81-87ff-710eb3dd3662", - "Expires" : "-1", - "x-ms-request-id" : "1404e9f1-32aa-4bc5-97fa-4b12b9de6052", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-servicenow\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-servicenow/Skus/pro-fips-18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "28b0edb7-e1f4-4314-a3d3-d59c8efb6748", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab663ff0-fbb0-461d-8245-ccb530682823", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4263", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e03b216-eb0f-4653-af55-fff7e80dbd93", - "Date" : "Tue, 24 May 2022 13:00:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9982,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:8e03b216-eb0f-4653-af55-fff7e80dbd93", - "Expires" : "-1", - "x-ms-request-id" : "8e64bbcf-c354-481d-a1ae-9619c50104ea", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "ab663ff0-fbb0-461d-8245-ccb530682823", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "300e4a4c-d7dc-4b54-b6c8-671dc6c7377a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3554", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1659b328-efa3-4d37-aece-bb492476de08", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15942,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130058Z:1659b328-efa3-4d37-aece-bb492476de08", - "Expires" : "-1", - "x-ms-request-id" : "7b69bd40-9a76-4570-be72-b7e5bff8ac87", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "300e4a4c-d7dc-4b54-b6c8-671dc6c7377a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba1d4fc6-e3b9-4a21-b0e6-6e0894b6a284", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45ee183a-e14b-467a-a88f-317950d2fd55", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12382,Microsoft.Compute/GetVMImageFromLocation30Min;73382", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:45ee183a-e14b-467a-a88f-317950d2fd55", - "Expires" : "-1", - "x-ms-request-id" : "89542876-3c64-42fe-84ff-6bb2743869fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "ba1d4fc6-e3b9-4a21-b0e6-6e0894b6a284", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "152c200a-4d99-4987-b145-e4e94e2c9d88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7ca6680-c4fc-49d9-bb90-3fad2187d1e3", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12380,Microsoft.Compute/GetVMImageFromLocation30Min;73380", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:b7ca6680-c4fc-49d9-bb90-3fad2187d1e3", - "Expires" : "-1", - "x-ms-request-id" : "bafa0533-994e-4b67-b845-3a43690ebce8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "152c200a-4d99-4987-b145-e4e94e2c9d88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a01673d0-eec9-42ad-9846-4550193d95d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad0d3ec4-e36f-4367-b7c3-0863d991f0ff", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12378,Microsoft.Compute/GetVMImageFromLocation30Min;73378", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:ad0d3ec4-e36f-4367-b7c3-0863d991f0ff", - "Expires" : "-1", - "x-ms-request-id" : "042491d9-ddaf-4e93-8124-62834a8c7080", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "a01673d0-eec9-42ad-9846-4550193d95d1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80331dab-f381-46ac-a91f-0383cd5a86c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "899c9f61-0aa2-4fd1-8385-30075e307476", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12379,Microsoft.Compute/GetVMImageFromLocation30Min;73379", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:899c9f61-0aa2-4fd1-8385-30075e307476", - "Expires" : "-1", - "x-ms-request-id" : "a73484bf-b05b-4d16-b3ac-f4933a46e6ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "80331dab-f381-46ac-a91f-0383cd5a86c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e97b35a-6961-45fb-ad93-e6ef919d4d78", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a14766f2-0031-4294-9b85-9953e687682e", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12377,Microsoft.Compute/GetVMImageFromLocation30Min;73377", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:a14766f2-0031-4294-9b85-9953e687682e", - "Expires" : "-1", - "x-ms-request-id" : "094b4f23-f054-4789-882b-a7202c27ad69", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "5e97b35a-6961-45fb-ad93-e6ef919d4d78", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b18e92e-5384-43f4-9e35-401e98c83fb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b86bdd65-c1af-41cd-bdbc-0f2b093b33b5", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12376,Microsoft.Compute/GetVMImageFromLocation30Min;73376", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:b86bdd65-c1af-41cd-bdbc-0f2b093b33b5", - "Expires" : "-1", - "x-ms-request-id" : "be3d3baf-e26a-430f-9873-f9a4713bb2d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "1b18e92e-5384-43f4-9e35-401e98c83fb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f096b84a-a7f3-4507-9801-e5c67c7cbe70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8427bfcd-8c42-47b8-9f86-633b0fecf944", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12381,Microsoft.Compute/GetVMImageFromLocation30Min;73381", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:8427bfcd-8c42-47b8-9f86-633b0fecf944", - "Expires" : "-1", - "x-ms-request-id" : "90b03ee8-88ef-44f6-9959-73fa04977e72", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "f096b84a-a7f3-4507-9801-e5c67c7cbe70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "207db258-6369-4240-b295-38b9caec469c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8cb00844-a2e9-4936-b0d8-b4f50cfd3110", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12375,Microsoft.Compute/GetVMImageFromLocation30Min;73375", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:8cb00844-a2e9-4936-b0d8-b4f50cfd3110", - "Expires" : "-1", - "x-ms-request-id" : "52124b0c-f05a-4bc5-89c4-e15295d5ca39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.20201014\"\r\n}", - "x-ms-client-request-id" : "207db258-6369-4240-b295-38b9caec469c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbfeebcf-9f12-4902-8d00-22b71d969485", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2f9ca5a-9cec-46d4-9929-79020f998b9b", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12374,Microsoft.Compute/GetVMImageFromLocation30Min;73374", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:b2f9ca5a-9cec-46d4-9929-79020f998b9b", - "Expires" : "-1", - "x-ms-request-id" : "0909ef15-6abc-4c68-b5a8-06397ca49136", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "cbfeebcf-9f12-4902-8d00-22b71d969485", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39292dbf-04ad-4db9-9afe-410b4e774d22", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "181dfb5e-980f-4b54-98fb-6694dc52cb9d", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12373,Microsoft.Compute/GetVMImageFromLocation30Min;73373", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:181dfb5e-980f-4b54-98fb-6694dc52cb9d", - "Expires" : "-1", - "x-ms-request-id" : "27cc3020-c82e-4ba6-891c-47d82a20cf3b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202103100\"\r\n}", - "x-ms-client-request-id" : "39292dbf-04ad-4db9-9afe-410b4e774d22", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "046f64b7-af23-4264-bd99-5dde860dfac3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d85080c9-d71f-4ae9-b1a1-ca2d42d7db63", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12372,Microsoft.Compute/GetVMImageFromLocation30Min;73372", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:d85080c9-d71f-4ae9-b1a1-ca2d42d7db63", - "Expires" : "-1", - "x-ms-request-id" : "4077f29e-ebc7-4012-bea7-82f5a1934670", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "046f64b7-af23-4264-bd99-5dde860dfac3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d042059-d489-4a53-b65f-ad220408c39a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27b09342-e1ff-4346-953f-e2bb0b130361", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15941,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:27b09342-e1ff-4346-953f-e2bb0b130361", - "Expires" : "-1", - "x-ms-request-id" : "1ad97924-37be-4381-be46-a1e1edc01402", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "0d042059-d489-4a53-b65f-ad220408c39a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60289a6f-cb00-4efc-94d0-ea885c0a3d99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa9dd4a7-54b7-4ccd-98c3-eb9613531128", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12369,Microsoft.Compute/GetVMImageFromLocation30Min;73369", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:aa9dd4a7-54b7-4ccd-98c3-eb9613531128", - "Expires" : "-1", - "x-ms-request-id" : "b19e903d-8208-4add-9132-23842b31de43", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "60289a6f-cb00-4efc-94d0-ea885c0a3d99", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94b7d9c8-7914-4862-bea1-089749f58ccb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b71b9d17-78fe-484b-b35f-08981b479321", - "Date" : "Tue, 24 May 2022 13:00:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12371,Microsoft.Compute/GetVMImageFromLocation30Min;73371", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:b71b9d17-78fe-484b-b35f-08981b479321", - "Expires" : "-1", - "x-ms-request-id" : "f2484112-9644-4168-9746-532648c96bc2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "94b7d9c8-7914-4862-bea1-089749f58ccb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55b13262-8971-460c-ad1a-d74b5d90396c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0df792ff-c05f-4d87-a1ff-55e9a462f6b4", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12367,Microsoft.Compute/GetVMImageFromLocation30Min;73367", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:0df792ff-c05f-4d87-a1ff-55e9a462f6b4", - "Expires" : "-1", - "x-ms-request-id" : "d097934f-0569-4bed-9309-380b145ce9de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "55b13262-8971-460c-ad1a-d74b5d90396c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "99305a79-afe7-4334-9610-eb5a78c393b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2d88132-294e-49bd-9392-f7abb76416b9", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12370,Microsoft.Compute/GetVMImageFromLocation30Min;73370", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:e2d88132-294e-49bd-9392-f7abb76416b9", - "Expires" : "-1", - "x-ms-request-id" : "da87579f-2e64-40ff-b531-41b123e7e6c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "99305a79-afe7-4334-9610-eb5a78c393b1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "501c319c-f132-499e-b895-0715b7d98d2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3640f15f-0a55-435d-91c7-dea0df498c43", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12368,Microsoft.Compute/GetVMImageFromLocation30Min;73368", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:3640f15f-0a55-435d-91c7-dea0df498c43", - "Expires" : "-1", - "x-ms-request-id" : "f43cc944-be52-4e6a-a2a9-ca1c98435afe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "501c319c-f132-499e-b895-0715b7d98d2b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1421d6f-0bf8-446f-abba-25d173c135ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d88107d-394c-400c-8e04-0002c1804e0e", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12366,Microsoft.Compute/GetVMImageFromLocation30Min;73366", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:8d88107d-394c-400c-8e04-0002c1804e0e", - "Expires" : "-1", - "x-ms-request-id" : "2c727af3-5a2d-4d7e-a748-13601c1db552", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "d1421d6f-0bf8-446f-abba-25d173c135ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cabb46d-ef3c-4f82-baf8-ff5ccf3feebe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40592e16-f1f5-439a-a77b-9f4d3082e30b", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12365,Microsoft.Compute/GetVMImageFromLocation30Min;73365", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130059Z:40592e16-f1f5-439a-a77b-9f4d3082e30b", - "Expires" : "-1", - "x-ms-request-id" : "b762e862-9c34-4417-91c7-de47598e2437", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "2cabb46d-ef3c-4f82-baf8-ff5ccf3feebe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fa5d23a-727e-4864-acfe-e5016a04f6be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d07a10cf-d230-46b6-8a60-adfcd01367bf", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15940,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:d07a10cf-d230-46b6-8a60-adfcd01367bf", - "Expires" : "-1", - "x-ms-request-id" : "8786b854-2bce-433d-a2b4-d72333d43f88", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202103080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "7fa5d23a-727e-4864-acfe-e5016a04f6be", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cfef63f-ee28-421e-98ee-ba046437a909", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7e08b48-7d7b-4230-b181-42b8737b0a60", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12364,Microsoft.Compute/GetVMImageFromLocation30Min;73364", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:d7e08b48-7d7b-4230-b181-42b8737b0a60", - "Expires" : "-1", - "x-ms-request-id" : "b33c33ac-62fc-4035-b261-8ecc002407ad", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.20201014\"\r\n}", - "x-ms-client-request-id" : "3cfef63f-ee28-421e-98ee-ba046437a909", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a09ac59-87ad-4e34-9fb8-a6889f75a09a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04908cd3-ad4b-4612-8cd7-efc7493ca66d", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12360,Microsoft.Compute/GetVMImageFromLocation30Min;73360", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:04908cd3-ad4b-4612-8cd7-efc7493ca66d", - "Expires" : "-1", - "x-ms-request-id" : "8f7791be-6646-4873-8dc1-ea0c48de4ebb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "0a09ac59-87ad-4e34-9fb8-a6889f75a09a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35d58c74-cbff-4517-95f0-fb6a06d0a5c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93c8c927-aa27-4ad1-b240-4b5163942188", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12358,Microsoft.Compute/GetVMImageFromLocation30Min;73358", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:93c8c927-aa27-4ad1-b240-4b5163942188", - "Expires" : "-1", - "x-ms-request-id" : "7ff06505-44bd-4020-a8ce-56fb160c9708", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "35d58c74-cbff-4517-95f0-fb6a06d0a5c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77d388ee-efeb-4548-89d4-c64693e437cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ebcf698-a5e9-4fd9-abdf-d16a9da28e0c", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12362,Microsoft.Compute/GetVMImageFromLocation30Min;73362", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:7ebcf698-a5e9-4fd9-abdf-d16a9da28e0c", - "Expires" : "-1", - "x-ms-request-id" : "ad689709-40ad-456a-af76-a93d868ce025", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "77d388ee-efeb-4548-89d4-c64693e437cd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ac55368-4bef-45aa-985c-fe2b3e57addd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "598af8fb-a6be-446e-8f33-909354684fa7", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12355,Microsoft.Compute/GetVMImageFromLocation30Min;73355", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:598af8fb-a6be-446e-8f33-909354684fa7", - "Expires" : "-1", - "x-ms-request-id" : "6fec6cb8-2645-4956-882d-ace081c6a078", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "9ac55368-4bef-45aa-985c-fe2b3e57addd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "080b17e1-c1b5-44cd-817b-5ee24191964e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21fba31b-3852-4832-bac1-b90c383c56fb", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12359,Microsoft.Compute/GetVMImageFromLocation30Min;73359", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:21fba31b-3852-4832-bac1-b90c383c56fb", - "Expires" : "-1", - "x-ms-request-id" : "8f25010a-fae5-4d75-89f0-f09d1a899b62", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "080b17e1-c1b5-44cd-817b-5ee24191964e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b925ee6-6d6b-47c1-9667-cb687f9aca01", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb817898-073b-481d-a229-e5f6492d2acc", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12357,Microsoft.Compute/GetVMImageFromLocation30Min;73357", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:cb817898-073b-481d-a229-e5f6492d2acc", - "Expires" : "-1", - "x-ms-request-id" : "dbc9f442-e00f-491f-80b2-61adec2054cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "8b925ee6-6d6b-47c1-9667-cb687f9aca01", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c8016c8-9b12-4ad7-9b87-b313af6cef9a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f0bb536-063d-43d8-9150-9914387d5457", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12363,Microsoft.Compute/GetVMImageFromLocation30Min;73363", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:9f0bb536-063d-43d8-9150-9914387d5457", - "Expires" : "-1", - "x-ms-request-id" : "07122ace-0401-456a-9367-847b1e9c26a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "2c8016c8-9b12-4ad7-9b87-b313af6cef9a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48de4035-e70b-46ee-8b21-5caa15b77473", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "946f476b-b97c-4ec4-ac3b-56f80224b8b2", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12361,Microsoft.Compute/GetVMImageFromLocation30Min;73361", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:946f476b-b97c-4ec4-ac3b-56f80224b8b2", - "Expires" : "-1", - "x-ms-request-id" : "af0219d7-6e49-4ad4-b48b-1fc347fb7fdd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "48de4035-e70b-46ee-8b21-5caa15b77473", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2410def8-b6cd-4b93-bb4b-275dcefec962", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2db05a71-8fcc-4d81-b7bc-173b47df03ef", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12350,Microsoft.Compute/GetVMImageFromLocation30Min;73350", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:2db05a71-8fcc-4d81-b7bc-173b47df03ef", - "Expires" : "-1", - "x-ms-request-id" : "d03b503f-20f4-4baa-b219-331709216d55", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "2410def8-b6cd-4b93-bb4b-275dcefec962", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8962059c-206a-41db-ace3-9096c82501ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf3c459b-53f5-4293-91c0-c813a0ba7dc0", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12351,Microsoft.Compute/GetVMImageFromLocation30Min;73351", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:cf3c459b-53f5-4293-91c0-c813a0ba7dc0", - "Expires" : "-1", - "x-ms-request-id" : "5d054e9a-e9c2-440d-8318-4d9c1fc2db3c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "8962059c-206a-41db-ace3-9096c82501ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bf50f10-e97a-4bbb-b36b-b76464534d12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a14b1a3e-fd54-45a9-9db3-7b269426875e", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12356,Microsoft.Compute/GetVMImageFromLocation30Min;73356", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:a14b1a3e-fd54-45a9-9db3-7b269426875e", - "Expires" : "-1", - "x-ms-request-id" : "6ff0fa3b-c34e-4488-b505-e6842582f8ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "1bf50f10-e97a-4bbb-b36b-b76464534d12", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4060ed08-2210-4ac8-be0c-50f6206de5f1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3d795c3-b005-476f-ae84-f4c17db90736", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12352,Microsoft.Compute/GetVMImageFromLocation30Min;73352", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:e3d795c3-b005-476f-ae84-f4c17db90736", - "Expires" : "-1", - "x-ms-request-id" : "347b23b8-8701-45c8-b2c5-6862d2f64888", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "4060ed08-2210-4ac8-be0c-50f6206de5f1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b364fc93-9eb1-4f16-b668-3f844a6cd2b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a73c9f5-a003-40eb-87ee-bd1eab021955", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12354,Microsoft.Compute/GetVMImageFromLocation30Min;73354", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:1a73c9f5-a003-40eb-87ee-bd1eab021955", - "Expires" : "-1", - "x-ms-request-id" : "7472ef67-ff08-423a-878a-50cb1bbc0143", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "b364fc93-9eb1-4f16-b668-3f844a6cd2b5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202103080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d1e4898-db7b-4b91-8ab4-017f8fe05b1e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea6db58c-99d7-4161-bf4d-dcfa85689118", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12353,Microsoft.Compute/GetVMImageFromLocation30Min;73353", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:ea6db58c-99d7-4161-bf4d-dcfa85689118", - "Expires" : "-1", - "x-ms-request-id" : "5016fea9-2057-4d52-b9d9-82585e3748e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202103080\"\r\n}", - "x-ms-client-request-id" : "6d1e4898-db7b-4b91-8ab4-017f8fe05b1e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40b5e84d-90cd-4114-9673-2a095437760c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "22ba60a9-c883-43fa-8f60-35229e002c1a", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12349,Microsoft.Compute/GetVMImageFromLocation30Min;73349", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:22ba60a9-c883-43fa-8f60-35229e002c1a", - "Expires" : "-1", - "x-ms-request-id" : "cd1fd9ab-b063-4b03-83fa-ff1f6e502302", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "40b5e84d-90cd-4114-9673-2a095437760c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b8dea95-bffb-4b80-9683-74c8dbe2f990", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7ca2611-7152-4a78-9928-7129c8b03056", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12348,Microsoft.Compute/GetVMImageFromLocation30Min;73348", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:f7ca2611-7152-4a78-9928-7129c8b03056", - "Expires" : "-1", - "x-ms-request-id" : "3b6f94d7-2480-46a9-8833-c2282d254db1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "4b8dea95-bffb-4b80-9683-74c8dbe2f990", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9852b51-1ac5-41d5-ab41-29df13a38241", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba5e15a4-9386-422c-8da4-d237c2942347", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12347,Microsoft.Compute/GetVMImageFromLocation30Min;73347", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:ba5e15a4-9386-422c-8da4-d237c2942347", - "Expires" : "-1", - "x-ms-request-id" : "484cd944-a4c9-466c-952f-e2f5bfe6e57b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "e9852b51-1ac5-41d5-ab41-29df13a38241", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf5e723c-33be-42fc-adb6-077569dbc23c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34803e43-8848-4850-af86-4c8cc49addeb", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12346,Microsoft.Compute/GetVMImageFromLocation30Min;73346", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:34803e43-8848-4850-af86-4c8cc49addeb", - "Expires" : "-1", - "x-ms-request-id" : "2a59817f-e2c1-403a-998f-1f6c33767a61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "bf5e723c-33be-42fc-adb6-077569dbc23c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2eee3ba1-3fd7-46e2-9951-cd952d041fe6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3023047-91c1-4eb7-bc27-ad035b0c7a63", - "Date" : "Tue, 24 May 2022 13:00:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12345,Microsoft.Compute/GetVMImageFromLocation30Min;73345", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:b3023047-91c1-4eb7-bc27-ad035b0c7a63", - "Expires" : "-1", - "x-ms-request-id" : "7ed27811-4108-484e-b7ba-a60a8239a795", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "2eee3ba1-3fd7-46e2-9951-cd952d041fe6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b141aef7-711b-4a0b-8ee0-d83174c0bfa7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60d5967a-053c-4a6c-9a3b-148f1f646973", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12344,Microsoft.Compute/GetVMImageFromLocation30Min;73344", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:60d5967a-053c-4a6c-9a3b-148f1f646973", - "Expires" : "-1", - "x-ms-request-id" : "a6bf2b99-7718-4d35-a725-7ac5f58ba2ff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "b141aef7-711b-4a0b-8ee0-d83174c0bfa7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ee00ca8-7433-4fba-a5a4-ebb601a77fba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c1c705e-a4c9-4675-8bb5-9ebcd8af592d", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12343,Microsoft.Compute/GetVMImageFromLocation30Min;73343", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:9c1c705e-a4c9-4675-8bb5-9ebcd8af592d", - "Expires" : "-1", - "x-ms-request-id" : "a6611ba4-c276-4748-bf18-7d93eb1a0f82", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "6ee00ca8-7433-4fba-a5a4-ebb601a77fba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cf74721-18a3-4a8a-a699-d26e421df062", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5579", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd2cacbd-29ec-45bf-8cad-78d275a23772", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15939,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:cd2cacbd-29ec-45bf-8cad-78d275a23772", - "Expires" : "-1", - "x-ms-request-id" : "f8dbc03a-63fb-46e0-9d60-3979b28c43af", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "4cf74721-18a3-4a8a-a699-d26e421df062", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e73ebaeb-dc99-42c4-9a4f-bd6a851bcb70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "53cb0224-2b98-4216-bdda-62df27c278bf", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12342,Microsoft.Compute/GetVMImageFromLocation30Min;73342", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:53cb0224-2b98-4216-bdda-62df27c278bf", - "Expires" : "-1", - "x-ms-request-id" : "2405062b-a180-4d27-81e4-7cbf064401e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "e73ebaeb-dc99-42c4-9a4f-bd6a851bcb70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32bfdaee-c935-47aa-9821-c274cc69b32d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df00d473-2244-447f-bd32-5cf3c93063f6", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12341,Microsoft.Compute/GetVMImageFromLocation30Min;73341", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:df00d473-2244-447f-bd32-5cf3c93063f6", - "Expires" : "-1", - "x-ms-request-id" : "84b50e1d-d6a8-4bfd-b0d1-33deae0af9b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "32bfdaee-c935-47aa-9821-c274cc69b32d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c66fa55c-0183-43d0-9bc7-9377b7482bd2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "252b73e0-af39-40d3-9bab-610829408878", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12339,Microsoft.Compute/GetVMImageFromLocation30Min;73339", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:252b73e0-af39-40d3-9bab-610829408878", - "Expires" : "-1", - "x-ms-request-id" : "d4020d2b-acaf-4fbb-a083-89e6ac61ea6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "c66fa55c-0183-43d0-9bc7-9377b7482bd2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bba6024-426d-4199-a461-78f965a70e0e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31b1e2b8-a76d-4031-a95c-ec02fe01437b", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12338,Microsoft.Compute/GetVMImageFromLocation30Min;73338", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:31b1e2b8-a76d-4031-a95c-ec02fe01437b", - "Expires" : "-1", - "x-ms-request-id" : "630c9902-0105-44ef-ac38-72dd6606c9c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "0bba6024-426d-4199-a461-78f965a70e0e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf868718-e3f4-4512-82a6-ec8b9dc4dd0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8b8416c-9d43-49eb-8ed4-32f0a7d301d1", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12337,Microsoft.Compute/GetVMImageFromLocation30Min;73337", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:e8b8416c-9d43-49eb-8ed4-32f0a7d301d1", - "Expires" : "-1", - "x-ms-request-id" : "dc7f2098-6b10-4081-92ce-842a32eb67cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "bf868718-e3f4-4512-82a6-ec8b9dc4dd0b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "881f2ead-b6f4-46d5-9353-b5ae3e4cfe82", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee47e9f4-f29f-4ac7-a6f3-2d651f8011e3", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12336,Microsoft.Compute/GetVMImageFromLocation30Min;73336", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:ee47e9f4-f29f-4ac7-a6f3-2d651f8011e3", - "Expires" : "-1", - "x-ms-request-id" : "1404dd77-e130-4739-b92d-e3a46b920a7a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "881f2ead-b6f4-46d5-9353-b5ae3e4cfe82", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "654a891c-d3c9-404f-a93d-b7de40e9e799", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35bb3a9b-5863-4fdd-aaea-bc6757068c8c", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12333,Microsoft.Compute/GetVMImageFromLocation30Min;73333", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:35bb3a9b-5863-4fdd-aaea-bc6757068c8c", - "Expires" : "-1", - "x-ms-request-id" : "80997259-edff-493a-81c2-49d7261b0ea2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "654a891c-d3c9-404f-a93d-b7de40e9e799", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8460c750-878e-4525-b66e-ac8808d81fc7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e345b692-1776-4824-9595-11c9ec319c1c", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12334,Microsoft.Compute/GetVMImageFromLocation30Min;73334", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130100Z:e345b692-1776-4824-9595-11c9ec319c1c", - "Expires" : "-1", - "x-ms-request-id" : "04bbe27e-9508-4034-a626-6fd669b7d12b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "8460c750-878e-4525-b66e-ac8808d81fc7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff9f5bd9-7bd2-49ea-8a62-3f5b46632d93", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92121ad8-f15b-4f1f-9c4e-40c6634a8240", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12330,Microsoft.Compute/GetVMImageFromLocation30Min;73330", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:92121ad8-f15b-4f1f-9c4e-40c6634a8240", - "Expires" : "-1", - "x-ms-request-id" : "1e75828b-d1a5-4c28-90d8-19f52b7ebef0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "ff9f5bd9-7bd2-49ea-8a62-3f5b46632d93", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47f34638-beec-4252-9ebb-deb98edb2c94", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77490edd-179c-40a5-b938-c416e63dc795", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12331,Microsoft.Compute/GetVMImageFromLocation30Min;73331", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:77490edd-179c-40a5-b938-c416e63dc795", - "Expires" : "-1", - "x-ms-request-id" : "a6fdaa7c-d70f-4a26-8afd-226125ca65c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "47f34638-beec-4252-9ebb-deb98edb2c94", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0687406-78c7-4244-b7d7-6cb282815a12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab853673-a45c-48be-a2fe-7f3d6992da08", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12340,Microsoft.Compute/GetVMImageFromLocation30Min;73340", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:ab853673-a45c-48be-a2fe-7f3d6992da08", - "Expires" : "-1", - "x-ms-request-id" : "a406c406-d59b-449c-ad8a-6cc9abd8d9a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "b0687406-78c7-4244-b7d7-6cb282815a12", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e612f186-7d0e-4777-973c-aa97b3139b89", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77d82631-e8dc-44d9-8c85-c6a5a8173138", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12332,Microsoft.Compute/GetVMImageFromLocation30Min;73332", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:77d82631-e8dc-44d9-8c85-c6a5a8173138", - "Expires" : "-1", - "x-ms-request-id" : "76a5ea03-1ed9-4012-93f7-4b4b4f4cb4bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "e612f186-7d0e-4777-973c-aa97b3139b89", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9842de35-991d-456c-9910-7512ad7aebb0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6139a58-15bf-49ae-b001-6b77fa2fe1c0", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12329,Microsoft.Compute/GetVMImageFromLocation30Min;73329", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:a6139a58-15bf-49ae-b001-6b77fa2fe1c0", - "Expires" : "-1", - "x-ms-request-id" : "052fd0ba-d027-4de7-9d91-5333e9afb3f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "9842de35-991d-456c-9910-7512ad7aebb0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "360d4f5b-db24-408e-b86d-efdd40a03110", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "967c78f2-95a6-4e68-9b66-90b8561d71aa", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12335,Microsoft.Compute/GetVMImageFromLocation30Min;73335", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:967c78f2-95a6-4e68-9b66-90b8561d71aa", - "Expires" : "-1", - "x-ms-request-id" : "5147d725-aa88-4e58-aa75-3668de07c0a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "360d4f5b-db24-408e-b86d-efdd40a03110", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d6664dd-6c31-40bb-8c5d-a77a73198191", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0786d0c-8bb5-4ad2-bc92-0569ea9957f2", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12328,Microsoft.Compute/GetVMImageFromLocation30Min;73328", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:f0786d0c-8bb5-4ad2-bc92-0569ea9957f2", - "Expires" : "-1", - "x-ms-request-id" : "cd1573f6-6855-40b2-a261-73fa6042956e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "3d6664dd-6c31-40bb-8c5d-a77a73198191", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14809c1e-e7a1-4ddc-874d-10332be0083a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbe0ecd1-8f1e-404c-9c06-1181992a4d04", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12327,Microsoft.Compute/GetVMImageFromLocation30Min;73327", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:bbe0ecd1-8f1e-404c-9c06-1181992a4d04", - "Expires" : "-1", - "x-ms-request-id" : "a5debcb9-beb2-45a7-9848-4b2ac54dc743", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "14809c1e-e7a1-4ddc-874d-10332be0083a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42613359-6e53-4de2-9cb7-13448cd485f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a575adf3-25d6-4f2c-b9b0-9b4d0cff8069", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12326,Microsoft.Compute/GetVMImageFromLocation30Min;73326", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:a575adf3-25d6-4f2c-b9b0-9b4d0cff8069", - "Expires" : "-1", - "x-ms-request-id" : "086f58b8-8124-4b51-b916-d2d4d818ef3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "42613359-6e53-4de2-9cb7-13448cd485f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac69a472-bc09-47b9-a8a8-447626e5db52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6784", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "139a000a-d720-42e6-a194-74091a5d8434", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15938,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:139a000a-d720-42e6-a194-74091a5d8434", - "Expires" : "-1", - "x-ms-request-id" : "9f47899c-6d7b-40fc-a5b3-4aacb28daedd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "ac69a472-bc09-47b9-a8a8-447626e5db52", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ed5567b-cddd-48bc-85b4-912b3bcca743", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf404a96-7c83-4129-8571-ed39c63df47c", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12325,Microsoft.Compute/GetVMImageFromLocation30Min;73325", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:bf404a96-7c83-4129-8571-ed39c63df47c", - "Expires" : "-1", - "x-ms-request-id" : "2ea5fd59-016f-4832-85fe-745f2d039685", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.20201014\"\r\n}", - "x-ms-client-request-id" : "9ed5567b-cddd-48bc-85b4-912b3bcca743", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a63eb36b-2570-4a73-9a4c-e0df611dcfba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bb8b8f9-df5b-47d3-9b0d-6e7a53665be3", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12324,Microsoft.Compute/GetVMImageFromLocation30Min;73324", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:5bb8b8f9-df5b-47d3-9b0d-6e7a53665be3", - "Expires" : "-1", - "x-ms-request-id" : "34400278-6fb1-4b55-96a4-32b19859eacd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "a63eb36b-2570-4a73-9a4c-e0df611dcfba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56cc1cc2-cace-4133-9471-1f3cfaa60c57", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21b9f03e-b54c-4784-beb1-791c2be69867", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12322,Microsoft.Compute/GetVMImageFromLocation30Min;73322", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:21b9f03e-b54c-4784-beb1-791c2be69867", - "Expires" : "-1", - "x-ms-request-id" : "4cb304b2-9825-4ad8-8e3d-3d9f2b061153", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "56cc1cc2-cace-4133-9471-1f3cfaa60c57", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "65bedf3b-2630-4a0b-a038-4fae874454b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "380f3dda-f22c-4ae6-ac00-7295de15ede5", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12323,Microsoft.Compute/GetVMImageFromLocation30Min;73323", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:380f3dda-f22c-4ae6-ac00-7295de15ede5", - "Expires" : "-1", - "x-ms-request-id" : "298d9699-ae14-4cdc-a069-8c2a5194cc2e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "65bedf3b-2630-4a0b-a038-4fae874454b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bc90b1f-95d2-490f-8dff-bada7dd3a6c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a567a078-bf3f-44c5-b203-c911ade03eeb", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12321,Microsoft.Compute/GetVMImageFromLocation30Min;73321", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:a567a078-bf3f-44c5-b203-c911ade03eeb", - "Expires" : "-1", - "x-ms-request-id" : "c244a2ae-7185-4530-8b27-4dc75f9f6483", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "3bc90b1f-95d2-490f-8dff-bada7dd3a6c3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4206dfa-00b5-4ef7-8c4f-6c91759d1729", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3a59a31-ffcd-40e4-af02-08d94ae7a15d", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12319,Microsoft.Compute/GetVMImageFromLocation30Min;73319", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:f3a59a31-ffcd-40e4-af02-08d94ae7a15d", - "Expires" : "-1", - "x-ms-request-id" : "58e96207-812f-4dda-826b-b98df4574489", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "b4206dfa-00b5-4ef7-8c4f-6c91759d1729", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f9f08f8-c1ff-4f29-b430-6ab1d52f2386", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cafb4fa4-4e53-4743-a2b8-cea4cb60b5f4", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12312,Microsoft.Compute/GetVMImageFromLocation30Min;73312", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:cafb4fa4-4e53-4743-a2b8-cea4cb60b5f4", - "Expires" : "-1", - "x-ms-request-id" : "e10a3d1c-36c3-400d-9e83-4434142e9d74", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "2f9f08f8-c1ff-4f29-b430-6ab1d52f2386", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35b3952d-56fe-4da7-9141-711a4f9ee258", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71f145fb-c888-494f-b934-9851b6252a7e", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12314,Microsoft.Compute/GetVMImageFromLocation30Min;73314", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:71f145fb-c888-494f-b934-9851b6252a7e", - "Expires" : "-1", - "x-ms-request-id" : "b713b3a9-ef67-408f-aeab-aa8dbebeac0a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "35b3952d-56fe-4da7-9141-711a4f9ee258", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc391826-34be-4e32-8bc3-d66550967d2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a054a46-f8d4-42bf-9077-8e2bf0f519d3", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12317,Microsoft.Compute/GetVMImageFromLocation30Min;73317", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:5a054a46-f8d4-42bf-9077-8e2bf0f519d3", - "Expires" : "-1", - "x-ms-request-id" : "95969796-4ac9-40a8-b759-7ec976ea5547", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "cc391826-34be-4e32-8bc3-d66550967d2a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "470c302d-4449-4652-bb3c-9c4ceb587cae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70403594-3a89-4e0a-b60a-22fb50a23d81", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12316,Microsoft.Compute/GetVMImageFromLocation30Min;73316", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:70403594-3a89-4e0a-b60a-22fb50a23d81", - "Expires" : "-1", - "x-ms-request-id" : "a5affbbf-f13d-479d-b73f-343b5597a9dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "470c302d-4449-4652-bb3c-9c4ceb587cae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fc2f6d4-a514-408b-b5a6-358662e5a875", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b413672e-ecd3-4c84-8d40-39d69ba669d5", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12311,Microsoft.Compute/GetVMImageFromLocation30Min;73311", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:b413672e-ecd3-4c84-8d40-39d69ba669d5", - "Expires" : "-1", - "x-ms-request-id" : "c0eba08d-ae48-4b08-86ea-b12735a19de1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "7fc2f6d4-a514-408b-b5a6-358662e5a875", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0cf8ed8-7707-44e5-b1c3-429631891ada", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "796538c4-15db-4a37-8915-edad7453833b", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12313,Microsoft.Compute/GetVMImageFromLocation30Min;73313", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:796538c4-15db-4a37-8915-edad7453833b", - "Expires" : "-1", - "x-ms-request-id" : "69928002-9641-4e1a-9357-a233159cb3f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "b0cf8ed8-7707-44e5-b1c3-429631891ada", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a85ba5d-90f6-4ebb-ad14-57c023f074e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f541f8f-22fc-4cbe-8a21-26271b38318e", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12320,Microsoft.Compute/GetVMImageFromLocation30Min;73320", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:4f541f8f-22fc-4cbe-8a21-26271b38318e", - "Expires" : "-1", - "x-ms-request-id" : "cc2b4742-f597-4e64-8bf4-09d808b79644", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "7a85ba5d-90f6-4ebb-ad14-57c023f074e6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b5e783c-e3ec-4ac8-9600-a3b1ff690ad9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9a54191-fa39-4ddc-b5f0-39a14a3ead82", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12308,Microsoft.Compute/GetVMImageFromLocation30Min;73308", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:b9a54191-fa39-4ddc-b5f0-39a14a3ead82", - "Expires" : "-1", - "x-ms-request-id" : "66104f4a-7b29-497f-8fb5-51787e2433c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "5b5e783c-e3ec-4ac8-9600-a3b1ff690ad9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fdf3d19-506b-46ee-a434-01275327ddd1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "667ab5f0-b9d9-4caf-bcf0-a2c7796683b7", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12306,Microsoft.Compute/GetVMImageFromLocation30Min;73306", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:667ab5f0-b9d9-4caf-bcf0-a2c7796683b7", - "Expires" : "-1", - "x-ms-request-id" : "37326853-075a-41e4-8eb9-83a590e65510", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202103160\"\r\n}", - "x-ms-client-request-id" : "1fdf3d19-506b-46ee-a434-01275327ddd1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24475c8b-1d39-4d53-b176-bc9eee1209f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cad6d4d6-26f0-4a51-880d-31d90a6ecbe6", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12309,Microsoft.Compute/GetVMImageFromLocation30Min;73309", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:cad6d4d6-26f0-4a51-880d-31d90a6ecbe6", - "Expires" : "-1", - "x-ms-request-id" : "50f478c1-b4a5-4522-aaaa-d3ed016affae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "24475c8b-1d39-4d53-b176-bc9eee1209f9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b99a698c-4e28-476c-a2d8-e2cb8d9d9248", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7bfaa4cb-05d6-4fc2-abec-9dfb78a5ccc4", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12305,Microsoft.Compute/GetVMImageFromLocation30Min;73305", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:7bfaa4cb-05d6-4fc2-abec-9dfb78a5ccc4", - "Expires" : "-1", - "x-ms-request-id" : "5e2197cf-bdb4-4275-8e92-a7efdd8d4260", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "b99a698c-4e28-476c-a2d8-e2cb8d9d9248", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a018eb4c-8079-4ba9-a9d1-6d7bcd25fb4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0018f11c-3c93-4bce-9fb8-ad55214f8521", - "Date" : "Tue, 24 May 2022 13:01:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12307,Microsoft.Compute/GetVMImageFromLocation30Min;73307", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:0018f11c-3c93-4bce-9fb8-ad55214f8521", - "Expires" : "-1", - "x-ms-request-id" : "255470df-ffe8-4c04-85b2-7e889d7335cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "a018eb4c-8079-4ba9-a9d1-6d7bcd25fb4a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9d9d2a2-aff4-4723-a995-5beed928c73f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed2d246e-a2a2-41d4-a586-b497d1cd47cf", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12318,Microsoft.Compute/GetVMImageFromLocation30Min;73318", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:ed2d246e-a2a2-41d4-a586-b497d1cd47cf", - "Expires" : "-1", - "x-ms-request-id" : "361962ca-cc25-48f3-b988-25cd252d6099", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "f9d9d2a2-aff4-4723-a995-5beed928c73f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c5e6f42-87c9-4137-adf9-1f6e4c1599ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd6b8d07-fb43-4b11-81ce-645577054f09", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12310,Microsoft.Compute/GetVMImageFromLocation30Min;73310", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:dd6b8d07-fb43-4b11-81ce-645577054f09", - "Expires" : "-1", - "x-ms-request-id" : "4f147801-ac31-4ed5-8342-b51ba6821b57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "5c5e6f42-87c9-4137-adf9-1f6e4c1599ee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6692fb65-ff18-4118-8af4-87cbd26aea27", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49c7c045-d9e2-459d-bbc2-3a3542ce44df", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12315,Microsoft.Compute/GetVMImageFromLocation30Min;73315", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130101Z:49c7c045-d9e2-459d-bbc2-3a3542ce44df", - "Expires" : "-1", - "x-ms-request-id" : "d89cb5aa-ada2-462a-a1b7-87967ee868d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "6692fb65-ff18-4118-8af4-87cbd26aea27", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9638d10b-da1e-4800-914c-0fc8279939a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5251", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e5db88a-69b3-4845-a99c-51b7f897f9c0", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15937,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:3e5db88a-69b3-4845-a99c-51b7f897f9c0", - "Expires" : "-1", - "x-ms-request-id" : "8b67b417-0175-45e4-84da-bf8dfec6b14e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "9638d10b-da1e-4800-914c-0fc8279939a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "983bc573-c5dd-446b-ba21-65aa2ea7d6b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2134be64-13e6-4561-85ba-5f322aa4d776", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12304,Microsoft.Compute/GetVMImageFromLocation30Min;73304", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:2134be64-13e6-4561-85ba-5f322aa4d776", - "Expires" : "-1", - "x-ms-request-id" : "d2f77ce3-6be4-462d-ab31-4e3b6e594d4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "983bc573-c5dd-446b-ba21-65aa2ea7d6b0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "63055a0e-61bd-4e42-9841-417bc919471a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b83d0aa-9000-4fc7-a4b8-bb52ef71ba6d", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12303,Microsoft.Compute/GetVMImageFromLocation30Min;73303", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:8b83d0aa-9000-4fc7-a4b8-bb52ef71ba6d", - "Expires" : "-1", - "x-ms-request-id" : "c16c5ef8-754d-4310-a2e6-516648233ad9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "63055a0e-61bd-4e42-9841-417bc919471a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cdcbc39b-6fbc-42a5-ad36-559b94b4f5b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eed37646-b8f0-45f1-aa34-46d92285dec4", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12300,Microsoft.Compute/GetVMImageFromLocation30Min;73300", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:eed37646-b8f0-45f1-aa34-46d92285dec4", - "Expires" : "-1", - "x-ms-request-id" : "1d7c2f11-5840-4de3-afe9-6661aeb09b6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "cdcbc39b-6fbc-42a5-ad36-559b94b4f5b8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfd97c4b-a424-4156-9e84-892de21bc346", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "115c10ee-4133-40f1-b0bb-29762007b5e4", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12299,Microsoft.Compute/GetVMImageFromLocation30Min;73299", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:115c10ee-4133-40f1-b0bb-29762007b5e4", - "Expires" : "-1", - "x-ms-request-id" : "bc163e4a-485a-4c53-b494-7a31898e528c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "dfd97c4b-a424-4156-9e84-892de21bc346", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de948935-7a05-41bf-b9a0-34082efe706d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ff78e67-1192-4c84-bf27-a3ca39dd4f85", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12301,Microsoft.Compute/GetVMImageFromLocation30Min;73301", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:1ff78e67-1192-4c84-bf27-a3ca39dd4f85", - "Expires" : "-1", - "x-ms-request-id" : "bd90a0d9-d27d-4576-ad90-7f20310f2b1a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "de948935-7a05-41bf-b9a0-34082efe706d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b852c35c-9eb4-43d4-8f09-e5b875fd3fec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7f8d205-dcb0-4c60-ba6a-968a3ddce863", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12295,Microsoft.Compute/GetVMImageFromLocation30Min;73295", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:e7f8d205-dcb0-4c60-ba6a-968a3ddce863", - "Expires" : "-1", - "x-ms-request-id" : "f81600c6-d2cc-4757-a566-3ce96f868675", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "b852c35c-9eb4-43d4-8f09-e5b875fd3fec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f3df0a8-7fd8-4f51-ba1d-dcb2c75dac1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "252497ae-f63a-4e1c-8df7-bdf18c4d991a", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12298,Microsoft.Compute/GetVMImageFromLocation30Min;73298", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:252497ae-f63a-4e1c-8df7-bdf18c4d991a", - "Expires" : "-1", - "x-ms-request-id" : "6efbfea0-208b-4dc0-8b87-9dfd087fda38", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "4f3df0a8-7fd8-4f51-ba1d-dcb2c75dac1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48c3e6b8-641c-4aec-9c2a-9f2721e45788", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f65080cf-2fe6-4b56-85ef-99a57f122d82", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12296,Microsoft.Compute/GetVMImageFromLocation30Min;73296", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:f65080cf-2fe6-4b56-85ef-99a57f122d82", - "Expires" : "-1", - "x-ms-request-id" : "4fb13e4d-9a34-45d7-b067-d39752794450", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "48c3e6b8-641c-4aec-9c2a-9f2721e45788", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f722597d-b505-46fa-8150-643cb06aaa35", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23e48581-06fa-406a-ad6d-de4ab53ae220", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12302,Microsoft.Compute/GetVMImageFromLocation30Min;73302", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:23e48581-06fa-406a-ad6d-de4ab53ae220", - "Expires" : "-1", - "x-ms-request-id" : "ea3b5568-f116-4b81-8607-1edde5feee9a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "f722597d-b505-46fa-8150-643cb06aaa35", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2e0731e-a9f4-47c3-9cd7-b92b72e684a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d18e811-0b29-42be-89aa-200535290479", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12294,Microsoft.Compute/GetVMImageFromLocation30Min;73294", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:4d18e811-0b29-42be-89aa-200535290479", - "Expires" : "-1", - "x-ms-request-id" : "ab814c2c-22d9-459d-8a99-3082ff325e12", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "e2e0731e-a9f4-47c3-9cd7-b92b72e684a7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bbf1e64-8ab5-4c14-8ee9-4680ab1a24d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba7f5893-514f-4c54-935f-3ea4c1b2c201", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12297,Microsoft.Compute/GetVMImageFromLocation30Min;73297", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:ba7f5893-514f-4c54-935f-3ea4c1b2c201", - "Expires" : "-1", - "x-ms-request-id" : "42e60082-fd76-4992-91eb-c702e8dd3323", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "8bbf1e64-8ab5-4c14-8ee9-4680ab1a24d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96e0819c-f36f-455a-a050-fc50683ec107", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "852c7861-086b-4a70-a6f9-7f3f0620cc3a", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12293,Microsoft.Compute/GetVMImageFromLocation30Min;73293", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:852c7861-086b-4a70-a6f9-7f3f0620cc3a", - "Expires" : "-1", - "x-ms-request-id" : "468bfd0c-0da1-4066-ae8b-2296ad9518c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "96e0819c-f36f-455a-a050-fc50683ec107", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "976646cd-915d-4f6d-bddc-bb08b50244ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3cc4244c-44da-45b4-b498-fd83d24e9286", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12291,Microsoft.Compute/GetVMImageFromLocation30Min;73291", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:3cc4244c-44da-45b4-b498-fd83d24e9286", - "Expires" : "-1", - "x-ms-request-id" : "67a284bb-d06b-4462-ad43-145ce1533e50", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "976646cd-915d-4f6d-bddc-bb08b50244ce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9772b34-6ff8-4a53-8196-995ed56e790b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1059", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59bf2b29-c502-48cf-b6bc-c835146898f3", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12292,Microsoft.Compute/GetVMImageFromLocation30Min;73292", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:59bf2b29-c502-48cf-b6bc-c835146898f3", - "Expires" : "-1", - "x-ms-request-id" : "7696494d-4c64-4d6c-a6e1-838f8ab0dba0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "d9772b34-6ff8-4a53-8196-995ed56e790b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecafe105-1e4b-4cf1-b754-45663b09f66c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "654993fa-5cfb-470f-9b7d-b0222a7e8d25", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12290,Microsoft.Compute/GetVMImageFromLocation30Min;73290", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:654993fa-5cfb-470f-9b7d-b0222a7e8d25", - "Expires" : "-1", - "x-ms-request-id" : "4f3afa2e-a795-4d2d-8313-42ea8676dd00", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "ecafe105-1e4b-4cf1-b754-45663b09f66c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11b379d5-c483-4cec-8c1c-73b716f6ab25", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b8bf548-45af-4a5d-838c-bd53e68de376", - "Date" : "Tue, 24 May 2022 13:01:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12289,Microsoft.Compute/GetVMImageFromLocation30Min;73289", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:8b8bf548-45af-4a5d-838c-bd53e68de376", - "Expires" : "-1", - "x-ms-request-id" : "37b19caa-c38f-4a69-9395-b5fb9d15d636", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "11b379d5-c483-4cec-8c1c-73b716f6ab25", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4dd9212f-6594-4ab6-ab28-f66177d1f6dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1971", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2ea61ab-efc1-4b23-bc60-bc627939948d", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15936,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130102Z:a2ea61ab-efc1-4b23-bc60-bc627939948d", - "Expires" : "-1", - "x-ms-request-id" : "ad818696-1c02-404a-972a-c3bee7c5681e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202010200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202104301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202204060\"\r\n }\r\n]", - "x-ms-client-request-id" : "4dd9212f-6594-4ab6-ab28-f66177d1f6dc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a860fb9-582b-470f-bf2e-fe0bcf681ebb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "663a5888-5172-4586-916b-3eb68b66cc2d", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12286,Microsoft.Compute/GetVMImageFromLocation30Min;73286", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:663a5888-5172-4586-916b-3eb68b66cc2d", - "Expires" : "-1", - "x-ms-request-id" : "45fbd7ae-eb9f-47b1-9453-7d664b6f00b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "8a860fb9-582b-470f-bf2e-fe0bcf681ebb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions/16.04.202104301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6658939d-7f30-42d3-8b68-1c26c97930d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af9224e0-c893-4b8c-bc19-599452b98fba", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12288,Microsoft.Compute/GetVMImageFromLocation30Min;73288", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:af9224e0-c893-4b8c-bc19-599452b98fba", - "Expires" : "-1", - "x-ms-request-id" : "4ff2bfda-626f-45c1-b504-d33c868f64c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202104301\"\r\n}", - "x-ms-client-request-id" : "6658939d-7f30-42d3-8b68-1c26c97930d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions/16.04.202010200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4240b872-ef65-4738-86bb-43f65ba7da49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ce8be21-5288-4684-922f-fbf11c789ceb", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12284,Microsoft.Compute/GetVMImageFromLocation30Min;73284", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:8ce8be21-5288-4684-922f-fbf11c789ceb", - "Expires" : "-1", - "x-ms-request-id" : "195ef19d-ddeb-4c5f-8f1c-8b86ac5cb30e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202010200\"\r\n}", - "x-ms-client-request-id" : "4240b872-ef65-4738-86bb-43f65ba7da49", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions/16.04.202204060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea689bc2-a19b-4780-8f89-026ef4e1f5cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4080443e-ecd8-4e31-a7b8-1cbb950644d7", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12285,Microsoft.Compute/GetVMImageFromLocation30Min;73285", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:4080443e-ecd8-4e31-a7b8-1cbb950644d7", - "Expires" : "-1", - "x-ms-request-id" : "c1f20c10-2a57-49c0-b0b0-4c34af91c410", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202204060\"\r\n}", - "x-ms-client-request-id" : "ea689bc2-a19b-4780-8f89-026ef4e1f5cf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "279568e0-b5db-45d5-b7b7-ac0ecbaae64d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63cb13ad-c17a-475a-921e-355d065d13d6", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12283,Microsoft.Compute/GetVMImageFromLocation30Min;73283", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:63cb13ad-c17a-475a-921e-355d065d13d6", - "Expires" : "-1", - "x-ms-request-id" : "d915f744-291f-4d29-8125-180cbb2146f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "279568e0-b5db-45d5-b7b7-ac0ecbaae64d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d17444f8-19b4-4b3a-8fcf-0208379ed0e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b917063d-eee4-4b5e-9e58-a0bb8ed62f8e", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12287,Microsoft.Compute/GetVMImageFromLocation30Min;73287", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:b917063d-eee4-4b5e-9e58-a0bb8ed62f8e", - "Expires" : "-1", - "x-ms-request-id" : "ca0d029e-75fb-40e4-85dd-0e667ed513c4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "d17444f8-19b4-4b3a-8fcf-0208379ed0e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c629b5a2-9e84-42b2-8a29-63e943390bf4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1668", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6556ad13-08a3-4e6b-9ac6-720cac934b78", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15935,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:6556ad13-08a3-4e6b-9ac6-720cac934b78", - "Expires" : "-1", - "x-ms-request-id" : "69d3dbb9-d9a1-495c-ab6d-b3641a3bc01b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202104301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202204060\"\r\n }\r\n]", - "x-ms-client-request-id" : "c629b5a2-9e84-42b2-8a29-63e943390bf4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04-gen2/versions/16.04.202104301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22a3f5f5-1111-4258-8845-f180886eec36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "757f61f7-e73f-493b-bb85-298d320dfc11", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12281,Microsoft.Compute/GetVMImageFromLocation30Min;73281", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:757f61f7-e73f-493b-bb85-298d320dfc11", - "Expires" : "-1", - "x-ms-request-id" : "c7193c11-0d4b-4186-8841-033e2e43e736", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202104301\"\r\n}", - "x-ms-client-request-id" : "22a3f5f5-1111-4258-8845-f180886eec36", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1806a911-1616-4d9d-b7fa-49af6f180d58", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "513209e0-8a74-4bb4-9316-ff697cd02965", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12282,Microsoft.Compute/GetVMImageFromLocation30Min;73282", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:513209e0-8a74-4bb4-9316-ff697cd02965", - "Expires" : "-1", - "x-ms-request-id" : "f8ca5360-e2a9-427c-9dc7-79dc3d7a400f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "1806a911-1616-4d9d-b7fa-49af6f180d58", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33246931-882c-4474-b691-1d9d78611639", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1069", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "676c0bc4-9a22-423d-9d9f-65d7a44b8b84", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12280,Microsoft.Compute/GetVMImageFromLocation30Min;73280", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:676c0bc4-9a22-423d-9d9f-65d7a44b8b84", - "Expires" : "-1", - "x-ms-request-id" : "567db951-884a-4c91-8dff-7d68ec021d3e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "33246931-882c-4474-b691-1d9d78611639", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04c512af-031f-45b7-a40b-c28453b1967a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "676a6a9a-3f59-4eba-a055-f8a79557a589", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12279,Microsoft.Compute/GetVMImageFromLocation30Min;73279", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:676a6a9a-3f59-4eba-a055-f8a79557a589", - "Expires" : "-1", - "x-ms-request-id" : "085761fe-065a-44ef-a3fe-7fc90185ef4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "04c512af-031f-45b7-a40b-c28453b1967a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-16_04-gen2/versions/16.04.202204060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55f81aa2-1ef7-45e4-830b-d6950ad1d87c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1069", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ce95a2a-2b75-44e8-83cd-5438f985909d", - "Date" : "Tue, 24 May 2022 13:01:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12278,Microsoft.Compute/GetVMImageFromLocation30Min;73278", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:2ce95a2a-2b75-44e8-83cd-5438f985909d", - "Expires" : "-1", - "x-ms-request-id" : "37cd2f9a-7036-4b1d-beca-7807b36b68fc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-16_04-gen2/Versions/16.04.202204060\"\r\n}", - "x-ms-client-request-id" : "55f81aa2-1ef7-45e4-830b-d6950ad1d87c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c9499e8-f8dd-49bf-8c83-4e31945c40d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4923", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f870e2c5-0d6b-4ff0-80e2-9a7bb28b47e5", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15934,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130103Z:f870e2c5-0d6b-4ff0-80e2-9a7bb28b47e5", - "Expires" : "-1", - "x-ms-request-id" : "66bd7fd1-8c6b-42ff-b19d-d73b7d5bac32", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202010201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202103050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202104130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202105260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "5c9499e8-f8dd-49bf-8c83-4e31945c40d3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "79408aa5-2768-45fe-862e-fca6f8ab0290", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70d64d78-2e04-424f-bd95-c6527f117661", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12275,Microsoft.Compute/GetVMImageFromLocation30Min;73275", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:70d64d78-2e04-424f-bd95-c6527f117661", - "Expires" : "-1", - "x-ms-request-id" : "45a71c36-ecf5-43ba-a3ec-113928c50c39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "79408aa5-2768-45fe-862e-fca6f8ab0290", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ac0fedd-80a1-496b-ba0a-ac5d9d54315e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2054efbb-c92d-402b-bfc2-a8c3b001cbb8", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12277,Microsoft.Compute/GetVMImageFromLocation30Min;73277", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:2054efbb-c92d-402b-bfc2-a8c3b001cbb8", - "Expires" : "-1", - "x-ms-request-id" : "2b3260ef-014d-4ecc-93fc-3c61c3a02b1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "7ac0fedd-80a1-496b-ba0a-ac5d9d54315e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ec97f41-34bb-4e78-9e4f-54c9069d2a5b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7427060b-c986-4fb2-9ef3-2b352919e998", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12273,Microsoft.Compute/GetVMImageFromLocation30Min;73273", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:7427060b-c986-4fb2-9ef3-2b352919e998", - "Expires" : "-1", - "x-ms-request-id" : "6bdc5b2d-587b-4287-bd22-b89934d89aa2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "7ec97f41-34bb-4e78-9e4f-54c9069d2a5b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1cbc223-b455-4a01-9faf-2714c0e179a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43c7feb9-fffd-49fd-850e-ccb2ec72e316", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12274,Microsoft.Compute/GetVMImageFromLocation30Min;73274", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:43c7feb9-fffd-49fd-850e-ccb2ec72e316", - "Expires" : "-1", - "x-ms-request-id" : "dd0bd519-da20-4c4c-a972-1b7eef934768", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "f1cbc223-b455-4a01-9faf-2714c0e179a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce2d4c8b-4cc3-4791-8a58-46da9a9b94c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebdb2d5c-343c-4ea4-8c1c-d03d47976f7d", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12271,Microsoft.Compute/GetVMImageFromLocation30Min;73271", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:ebdb2d5c-343c-4ea4-8c1c-d03d47976f7d", - "Expires" : "-1", - "x-ms-request-id" : "8620e409-c9c3-419b-9550-4c0483bb64f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "ce2d4c8b-4cc3-4791-8a58-46da9a9b94c1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e3b9eac-44ed-4c93-aca2-baaa55eab1e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6994572-7545-4c00-bbd9-16a6e36967d1", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12272,Microsoft.Compute/GetVMImageFromLocation30Min;73272", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:d6994572-7545-4c00-bbd9-16a6e36967d1", - "Expires" : "-1", - "x-ms-request-id" : "992c1516-6c39-41a9-acee-b0ca629fcd60", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "4e3b9eac-44ed-4c93-aca2-baaa55eab1e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b04673c8-8e7e-4f87-a45d-b103004d95f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d554b435-9782-4cf9-8dd8-999b08329c95", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12270,Microsoft.Compute/GetVMImageFromLocation30Min;73270", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:d554b435-9782-4cf9-8dd8-999b08329c95", - "Expires" : "-1", - "x-ms-request-id" : "4a2212c6-86fe-45f3-878b-be30d1f48854", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "b04673c8-8e7e-4f87-a45d-b103004d95f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3303802b-a011-4786-873d-6a2b9d4358c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "963fda6f-66eb-4db3-96ae-c5f3988e4d03", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12269,Microsoft.Compute/GetVMImageFromLocation30Min;73269", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:963fda6f-66eb-4db3-96ae-c5f3988e4d03", - "Expires" : "-1", - "x-ms-request-id" : "df7870e9-e8ec-48d0-ad02-6cec016d3648", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "3303802b-a011-4786-873d-6a2b9d4358c3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "713afcb1-f7c6-4986-ab25-6224c0f4ab3d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c56937f-cac8-47d6-a751-5b04dc0e50fd", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12276,Microsoft.Compute/GetVMImageFromLocation30Min;73276", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:4c56937f-cac8-47d6-a751-5b04dc0e50fd", - "Expires" : "-1", - "x-ms-request-id" : "aa68b97e-e98b-4d0f-87e1-8e125fa5d29e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "713afcb1-f7c6-4986-ab25-6224c0f4ab3d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202103050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd727130-ae41-472a-bf74-19a84b6f2717", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c98ea967-956e-4e20-85e4-f1da16bdfaf7", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12268,Microsoft.Compute/GetVMImageFromLocation30Min;73268", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:c98ea967-956e-4e20-85e4-f1da16bdfaf7", - "Expires" : "-1", - "x-ms-request-id" : "a8802b8f-3e84-4bd4-86de-5803d4effba6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202103050\"\r\n}", - "x-ms-client-request-id" : "bd727130-ae41-472a-bf74-19a84b6f2717", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202010201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c0885db-e006-49ab-a3ec-8c3f901739b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "819aa1a6-c259-443f-8653-0a4385e4f777", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12267,Microsoft.Compute/GetVMImageFromLocation30Min;73267", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:819aa1a6-c259-443f-8653-0a4385e4f777", - "Expires" : "-1", - "x-ms-request-id" : "5c2ca3bf-ab3c-496a-9b17-fc574e86d876", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202010201\"\r\n}", - "x-ms-client-request-id" : "0c0885db-e006-49ab-a3ec-8c3f901739b0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202105260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86325f3f-f439-4c01-a3d7-12331e17ff86", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e62e420-429a-4d10-b58a-f14d9c30b194", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12265,Microsoft.Compute/GetVMImageFromLocation30Min;73265", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:1e62e420-429a-4d10-b58a-f14d9c30b194", - "Expires" : "-1", - "x-ms-request-id" : "ee67d78c-f802-4c10-bf78-ba9138b0a60a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202105260\"\r\n}", - "x-ms-client-request-id" : "86325f3f-f439-4c01-a3d7-12331e17ff86", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202104130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dcafb969-1088-459a-af90-167cc73e714b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "420a7fc7-62b0-4d71-bf4c-1669e54ac851", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12263,Microsoft.Compute/GetVMImageFromLocation30Min;73263", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:420a7fc7-62b0-4d71-bf4c-1669e54ac851", - "Expires" : "-1", - "x-ms-request-id" : "e1ef2764-4453-43dc-ab2e-7bcf2597f5e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202104130\"\r\n}", - "x-ms-client-request-id" : "dcafb969-1088-459a-af90-167cc73e714b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcf531cc-4698-46a1-83b8-2583a323b418", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3ecc71c-3c85-4162-b615-6638f7fdee86", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12264,Microsoft.Compute/GetVMImageFromLocation30Min;73264", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:b3ecc71c-3c85-4162-b615-6638f7fdee86", - "Expires" : "-1", - "x-ms-request-id" : "cd853fbb-4b42-46c7-8b57-d2266a7c0492", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "bcf531cc-4698-46a1-83b8-2583a323b418", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b795681a-cf5a-430f-99bd-721b3c30d0d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1067", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bb1cb83-fb56-4081-867f-78fdb34c9ede", - "Date" : "Tue, 24 May 2022 13:01:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12266,Microsoft.Compute/GetVMImageFromLocation30Min;73266", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:1bb1cb83-fb56-4081-867f-78fdb34c9ede", - "Expires" : "-1", - "x-ms-request-id" : "cc97e8d8-b2a3-46f0-80ce-7f18b700d36d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "b795681a-cf5a-430f-99bd-721b3c30d0d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2458a3f2-86f4-4652-8867-c95963d413e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4665", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7b98904-6f48-436f-ad75-51a8a88ec362", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15933,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130104Z:a7b98904-6f48-436f-ad75-51a8a88ec362", - "Expires" : "-1", - "x-ms-request-id" : "303743e4-eae5-4ac8-8ce0-95c6a33d2cd6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202103050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202104130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202105260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "2458a3f2-86f4-4652-8867-c95963d413e4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ba425f6-f109-433f-8f36-7fe92ef2cc0f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8eac35f-51a9-431b-bc64-8dc79e7b4184", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12260,Microsoft.Compute/GetVMImageFromLocation30Min;73260", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:d8eac35f-51a9-431b-bc64-8dc79e7b4184", - "Expires" : "-1", - "x-ms-request-id" : "603a0ed7-b0e2-4bb5-8188-7ee705ddca97", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "8ba425f6-f109-433f-8f36-7fe92ef2cc0f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202103050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91558366-80e6-4a71-afef-9c0564b20306", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5344811e-4564-4b4a-9d74-449fb003ddc3", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12261,Microsoft.Compute/GetVMImageFromLocation30Min;73261", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:5344811e-4564-4b4a-9d74-449fb003ddc3", - "Expires" : "-1", - "x-ms-request-id" : "8710e65d-92f5-47e9-991d-6af2e2b79a7f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202103050\"\r\n}", - "x-ms-client-request-id" : "91558366-80e6-4a71-afef-9c0564b20306", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cf5eb25-a4e7-48a4-82d9-73bf9c1201ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf4d519b-d4e9-436a-8b22-0987b05535cd", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12257,Microsoft.Compute/GetVMImageFromLocation30Min;73257", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:cf4d519b-d4e9-436a-8b22-0987b05535cd", - "Expires" : "-1", - "x-ms-request-id" : "ccb5b059-4344-4819-834c-3cb8566471df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "4cf5eb25-a4e7-48a4-82d9-73bf9c1201ee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202104130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5700d15a-bb6a-4cf1-860c-9abe7cdbe060", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55fcdaf5-20d4-40eb-93eb-480619cfc98c", - "Date" : "Tue, 24 May 2022 13:01:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12258,Microsoft.Compute/GetVMImageFromLocation30Min;73258", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:55fcdaf5-20d4-40eb-93eb-480619cfc98c", - "Expires" : "-1", - "x-ms-request-id" : "d5e9f164-e6b7-4779-89e2-4e5e68019e7d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202104130\"\r\n}", - "x-ms-client-request-id" : "5700d15a-bb6a-4cf1-860c-9abe7cdbe060", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202105260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b50b5e6-5aa8-44b6-b549-eac11c2a274e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d8d9b22-fecf-4f0b-a432-ccea987f7dc7", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12259,Microsoft.Compute/GetVMImageFromLocation30Min;73259", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:4d8d9b22-fecf-4f0b-a432-ccea987f7dc7", - "Expires" : "-1", - "x-ms-request-id" : "87bcbc5c-85e3-4d4c-b383-bf6347d61ab9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202105260\"\r\n}", - "x-ms-client-request-id" : "0b50b5e6-5aa8-44b6-b549-eac11c2a274e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54bc68e3-f2ae-4c18-9853-d0296cff047e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96dbdfe9-164a-4432-999f-dd84246308e5", - "Date" : "Tue, 24 May 2022 13:01:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12256,Microsoft.Compute/GetVMImageFromLocation30Min;73256", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:96dbdfe9-164a-4432-999f-dd84246308e5", - "Expires" : "-1", - "x-ms-request-id" : "0d37406f-e38e-482f-8dde-55b676ff7b26", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "54bc68e3-f2ae-4c18-9853-d0296cff047e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "428ac4ed-4dd7-40bf-b9c1-a07530c7db53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45480f7b-edc1-4f7d-98e8-474c1c0914a7", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12262,Microsoft.Compute/GetVMImageFromLocation30Min;73262", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:45480f7b-edc1-4f7d-98e8-474c1c0914a7", - "Expires" : "-1", - "x-ms-request-id" : "5ccbc048-6976-4aa7-ab04-0a669023b3fc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "428ac4ed-4dd7-40bf-b9c1-a07530c7db53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c15d3cb0-0244-4bab-a5de-4c9faa835a81", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1069", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ea54c06-70da-4dde-9a7f-2eb05583e6d0", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12255,Microsoft.Compute/GetVMImageFromLocation30Min;73255", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:7ea54c06-70da-4dde-9a7f-2eb05583e6d0", - "Expires" : "-1", - "x-ms-request-id" : "bbbdb371-bb38-48c6-b1fb-6413584e29c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "c15d3cb0-0244-4bab-a5de-4c9faa835a81", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92f2ead1-f635-478f-a47d-ace7fdccefa5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61e25aaa-9e0a-4946-a61f-1458ce785818", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12253,Microsoft.Compute/GetVMImageFromLocation30Min;73253", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:61e25aaa-9e0a-4946-a61f-1458ce785818", - "Expires" : "-1", - "x-ms-request-id" : "6964ddf0-be32-4dfe-af16-f9e0c3fa85c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "92f2ead1-f635-478f-a47d-ace7fdccefa5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c35b0993-2fe1-400c-9bf7-c6ce96c3c413", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93c62cb9-39d9-4e6d-ac4c-ed3d8af3c408", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12250,Microsoft.Compute/GetVMImageFromLocation30Min;73250", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:93c62cb9-39d9-4e6d-ac4c-ed3d8af3c408", - "Expires" : "-1", - "x-ms-request-id" : "9f5fc11e-bfaf-4ea1-8da0-1cb6a99c5f23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "c35b0993-2fe1-400c-9bf7-c6ce96c3c413", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26da71ea-5890-4b99-9a7e-051719c540df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1069", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f77d078-6ac3-40e6-991b-d02c9d2a51ab", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12249,Microsoft.Compute/GetVMImageFromLocation30Min;73249", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:6f77d078-6ac3-40e6-991b-d02c9d2a51ab", - "Expires" : "-1", - "x-ms-request-id" : "d320fa08-d5ed-442f-a878-42c7eec72b11", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "26da71ea-5890-4b99-9a7e-051719c540df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7eb62ce-ae5d-4c5e-9e8f-268348c62b91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1069", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a935479-dd11-4d31-bb45-fd28a6106842", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12252,Microsoft.Compute/GetVMImageFromLocation30Min;73252", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:6a935479-dd11-4d31-bb45-fd28a6106842", - "Expires" : "-1", - "x-ms-request-id" : "9221f080-7f46-4161-9299-d88f36e1f55f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "b7eb62ce-ae5d-4c5e-9e8f-268348c62b91", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfc0eca1-34ff-4403-9b32-cd7e32dbbb4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "868e634f-0940-4172-ab07-3f5a2f105333", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12254,Microsoft.Compute/GetVMImageFromLocation30Min;73254", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:868e634f-0940-4172-ab07-3f5a2f105333", - "Expires" : "-1", - "x-ms-request-id" : "614efa6c-577e-4e01-ae1b-d3bd17c952ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "cfc0eca1-34ff-4403-9b32-cd7e32dbbb4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-shell/skus/pro-fips-18_04-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e88eb512-c096-42ec-b046-e616bec2578b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1069", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daaf8e85-6f90-4a33-94be-a8fce030d0ef", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12251,Microsoft.Compute/GetVMImageFromLocation30Min;73251", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:daaf8e85-6f90-4a33-94be-a8fce030d0ef", - "Expires" : "-1", - "x-ms-request-id" : "cf1a1bf2-73ed-4e3a-bdd8-a25a7c681c47", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-shell\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-shell/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "e88eb512-c096-42ec-b046-e616bec2578b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fa6f398-e0c7-4640-b36a-89f39282a544", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2469", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "599f375c-942d-43b6-a56d-170aa81ceafb", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9981,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:599f375c-942d-43b6-a56d-170aa81ceafb", - "Expires" : "-1", - "x-ms-request-id" : "e7045f8b-f378-403f-a0d6-d42ad0a76f85", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "6fa6f398-e0c7-4640-b36a-89f39282a544", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db77e112-c7d3-4b6c-a200-9be90d1cda88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb8d7235-5c21-4be2-bed8-c57b056aa639", - "Date" : "Tue, 24 May 2022 13:01:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15932,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130105Z:cb8d7235-5c21-4be2-bed8-c57b056aa639", - "Expires" : "-1", - "x-ms-request-id" : "8f8bdaba-a9a2-416e-a815-fb0841b1f8db", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "db77e112-c7d3-4b6c-a200-9be90d1cda88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f11361e-f98a-4109-a039-307ad10ffdfa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60d5a7f4-5a70-47ce-be32-b8a16f83697d", - "Date" : "Tue, 24 May 2022 13:01:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12248,Microsoft.Compute/GetVMImageFromLocation30Min;73248", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130106Z:60d5a7f4-5a70-47ce-be32-b8a16f83697d", - "Expires" : "-1", - "x-ms-request-id" : "211b1955-1c9c-41d4-908e-adee90887610", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "2f11361e-f98a-4109-a039-307ad10ffdfa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd637ab7-6ff1-4200-b6ac-b48599832da6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "324", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe1d9ffa-1f99-4c85-85ac-c5b430804757", - "Date" : "Tue, 24 May 2022 13:01:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15931,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130106Z:fe1d9ffa-1f99-4c85-85ac-c5b430804757", - "Expires" : "-1", - "x-ms-request-id" : "b244f37b-068a-4270-8002-73f5d8768c12", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "cd637ab7-6ff1-4200-b6ac-b48599832da6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ade1b782-7eb0-4d23-93ab-2e440adab01f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c8caead-ce3e-48c9-8e86-7b9cabb9c6c6", - "Date" : "Tue, 24 May 2022 13:01:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12247,Microsoft.Compute/GetVMImageFromLocation30Min;73247", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130106Z:5c8caead-ce3e-48c9-8e86-7b9cabb9c6c6", - "Expires" : "-1", - "x-ms-request-id" : "d16bf05e-66f4-4dfb-84f8-a24a99684a4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "ade1b782-7eb0-4d23-93ab-2e440adab01f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d91a6c5-8b31-4aa4-827a-d9f5a866b535", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "635", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f678e5b-e6af-4c8f-b19d-d0ac02f5d83a", - "Date" : "Tue, 24 May 2022 13:01:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15930,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130106Z:8f678e5b-e6af-4c8f-b19d-d0ac02f5d83a", - "Expires" : "-1", - "x-ms-request-id" : "b06cf671-6ea4-45d6-bdee-9fe20d415a88", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04/Versions/18.04.202204240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04/Versions/18.04.202205050\"\r\n }\r\n]", - "x-ms-client-request-id" : "1d91a6c5-8b31-4aa4-827a-d9f5a866b535", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/18_04/versions/18.04.202204240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6c30fdb-b1f6-4218-ac1c-ef9a04609982", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1218", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d385260-4f63-4875-b501-fd343d734876", - "Date" : "Tue, 24 May 2022 13:01:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12246,Microsoft.Compute/GetVMImageFromLocation30Min;73246", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130107Z:4d385260-4f63-4875-b501-fd343d734876", - "Expires" : "-1", - "x-ms-request-id" : "a73ec389-a0e7-4c56-9c9b-4972bb57eb4c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04/Versions/18.04.202204240\"\r\n}", - "x-ms-client-request-id" : "b6c30fdb-b1f6-4218-ac1c-ef9a04609982", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/18_04/versions/18.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c235e7d-de02-45d1-a865-c69a0b387251", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1218", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "567a5f6c-7c67-42bd-ac1d-878e0e8650c5", - "Date" : "Tue, 24 May 2022 13:01:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12245,Microsoft.Compute/GetVMImageFromLocation30Min;73245", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130107Z:567a5f6c-7c67-42bd-ac1d-878e0e8650c5", - "Expires" : "-1", - "x-ms-request-id" : "c895d3c0-557a-4c1c-819f-ed5442d2e64e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04/Versions/18.04.202205050\"\r\n}", - "x-ms-client-request-id" : "1c235e7d-de02-45d1-a865-c69a0b387251", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5145ac8a-64c6-411e-b4a7-5f404e79a278", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "645", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e7e7ac2-8fd8-417a-afbb-b157dd1b4114", - "Date" : "Tue, 24 May 2022 13:01:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15929,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130107Z:1e7e7ac2-8fd8-417a-afbb-b157dd1b4114", - "Expires" : "-1", - "x-ms-request-id" : "8ab2b3e9-8a53-4c67-ae13-194504dd5195", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04-gen2/Versions/18.04.202204240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04-gen2/Versions/18.04.202205050\"\r\n }\r\n]", - "x-ms-client-request-id" : "5145ac8a-64c6-411e-b4a7-5f404e79a278", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/18_04-gen2/versions/18.04.202204240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70052dc8-041a-4e1d-a4f5-050f76b8951c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1215", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55c0ff3f-9046-46a1-93d7-3a18f0ea5e8f", - "Date" : "Tue, 24 May 2022 13:01:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12244,Microsoft.Compute/GetVMImageFromLocation30Min;73244", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130107Z:55c0ff3f-9046-46a1-93d7-3a18f0ea5e8f", - "Expires" : "-1", - "x-ms-request-id" : "374676fc-f3d1-4521-9287-336c6195bd2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04-gen2/Versions/18.04.202204240\"\r\n}", - "x-ms-client-request-id" : "70052dc8-041a-4e1d-a4f5-050f76b8951c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/18_04-gen2/versions/18.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70393786-0203-44cb-9e96-e577593d4810", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1215", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "079ab4de-dc13-422b-93eb-445d1269d05f", - "Date" : "Tue, 24 May 2022 13:01:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12243,Microsoft.Compute/GetVMImageFromLocation30Min;73243", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130107Z:079ab4de-dc13-422b-93eb-445d1269d05f", - "Expires" : "-1", - "x-ms-request-id" : "1ae6e793-eb66-4e59-ab63-f0c6cac4ffd6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/18_04-gen2/Versions/18.04.202205050\"\r\n}", - "x-ms-client-request-id" : "70393786-0203-44cb-9e96-e577593d4810", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5dd2ac53-7743-4595-a0b1-d382f7ab9134", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "319", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76ac0a4f-7fb3-451a-b4e5-bf971a021a79", - "Date" : "Tue, 24 May 2022 13:01:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15928,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130107Z:76ac0a4f-7fb3-451a-b4e5-bf971a021a79", - "Expires" : "-1", - "x-ms-request-id" : "5a46de22-8d0e-4a1d-ba4a-4d937feabb63", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/20_04/Versions/20.04.202204190\"\r\n }\r\n]", - "x-ms-client-request-id" : "5dd2ac53-7743-4595-a0b1-d382f7ab9134", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/20_04/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf848c3e-29b1-4328-be5e-d69491fd397d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "832d7646-fe8f-4036-afcf-e97c51386cfb", - "Date" : "Tue, 24 May 2022 13:01:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12242,Microsoft.Compute/GetVMImageFromLocation30Min;73242", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130108Z:832d7646-fe8f-4036-afcf-e97c51386cfb", - "Expires" : "-1", - "x-ms-request-id" : "8398eb5a-70ee-4a10-899b-9372f49628cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/20_04/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "cf848c3e-29b1-4328-be5e-d69491fd397d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e16c09a-c092-4fcd-ad27-d436197b6424", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "324", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c06e9757-c58c-45de-9d88-df5e36974a0a", - "Date" : "Tue, 24 May 2022 13:01:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15927,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130108Z:c06e9757-c58c-45de-9d88-df5e36974a0a", - "Expires" : "-1", - "x-ms-request-id" : "faf52f16-aae0-4e87-beff-e1bdbe83ad4c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/20_04-gen2/Versions/20.04.202204190\"\r\n }\r\n]", - "x-ms-client-request-id" : "7e16c09a-c092-4fcd-ad27-d436197b6424", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-sk/skus/20_04-gen2/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94d46f4b-6976-45a1-ba10-795c2c556d14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c4a4ce5-cc6b-4233-aff8-7e927c122174", - "Date" : "Tue, 24 May 2022 13:01:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12241,Microsoft.Compute/GetVMImageFromLocation30Min;73241", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130108Z:6c4a4ce5-cc6b-4233-aff8-7e927c122174", - "Expires" : "-1", - "x-ms-request-id" : "3f0c92c9-5889-420b-a3ee-d3270df12b87", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-sk\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-sk/Skus/20_04-gen2/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "94d46f4b-6976-45a1-ba10-795c2c556d14", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5542867-1989-4d94-820e-f9953169b664", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2529", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "340e19be-849c-40d7-95e2-e34aeba507df", - "Date" : "Tue, 24 May 2022 13:01:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9980,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:340e19be-849c-40d7-95e2-e34aeba507df", - "Expires" : "-1", - "x-ms-request-id" : "c9f957e5-dd88-450e-bd46-58486f9c3e1e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "e5542867-1989-4d94-820e-f9953169b664", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb432407-0ca3-46f5-b4cc-4fb0fcbea07a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1613", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9add875e-9afe-40b8-a369-f5f474367102", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15926,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:9add875e-9afe-40b8-a369-f5f474367102", - "Expires" : "-1", - "x-ms-request-id" : "5d1708e5-24b4-4eac-a223-3d227e970e64", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "fb432407-0ca3-46f5-b4cc-4fb0fcbea07a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31b1f089-bec3-4c5d-a0c1-11a626bc6a28", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6fd4842a-818d-43ca-9639-431d2154a0c5", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12240,Microsoft.Compute/GetVMImageFromLocation30Min;73240", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:6fd4842a-818d-43ca-9639-431d2154a0c5", - "Expires" : "-1", - "x-ms-request-id" : "9f7df4cd-a07e-4811-ac0a-06cf6a887a8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "31b1f089-bec3-4c5d-a0c1-11a626bc6a28", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a3b401a-53a3-4dbe-b768-531bce633696", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab274700-753e-46de-8852-ac3c911d8227", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12239,Microsoft.Compute/GetVMImageFromLocation30Min;73239", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:ab274700-753e-46de-8852-ac3c911d8227", - "Expires" : "-1", - "x-ms-request-id" : "add5813c-f1c2-4a92-b763-e2f0c9913315", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "0a3b401a-53a3-4dbe-b768-531bce633696", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca330532-2e82-4cd2-8659-ad7bf5128612", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36f9e8e7-2c0c-4b8a-9c94-d54ce9b6f12d", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12238,Microsoft.Compute/GetVMImageFromLocation30Min;73238", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:36f9e8e7-2c0c-4b8a-9c94-d54ce9b6f12d", - "Expires" : "-1", - "x-ms-request-id" : "1996ffa2-339d-4bdf-8355-84ae8e778e4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "ca330532-2e82-4cd2-8659-ad7bf5128612", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11fc1478-4b3d-4d26-bb44-573a74537662", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97b97505-d2b9-478f-9905-f8ede70514b1", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12237,Microsoft.Compute/GetVMImageFromLocation30Min;73237", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:97b97505-d2b9-478f-9905-f8ede70514b1", - "Expires" : "-1", - "x-ms-request-id" : "3b4c08a6-5780-4699-a0ed-818a40e8154b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "11fc1478-4b3d-4d26-bb44-573a74537662", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "598fd3a2-409a-488c-b88f-cce39a5ab2fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fea18883-1733-41c1-9942-b1c8a20df68a", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12236,Microsoft.Compute/GetVMImageFromLocation30Min;73236", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130109Z:fea18883-1733-41c1-9942-b1c8a20df68a", - "Expires" : "-1", - "x-ms-request-id" : "19973ca1-37e7-467a-8ce8-a515cfeaa0df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "598fd3a2-409a-488c-b88f-cce39a5ab2fb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46144205-fa15-4f6e-98a0-2fab4a459a32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1638", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "256f53f9-b5b8-4206-99cb-6edb52dbc317", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15925,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:256f53f9-b5b8-4206-99cb-6edb52dbc317", - "Expires" : "-1", - "x-ms-request-id" : "0c96abd1-9263-4337-a820-2aa2e97216aa", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "46144205-fa15-4f6e-98a0-2fab4a459a32", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f62b6458-e109-4e16-a1e2-5d3792c5e77a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c13b9d95-98cf-4ffa-b3f4-f401332f3f50", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12232,Microsoft.Compute/GetVMImageFromLocation30Min;73232", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:c13b9d95-98cf-4ffa-b3f4-f401332f3f50", - "Expires" : "-1", - "x-ms-request-id" : "f8c81d5e-9dc4-4ff8-a27d-e218f9eceabe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "f62b6458-e109-4e16-a1e2-5d3792c5e77a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd63c3ec-215f-412d-97fb-ae94ad0e40df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9186d1df-fc89-4cec-8cb1-640dcbae4547", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12233,Microsoft.Compute/GetVMImageFromLocation30Min;73233", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:9186d1df-fc89-4cec-8cb1-640dcbae4547", - "Expires" : "-1", - "x-ms-request-id" : "15270ff3-b194-47c9-8448-642f0379da3f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "cd63c3ec-215f-412d-97fb-ae94ad0e40df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "060c21a7-be04-4cf1-a068-9405a456092a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6072e088-315c-4015-97e8-ac314ca8c1c2", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12235,Microsoft.Compute/GetVMImageFromLocation30Min;73235", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:6072e088-315c-4015-97e8-ac314ca8c1c2", - "Expires" : "-1", - "x-ms-request-id" : "118fcdc5-acab-4afd-8b99-bab5b041f674", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "060c21a7-be04-4cf1-a068-9405a456092a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61b89e3b-ac58-4216-b47c-23409e108cf3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c701c711-136d-44ea-a9db-38e8afba36cf", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12234,Microsoft.Compute/GetVMImageFromLocation30Min;73234", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:c701c711-136d-44ea-a9db-38e8afba36cf", - "Expires" : "-1", - "x-ms-request-id" : "0297d137-092d-425d-8d24-f78cc261face", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "61b89e3b-ac58-4216-b47c-23409e108cf3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-16_04-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4ca3680-c58e-45cc-a645-e9cca1ca6aaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42574fda-1be2-4b90-a6fc-01db9dc6e424", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12231,Microsoft.Compute/GetVMImageFromLocation30Min;73231", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:42574fda-1be2-4b90-a6fc-01db9dc6e424", - "Expires" : "-1", - "x-ms-request-id" : "428c7b34-adcf-49c1-b927-14d177ff7d5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-16_04-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "d4ca3680-c58e-45cc-a645-e9cca1ca6aaa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dddb7977-bc9a-4186-8eeb-1832271d7761", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4833", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "091e659e-f76b-4d70-bdb6-d8768b60d1b2", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15924,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:091e659e-f76b-4d70-bdb6-d8768b60d1b2", - "Expires" : "-1", - "x-ms-request-id" : "94519208-b814-4b1c-8090-a2ea526be4ab", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "dddb7977-bc9a-4186-8eeb-1832271d7761", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d84ae859-c9b1-487c-9df6-a116521a59d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c0bd40a-663a-424a-854e-adc425129df8", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12226,Microsoft.Compute/GetVMImageFromLocation30Min;73226", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:8c0bd40a-663a-424a-854e-adc425129df8", - "Expires" : "-1", - "x-ms-request-id" : "4d465eab-ca00-423f-a92d-bee56480b624", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "d84ae859-c9b1-487c-9df6-a116521a59d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27419e06-3da9-4603-a255-ecc39c59b0c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c8452b15-e27b-4ab5-9b1a-dfc33bd409aa", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12224,Microsoft.Compute/GetVMImageFromLocation30Min;73224", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:c8452b15-e27b-4ab5-9b1a-dfc33bd409aa", - "Expires" : "-1", - "x-ms-request-id" : "d933831a-85da-4111-bcd7-9f0a909036e2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "27419e06-3da9-4603-a255-ecc39c59b0c6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68f457df-5f26-4948-bb3c-1222aea912a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d1ac7c5-daf4-4e33-a3fd-315b20f3e76c", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12223,Microsoft.Compute/GetVMImageFromLocation30Min;73223", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:1d1ac7c5-daf4-4e33-a3fd-315b20f3e76c", - "Expires" : "-1", - "x-ms-request-id" : "58f5c27a-42e3-4257-bbf0-f7a8f810bcd6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "68f457df-5f26-4948-bb3c-1222aea912a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a21378d6-a174-42d4-9f38-527db83e005b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92543cb8-a52c-4fcd-a237-827f3d87eba0", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12229,Microsoft.Compute/GetVMImageFromLocation30Min;73229", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:92543cb8-a52c-4fcd-a237-827f3d87eba0", - "Expires" : "-1", - "x-ms-request-id" : "50143ef4-2a8f-4cff-8103-8b4d7c1657d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "a21378d6-a174-42d4-9f38-527db83e005b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ee57dd5-c7b4-4b6f-be15-22d43f7305ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34ba0cdf-fa8c-437d-9be4-9e76229f3581", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12225,Microsoft.Compute/GetVMImageFromLocation30Min;73225", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:34ba0cdf-fa8c-437d-9be4-9e76229f3581", - "Expires" : "-1", - "x-ms-request-id" : "b5b25b4a-96c2-498a-beaa-4af01fb9b9be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "5ee57dd5-c7b4-4b6f-be15-22d43f7305ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29378de5-7204-4907-8476-22c2e03e8587", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "147d552b-6df3-4f50-af89-426c5b9751ef", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12222,Microsoft.Compute/GetVMImageFromLocation30Min;73222", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:147d552b-6df3-4f50-af89-426c5b9751ef", - "Expires" : "-1", - "x-ms-request-id" : "acceeec5-7e34-4e00-841e-2f0599504df6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "29378de5-7204-4907-8476-22c2e03e8587", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93ef35d2-2c61-4c76-8a8c-9af0498d49f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14afbe39-339e-47b8-ac63-179f2949e328", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12221,Microsoft.Compute/GetVMImageFromLocation30Min;73221", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:14afbe39-339e-47b8-ac63-179f2949e328", - "Expires" : "-1", - "x-ms-request-id" : "d1080387-8912-40ea-be53-100935bb9886", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "93ef35d2-2c61-4c76-8a8c-9af0498d49f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cab1da7-5c1a-473b-b8eb-9ef00cdc7a92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bdb98318-97cf-4b94-9a3b-d23cc3068db1", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12220,Microsoft.Compute/GetVMImageFromLocation30Min;73220", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:bdb98318-97cf-4b94-9a3b-d23cc3068db1", - "Expires" : "-1", - "x-ms-request-id" : "8c707d90-03ee-4c2e-9ab3-23c0279e1dd9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "9cab1da7-5c1a-473b-b8eb-9ef00cdc7a92", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4e98b2d-ad51-45e6-a149-817fd5747cc4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4955071-476b-4937-ab94-0caea7f89e3d", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12228,Microsoft.Compute/GetVMImageFromLocation30Min;73228", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:e4955071-476b-4937-ab94-0caea7f89e3d", - "Expires" : "-1", - "x-ms-request-id" : "36770834-cbb3-4cc3-b5ee-51263a9a1db2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "c4e98b2d-ad51-45e6-a149-817fd5747cc4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7380fe5c-0291-4ca8-b749-f57de6720721", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e804cd42-65c7-478d-b376-87bde7228c6b", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12227,Microsoft.Compute/GetVMImageFromLocation30Min;73227", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:e804cd42-65c7-478d-b376-87bde7228c6b", - "Expires" : "-1", - "x-ms-request-id" : "ac1b3b31-2a62-433d-b0d7-1214bd5cea62", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "7380fe5c-0291-4ca8-b749-f57de6720721", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "efa914d5-96ce-4938-9116-287dc3e19247", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ba7cb90-6050-43fd-ae91-72e25a5cce83", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12219,Microsoft.Compute/GetVMImageFromLocation30Min;73219", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:6ba7cb90-6050-43fd-ae91-72e25a5cce83", - "Expires" : "-1", - "x-ms-request-id" : "5cf9bf6a-595d-4863-bd62-49f39d6b1ac7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "efa914d5-96ce-4938-9116-287dc3e19247", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9585c202-fafc-452b-b594-382d8d530e8e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30321d16-a4fe-42ae-8165-f7cce94efc83", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12218,Microsoft.Compute/GetVMImageFromLocation30Min;73218", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:30321d16-a4fe-42ae-8165-f7cce94efc83", - "Expires" : "-1", - "x-ms-request-id" : "772545a9-0d8c-482d-bc7f-8d8d80e7a703", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "9585c202-fafc-452b-b594-382d8d530e8e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7ce3876-3ffd-4113-babf-a5ed4a6546de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ffe43f90-5c26-404e-9154-de8750fdc4ab", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12217,Microsoft.Compute/GetVMImageFromLocation30Min;73217", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:ffe43f90-5c26-404e-9154-de8750fdc4ab", - "Expires" : "-1", - "x-ms-request-id" : "a5644985-928c-4e99-b244-ea14c7ade8f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "d7ce3876-3ffd-4113-babf-a5ed4a6546de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c011ad7-b777-4929-be8c-cd030a2f15eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3663a21f-ddf9-42f9-9dbe-d020849d2d68", - "Date" : "Tue, 24 May 2022 13:01:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12230,Microsoft.Compute/GetVMImageFromLocation30Min;73230", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:3663a21f-ddf9-42f9-9dbe-d020849d2d68", - "Expires" : "-1", - "x-ms-request-id" : "02cb5dc9-156c-4989-914a-d4cf7581e308", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "1c011ad7-b777-4929-be8c-cd030a2f15eb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74d303e0-43f5-4fa6-834f-65e564d727ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ce3f552-0d63-4d74-bb1e-859fb3c2f3da", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12216,Microsoft.Compute/GetVMImageFromLocation30Min;73216", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130110Z:8ce3f552-0d63-4d74-bb1e-859fb3c2f3da", - "Expires" : "-1", - "x-ms-request-id" : "c1d69996-c641-44e4-8dcc-64c61559f177", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "74d303e0-43f5-4fa6-834f-65e564d727ae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2680d7c-7c1a-4b82-98fb-a5abf82d9265", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4908", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b549416c-2a28-447c-b4e1-59e8737ab999", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15923,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:b549416c-2a28-447c-b4e1-59e8737ab999", - "Expires" : "-1", - "x-ms-request-id" : "e0c1978c-b472-49b6-9df2-e1a3d0f37299", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "d2680d7c-7c1a-4b82-98fb-a5abf82d9265", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "409d0c38-7ac2-46c9-b4de-6aabdc2dda7b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbf9bda8-3579-4d5a-bfdf-30f82313806b", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12215,Microsoft.Compute/GetVMImageFromLocation30Min;73215", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:cbf9bda8-3579-4d5a-bfdf-30f82313806b", - "Expires" : "-1", - "x-ms-request-id" : "ed08cb2c-a381-4126-be4a-50f591a4678e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "409d0c38-7ac2-46c9-b4de-6aabdc2dda7b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a187b1d9-e332-4a0f-9117-fc3133dafee9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ee577b0-ee12-4de8-b382-c3089b49cf7d", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12211,Microsoft.Compute/GetVMImageFromLocation30Min;73211", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:5ee577b0-ee12-4de8-b382-c3089b49cf7d", - "Expires" : "-1", - "x-ms-request-id" : "8c791777-1371-45ea-9b54-1165c78be6ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "a187b1d9-e332-4a0f-9117-fc3133dafee9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb3253cc-6e52-405d-aecb-ca170fecdeb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "778a249d-a0dc-49ef-9e2a-9afe94fb39e0", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12214,Microsoft.Compute/GetVMImageFromLocation30Min;73214", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:778a249d-a0dc-49ef-9e2a-9afe94fb39e0", - "Expires" : "-1", - "x-ms-request-id" : "f262bc15-2ea0-4e38-b1a4-76e4a747589e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "bb3253cc-6e52-405d-aecb-ca170fecdeb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70c77ff4-b7b4-4898-95ce-231fcccee056", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f7e1487-a83e-4f7e-b8b1-5ce3d5199880", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12212,Microsoft.Compute/GetVMImageFromLocation30Min;73212", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:9f7e1487-a83e-4f7e-b8b1-5ce3d5199880", - "Expires" : "-1", - "x-ms-request-id" : "637865d6-f82b-4703-8cb0-009a81c3da85", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "70c77ff4-b7b4-4898-95ce-231fcccee056", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c85b8fa-ce3f-4771-b5cc-dbe6ba15b137", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec47ee4a-4730-482a-a618-40820f8aa8e5", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12213,Microsoft.Compute/GetVMImageFromLocation30Min;73213", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:ec47ee4a-4730-482a-a618-40820f8aa8e5", - "Expires" : "-1", - "x-ms-request-id" : "33a45da3-6b33-4f59-8ef1-03e83bfcff16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "3c85b8fa-ce3f-4771-b5cc-dbe6ba15b137", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6dd7b925-2d2d-4985-9fab-b4bd74f0fbf2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f1d1ed8-0e4e-42d5-9592-2baaa6ab454a", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12206,Microsoft.Compute/GetVMImageFromLocation30Min;73206", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:1f1d1ed8-0e4e-42d5-9592-2baaa6ab454a", - "Expires" : "-1", - "x-ms-request-id" : "fed33f25-ee8a-44ce-83bf-2554baa524ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "6dd7b925-2d2d-4985-9fab-b4bd74f0fbf2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6773d3b1-cd8c-49ad-a921-3ad1249ebd96", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d717774-fd8a-4571-abe8-75fc751938c6", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12210,Microsoft.Compute/GetVMImageFromLocation30Min;73210", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:1d717774-fd8a-4571-abe8-75fc751938c6", - "Expires" : "-1", - "x-ms-request-id" : "19a80026-49f8-4cf3-b2c8-c3f313095e02", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "6773d3b1-cd8c-49ad-a921-3ad1249ebd96", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4adc1e3-28e8-4592-a359-fd2c41fc67aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d60ddff6-f353-493a-bca6-6ac9c6a0eed7", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12207,Microsoft.Compute/GetVMImageFromLocation30Min;73207", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:d60ddff6-f353-493a-bca6-6ac9c6a0eed7", - "Expires" : "-1", - "x-ms-request-id" : "ac0d1f04-b7c1-47e8-9137-4bcc901bf6e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "c4adc1e3-28e8-4592-a359-fd2c41fc67aa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98503984-8342-498e-9073-cd3f999915e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa6f15e4-1b26-4114-aa7f-cf7956e456b4", - "Date" : "Tue, 24 May 2022 13:01:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12209,Microsoft.Compute/GetVMImageFromLocation30Min;73209", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:fa6f15e4-1b26-4114-aa7f-cf7956e456b4", - "Expires" : "-1", - "x-ms-request-id" : "8e0699e8-176e-4630-8db8-0e2a48c53598", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "98503984-8342-498e-9073-cd3f999915e2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "66c0583b-40b8-4678-8c49-9ad6dd6e87c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f48be9d-a114-469c-bd21-01cff6667091", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12208,Microsoft.Compute/GetVMImageFromLocation30Min;73208", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:4f48be9d-a114-469c-bd21-01cff6667091", - "Expires" : "-1", - "x-ms-request-id" : "e8903cf6-43fe-42f0-8309-7412e5f20deb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "66c0583b-40b8-4678-8c49-9ad6dd6e87c0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db0be0d0-89ca-4f3a-89d1-2d150e013cc1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff8eda15-fbd2-4370-9b3d-b64871646f56", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12205,Microsoft.Compute/GetVMImageFromLocation30Min;73205", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:ff8eda15-fbd2-4370-9b3d-b64871646f56", - "Expires" : "-1", - "x-ms-request-id" : "f40fe214-7adf-4eab-af65-f8679f51205a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "db0be0d0-89ca-4f3a-89d1-2d150e013cc1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db5b93e0-6024-4d4e-a765-0f2a4ff2263a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b0c7537-0b67-49f4-90c6-7538820d3d91", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12204,Microsoft.Compute/GetVMImageFromLocation30Min;73204", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:2b0c7537-0b67-49f4-90c6-7538820d3d91", - "Expires" : "-1", - "x-ms-request-id" : "9e7c12c0-5442-4f31-8138-94350a0f8671", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "db5b93e0-6024-4d4e-a765-0f2a4ff2263a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d976c791-391a-4f92-a84f-7f6737e6c7ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c5fd112-8c70-4a90-8d02-85988fd11859", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12203,Microsoft.Compute/GetVMImageFromLocation30Min;73203", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:7c5fd112-8c70-4a90-8d02-85988fd11859", - "Expires" : "-1", - "x-ms-request-id" : "2e5933d0-f490-4198-95f1-6c289eaf0d5a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "d976c791-391a-4f92-a84f-7f6737e6c7ce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06c1ca22-2905-4743-acdd-a1423b5064ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42c15924-fd56-402d-bdab-dabf48a9e6ee", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12202,Microsoft.Compute/GetVMImageFromLocation30Min;73202", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:42c15924-fd56-402d-bdab-dabf48a9e6ee", - "Expires" : "-1", - "x-ms-request-id" : "eb7ddff7-e6ba-48fd-8241-3d35a14dd7fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "06c1ca22-2905-4743-acdd-a1423b5064ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de2412ba-9e60-437b-859f-bac27319a0b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f513aee5-ed7b-46b3-afbb-d696c07556b4", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12201,Microsoft.Compute/GetVMImageFromLocation30Min;73201", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:f513aee5-ed7b-46b3-afbb-d696c07556b4", - "Expires" : "-1", - "x-ms-request-id" : "c2dcced3-d9e8-4040-88ba-77d89e8e4d48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "de2412ba-9e60-437b-859f-bac27319a0b0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b191f8b-e7f4-495e-b155-08be869d36bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6121", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2bc37ade-8da8-4858-9e77-d0d3a4954c64", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15922,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130111Z:2bc37ade-8da8-4858-9e77-d0d3a4954c64", - "Expires" : "-1", - "x-ms-request-id" : "57687ac4-37e2-4283-a5e1-6fcf4b604807", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "1b191f8b-e7f4-495e-b155-08be869d36bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b7fb5cc-ebb2-48f7-8199-4e5db3c8392d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4cffd247-f77c-4111-affa-bc5bf8be1a17", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12200,Microsoft.Compute/GetVMImageFromLocation30Min;73200", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:4cffd247-f77c-4111-affa-bc5bf8be1a17", - "Expires" : "-1", - "x-ms-request-id" : "4451eb79-0e3c-416c-8592-012bb3eb8ef6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "6b7fb5cc-ebb2-48f7-8199-4e5db3c8392d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fab73bcf-4b8e-4e9e-bedf-0a46b1bab826", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18d5f515-8469-4fda-ad9b-3e27dad65b1f", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12199,Microsoft.Compute/GetVMImageFromLocation30Min;73199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:18d5f515-8469-4fda-ad9b-3e27dad65b1f", - "Expires" : "-1", - "x-ms-request-id" : "9460a5df-346f-4317-9d0a-7fba573fffce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "fab73bcf-4b8e-4e9e-bedf-0a46b1bab826", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6ede8ba-f6db-463e-8b2d-3eccef25e568", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d939bf4-26f8-461f-81f1-7d2f7aca6bf2", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12198,Microsoft.Compute/GetVMImageFromLocation30Min;73198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:4d939bf4-26f8-461f-81f1-7d2f7aca6bf2", - "Expires" : "-1", - "x-ms-request-id" : "4d115542-7ac5-4e55-9aa7-710f040465ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "c6ede8ba-f6db-463e-8b2d-3eccef25e568", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70730f77-c226-4cd2-a718-399982c3394e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd8140a9-dbfa-4755-a193-be4594edc765", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12196,Microsoft.Compute/GetVMImageFromLocation30Min;73196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:dd8140a9-dbfa-4755-a193-be4594edc765", - "Expires" : "-1", - "x-ms-request-id" : "5695a5a4-3696-46f3-bb92-bf712c653665", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "70730f77-c226-4cd2-a718-399982c3394e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "344d432f-00ff-41b9-899d-2d1c85788955", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3971b69-69a7-42a1-8e18-cfe8e7bb8233", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12195,Microsoft.Compute/GetVMImageFromLocation30Min;73195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:d3971b69-69a7-42a1-8e18-cfe8e7bb8233", - "Expires" : "-1", - "x-ms-request-id" : "9353a237-46d0-4baa-9f17-ed5361bcc6ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "344d432f-00ff-41b9-899d-2d1c85788955", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b1426ed-f186-4343-a271-74b84817f4ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b468ca5-a782-4ba8-b5d7-10d896702300", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12193,Microsoft.Compute/GetVMImageFromLocation30Min;73193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:1b468ca5-a782-4ba8-b5d7-10d896702300", - "Expires" : "-1", - "x-ms-request-id" : "ebd394e8-9c8b-428b-bbe2-16aa897239a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "1b1426ed-f186-4343-a271-74b84817f4ed", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ecc32a6-b8a8-4291-83ba-b79e085474eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ae31dbe-6386-41f1-b5e0-1c4892ea97cd", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12197,Microsoft.Compute/GetVMImageFromLocation30Min;73197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:1ae31dbe-6386-41f1-b5e0-1c4892ea97cd", - "Expires" : "-1", - "x-ms-request-id" : "21065e37-b333-4f2b-936b-78cd1615ad2a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "4ecc32a6-b8a8-4291-83ba-b79e085474eb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4aa8ed8c-3b5f-4e13-9432-92da997223d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7472830d-be66-4ff6-9ac7-e052c5367bfa", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12190,Microsoft.Compute/GetVMImageFromLocation30Min;73190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:7472830d-be66-4ff6-9ac7-e052c5367bfa", - "Expires" : "-1", - "x-ms-request-id" : "50b9ca8e-968a-4e3a-b03b-c434dcfc37ce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "4aa8ed8c-3b5f-4e13-9432-92da997223d4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62fc4703-90b4-4cdb-a300-fba5515d6be0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daa45c79-613e-4c0a-b458-52e8eca7b32e", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12189,Microsoft.Compute/GetVMImageFromLocation30Min;73189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:daa45c79-613e-4c0a-b458-52e8eca7b32e", - "Expires" : "-1", - "x-ms-request-id" : "c8e10785-061c-4a35-99c1-f04510212095", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "62fc4703-90b4-4cdb-a300-fba5515d6be0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dcdcc807-56c6-4dbf-a26b-72e3e3d26836", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dac6c4d2-b332-44cb-89b0-122732a8438c", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12192,Microsoft.Compute/GetVMImageFromLocation30Min;73192", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:dac6c4d2-b332-44cb-89b0-122732a8438c", - "Expires" : "-1", - "x-ms-request-id" : "2c5005f1-444b-46cf-93b9-8d232388890b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "dcdcc807-56c6-4dbf-a26b-72e3e3d26836", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea04d867-6a86-4855-b5f0-dfbf8c44097a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9d96598-125f-4726-9517-ecf1ca75a654", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12188,Microsoft.Compute/GetVMImageFromLocation30Min;73188", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:d9d96598-125f-4726-9517-ecf1ca75a654", - "Expires" : "-1", - "x-ms-request-id" : "a250ac17-af81-4411-af56-8c6bfedbe9b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "ea04d867-6a86-4855-b5f0-dfbf8c44097a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d82df35-d9c5-4d97-96cd-b87cefeb7480", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02514e7e-8b17-44e7-a65f-7c903e365194", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12185,Microsoft.Compute/GetVMImageFromLocation30Min;73185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:02514e7e-8b17-44e7-a65f-7c903e365194", - "Expires" : "-1", - "x-ms-request-id" : "fdbfad8f-060f-4493-a95f-5c289741ddce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "2d82df35-d9c5-4d97-96cd-b87cefeb7480", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7f3a253-d35b-4dbb-abf7-c84f9a5fc7c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5b0a809-0317-4124-84d3-032bdb171958", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12186,Microsoft.Compute/GetVMImageFromLocation30Min;73186", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:e5b0a809-0317-4124-84d3-032bdb171958", - "Expires" : "-1", - "x-ms-request-id" : "ec5b14ae-5208-4f5e-9574-84a55e0da381", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "d7f3a253-d35b-4dbb-abf7-c84f9a5fc7c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97a16053-f4ae-4d20-bfba-02a7310f5212", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bc52b07-52ba-4eec-84bd-91784782f13e", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12187,Microsoft.Compute/GetVMImageFromLocation30Min;73187", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:6bc52b07-52ba-4eec-84bd-91784782f13e", - "Expires" : "-1", - "x-ms-request-id" : "b96cdcfe-94e0-4365-8335-3d33e4dad887", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "97a16053-f4ae-4d20-bfba-02a7310f5212", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0269678-6254-4a5c-b586-c2a94a91adbd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1870f730-a6bc-4f44-84e9-ad7a338ebb7d", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12194,Microsoft.Compute/GetVMImageFromLocation30Min;73194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:1870f730-a6bc-4f44-84e9-ad7a338ebb7d", - "Expires" : "-1", - "x-ms-request-id" : "d95ff98b-8cad-4a38-af09-aec052276288", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "b0269678-6254-4a5c-b586-c2a94a91adbd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d31a35b-6cfd-4f6b-88da-58addd468921", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3298ef6e-9453-44ae-9d38-317c4ebeb0bc", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12191,Microsoft.Compute/GetVMImageFromLocation30Min;73191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:3298ef6e-9453-44ae-9d38-317c4ebeb0bc", - "Expires" : "-1", - "x-ms-request-id" : "991b4203-0777-4401-a16a-3c57f190b8e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "1d31a35b-6cfd-4f6b-88da-58addd468921", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b469dc46-a75f-421d-90e8-599f8c508acc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f540d68a-a690-4092-9fcf-17915e9183ff", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12184,Microsoft.Compute/GetVMImageFromLocation30Min;73184", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:f540d68a-a690-4092-9fcf-17915e9183ff", - "Expires" : "-1", - "x-ms-request-id" : "04dc2248-58da-41d0-8ce7-963cf8a734fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "b469dc46-a75f-421d-90e8-599f8c508acc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53ecbdb5-8f04-422d-85ef-ec2804984234", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "383458f4-d7ed-401b-9ed5-ce8f82ef7df3", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12183,Microsoft.Compute/GetVMImageFromLocation30Min;73183", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:383458f4-d7ed-401b-9ed5-ce8f82ef7df3", - "Expires" : "-1", - "x-ms-request-id" : "d9c1d5be-1359-4bcf-b1ba-b4e45a23e6a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "53ecbdb5-8f04-422d-85ef-ec2804984234", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d36b199-a9bc-4c97-a216-78d42af7ab43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1060", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a86a7c0a-8e47-43cb-8d84-8f655e9597b0", - "Date" : "Tue, 24 May 2022 13:01:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12182,Microsoft.Compute/GetVMImageFromLocation30Min;73182", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:a86a7c0a-8e47-43cb-8d84-8f655e9597b0", - "Expires" : "-1", - "x-ms-request-id" : "cd85cf94-672f-4031-8a67-f87527307323", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "3d36b199-a9bc-4c97-a216-78d42af7ab43", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44ab85c9-e5b9-42f7-b53b-1f9d23d7e3e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6216", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "053ec3e0-7b01-4b60-bfaa-379d79440f98", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15921,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:053ec3e0-7b01-4b60-bfaa-379d79440f98", - "Expires" : "-1", - "x-ms-request-id" : "2db7c98e-2c1a-450e-a5be-002970b05343", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "44ab85c9-e5b9-42f7-b53b-1f9d23d7e3e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "531f1ad2-c159-490a-9ff5-84b44b1e33a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0bbbb6e-b018-4e47-bfd8-652fbaf686f2", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12181,Microsoft.Compute/GetVMImageFromLocation30Min;73181", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:c0bbbb6e-b018-4e47-bfd8-652fbaf686f2", - "Expires" : "-1", - "x-ms-request-id" : "8e5b44ec-f805-4f1e-8f4c-f95a809ac410", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "531f1ad2-c159-490a-9ff5-84b44b1e33a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08f7a9ed-92c7-4557-aa97-1e701bca4df8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23cbba4b-6296-4fc4-8e9b-cf0f8978ab83", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12180,Microsoft.Compute/GetVMImageFromLocation30Min;73180", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:23cbba4b-6296-4fc4-8e9b-cf0f8978ab83", - "Expires" : "-1", - "x-ms-request-id" : "dd14d4f1-7170-411d-8f5c-f365c4fa9b8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "08f7a9ed-92c7-4557-aa97-1e701bca4df8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b7db675-cc00-44bd-ace8-31e0e86281cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b80867f7-8587-42cb-85a6-13440e644cac", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12177,Microsoft.Compute/GetVMImageFromLocation30Min;73177", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:b80867f7-8587-42cb-85a6-13440e644cac", - "Expires" : "-1", - "x-ms-request-id" : "90dfb1a2-343d-442c-a458-5d00a7267c1c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "7b7db675-cc00-44bd-ace8-31e0e86281cb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fba98dde-a965-4294-8cc4-c775b7fb36e3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30cfa8f8-e14f-4a1d-8b63-f8a9cdfee817", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12178,Microsoft.Compute/GetVMImageFromLocation30Min;73178", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:30cfa8f8-e14f-4a1d-8b63-f8a9cdfee817", - "Expires" : "-1", - "x-ms-request-id" : "4b2ad9d9-52e1-4c04-a735-4a1ceed79e9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "fba98dde-a965-4294-8cc4-c775b7fb36e3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0650c36a-bd83-4beb-851a-a7bff120f3a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f292466-ebf1-41a4-ae24-a6fe5b941e89", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12176,Microsoft.Compute/GetVMImageFromLocation30Min;73176", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:9f292466-ebf1-41a4-ae24-a6fe5b941e89", - "Expires" : "-1", - "x-ms-request-id" : "ca52d9f5-91fe-4a3b-a826-02e01bbd46a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "0650c36a-bd83-4beb-851a-a7bff120f3a5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2de73c8a-bd14-47bf-b939-7550ebf85188", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8419b72-6a43-4544-afd9-66f1fe1ee180", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12173,Microsoft.Compute/GetVMImageFromLocation30Min;73173", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:d8419b72-6a43-4544-afd9-66f1fe1ee180", - "Expires" : "-1", - "x-ms-request-id" : "7804beb9-1c2c-4f7a-9791-f9b40c7e57be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "2de73c8a-bd14-47bf-b939-7550ebf85188", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51dc4070-7cc8-4c69-8792-1a4e11a3e9ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cdda2564-f7cf-47bd-8a14-713342829f94", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12171,Microsoft.Compute/GetVMImageFromLocation30Min;73171", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:cdda2564-f7cf-47bd-8a14-713342829f94", - "Expires" : "-1", - "x-ms-request-id" : "b5eb6b0c-2d3d-4804-b667-b70c89b7df99", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "51dc4070-7cc8-4c69-8792-1a4e11a3e9ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "306c9be6-27c8-4733-b661-122c464e703f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "987589e6-6173-48fa-9c0d-90501df1c647", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12174,Microsoft.Compute/GetVMImageFromLocation30Min;73174", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:987589e6-6173-48fa-9c0d-90501df1c647", - "Expires" : "-1", - "x-ms-request-id" : "842c8361-d94e-42ac-9e3c-091434048bb6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "306c9be6-27c8-4733-b661-122c464e703f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9071872-48d8-4319-9a15-b96481feec44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c8d08d7-3e47-4941-9284-8cda25f300a5", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12175,Microsoft.Compute/GetVMImageFromLocation30Min;73175", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:3c8d08d7-3e47-4941-9284-8cda25f300a5", - "Expires" : "-1", - "x-ms-request-id" : "b101d610-4d1d-48d1-b54f-06240f3c6094", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "c9071872-48d8-4319-9a15-b96481feec44", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c0fa15f-3227-4cb4-86ef-eed6cbc69590", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a96ff285-06b8-41fb-baf5-59ddcfc7c760", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12170,Microsoft.Compute/GetVMImageFromLocation30Min;73170", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:a96ff285-06b8-41fb-baf5-59ddcfc7c760", - "Expires" : "-1", - "x-ms-request-id" : "0930409e-7b63-41bf-8390-bc36f1ab89a5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "5c0fa15f-3227-4cb4-86ef-eed6cbc69590", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0082d73c-878a-4213-a67a-27944e302480", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3dbb9b1b-4ff3-4d71-af30-5455680fe38a", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12172,Microsoft.Compute/GetVMImageFromLocation30Min;73172", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:3dbb9b1b-4ff3-4d71-af30-5455680fe38a", - "Expires" : "-1", - "x-ms-request-id" : "c8db2921-bc03-4822-ab66-7f4916775411", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "0082d73c-878a-4213-a67a-27944e302480", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "910aff3e-bc82-4f27-97d1-6e1306af8b06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57a72a98-f1fa-4b16-84a2-407ceaa619b1", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12169,Microsoft.Compute/GetVMImageFromLocation30Min;73169", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:57a72a98-f1fa-4b16-84a2-407ceaa619b1", - "Expires" : "-1", - "x-ms-request-id" : "1bd55ac0-e0bd-486d-824d-6fddd19512a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "910aff3e-bc82-4f27-97d1-6e1306af8b06", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b3afd48-c69f-4593-ab22-f193713736c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2afc9be0-7808-4563-bb63-0f9049e81a07", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12167,Microsoft.Compute/GetVMImageFromLocation30Min;73167", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:2afc9be0-7808-4563-bb63-0f9049e81a07", - "Expires" : "-1", - "x-ms-request-id" : "70fe148f-eb38-411b-b90d-f402e2177b1d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "4b3afd48-c69f-4593-ab22-f193713736c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dce365e9-7ad0-4f0f-9670-1d6d8e41abca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea773883-8b2c-49f5-96ca-9185fcf762c8", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12166,Microsoft.Compute/GetVMImageFromLocation30Min;73166", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:ea773883-8b2c-49f5-96ca-9185fcf762c8", - "Expires" : "-1", - "x-ms-request-id" : "2e9c8cf6-111b-4d35-9378-ba7c70d6cc2a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "dce365e9-7ad0-4f0f-9670-1d6d8e41abca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35b2ed45-af6e-4e7e-9eb5-3ca75082c31d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "697bc219-a650-465d-a91c-ada5b28226a6", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12163,Microsoft.Compute/GetVMImageFromLocation30Min;73163", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:697bc219-a650-465d-a91c-ada5b28226a6", - "Expires" : "-1", - "x-ms-request-id" : "46c32484-da89-47df-a920-6bd057166a8a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "35b2ed45-af6e-4e7e-9eb5-3ca75082c31d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e516d2da-8fc1-488e-804f-3c3f829040ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2a485d3-11f4-493d-8285-17e718503ca2", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12164,Microsoft.Compute/GetVMImageFromLocation30Min;73164", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:f2a485d3-11f4-493d-8285-17e718503ca2", - "Expires" : "-1", - "x-ms-request-id" : "922e6b74-a9e0-4b6f-9da7-c5d9b5845bd6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "e516d2da-8fc1-488e-804f-3c3f829040ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4edfe5c-f400-401e-8344-189ab17df56c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9119149f-d78d-47c7-ad55-dae831e69512", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12168,Microsoft.Compute/GetVMImageFromLocation30Min;73168", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:9119149f-d78d-47c7-ad55-dae831e69512", - "Expires" : "-1", - "x-ms-request-id" : "70a157cd-54be-478c-b961-9d3ebbb41a86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "b4edfe5c-f400-401e-8344-189ab17df56c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0eb35170-f368-4dc5-a1d2-56e32ffd0c34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e77da40-e003-4513-abca-ecc75dd1d534", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12179,Microsoft.Compute/GetVMImageFromLocation30Min;73179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130112Z:3e77da40-e003-4513-abca-ecc75dd1d534", - "Expires" : "-1", - "x-ms-request-id" : "57368ea9-ac8c-4201-8c44-e3dd6f578e4d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "0eb35170-f368-4dc5-a1d2-56e32ffd0c34", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-ub01/skus/pro-20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a28dfff-d610-40f8-9a9a-8d2f5495d62d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44efc813-13b7-4446-8f20-1f2ee8c97ce5", - "Date" : "Tue, 24 May 2022 13:01:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12165,Microsoft.Compute/GetVMImageFromLocation30Min;73165", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:44efc813-13b7-4446-8f20-1f2ee8c97ce5", - "Expires" : "-1", - "x-ms-request-id" : "09ef7a15-3a7f-43b1-8ee7-f1ea97afaae2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-ub01\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-ub01/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "9a28dfff-d610-40f8-9a9a-8d2f5495d62d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7452ab60-ab3f-40c7-a7d7-b3a54cb4207e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1703", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6925f291-7ad8-40e5-9c4f-7d2013669a57", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9979,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:6925f291-7ad8-40e5-9c4f-7d2013669a57", - "Expires" : "-1", - "x-ms-request-id" : "a4289324-dc8b-496b-a126-3cc9d3bda02e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-fips-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-fips-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "7452ab60-ab3f-40c7-a7d7-b3a54cb4207e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "adbd7716-9045-4003-a850-0dfe34e7381a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4176", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6141e768-5bb3-4a12-9604-e74165327b44", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15920,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:6141e768-5bb3-4a12-9604-e74165327b44", - "Expires" : "-1", - "x-ms-request-id" : "a504290c-2d9f-49b8-8a05-e602857a0603", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202202150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "adbd7716-9045-4003-a850-0dfe34e7381a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a69b2b4-09e5-478e-a900-8d88fc571e00", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e05b9684-66fa-4fbf-8217-e283aedbaddf", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12160,Microsoft.Compute/GetVMImageFromLocation30Min;73160", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:e05b9684-66fa-4fbf-8217-e283aedbaddf", - "Expires" : "-1", - "x-ms-request-id" : "db49c903-686d-4156-9493-7b50d9eb613c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "9a69b2b4-09e5-478e-a900-8d88fc571e00", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "929ea437-9bcf-4184-96da-1f67ba5b8234", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b641af24-fc93-4277-84e2-eb4468dfd1c9", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12162,Microsoft.Compute/GetVMImageFromLocation30Min;73162", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:b641af24-fc93-4277-84e2-eb4468dfd1c9", - "Expires" : "-1", - "x-ms-request-id" : "2a4ce9f3-81ed-467e-a230-ed45e459a175", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "929ea437-9bcf-4184-96da-1f67ba5b8234", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc396491-1a4b-406c-a794-d6b4bfb303c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f597186-be75-42d0-95bb-e1997108c193", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12157,Microsoft.Compute/GetVMImageFromLocation30Min;73157", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:5f597186-be75-42d0-95bb-e1997108c193", - "Expires" : "-1", - "x-ms-request-id" : "92c0c54e-9115-4f4b-8ba6-4497c19df3c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "fc396491-1a4b-406c-a794-d6b4bfb303c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d70bc067-b6f4-496c-a581-ea9ec7ea16a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3be1f93b-2b1f-464b-a1c9-1a4e1378fb38", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12155,Microsoft.Compute/GetVMImageFromLocation30Min;73155", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:3be1f93b-2b1f-464b-a1c9-1a4e1378fb38", - "Expires" : "-1", - "x-ms-request-id" : "9813ae6d-a88f-4943-9ea8-8a3c8e72c9e1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "d70bc067-b6f4-496c-a581-ea9ec7ea16a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e134736-dcf6-4f5a-991c-1a23299e99bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3515a01-8327-483e-8c62-9c41a5c2b45f", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12154,Microsoft.Compute/GetVMImageFromLocation30Min;73154", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:e3515a01-8327-483e-8c62-9c41a5c2b45f", - "Expires" : "-1", - "x-ms-request-id" : "88991970-875d-4144-a418-be69bc462202", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "0e134736-dcf6-4f5a-991c-1a23299e99bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202202150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6d2c9b8-509d-4531-ba12-5b4dbad52b07", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7e4a852-0c67-45f2-9c7c-c591084bc82a", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12153,Microsoft.Compute/GetVMImageFromLocation30Min;73153", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:c7e4a852-0c67-45f2-9c7c-c591084bc82a", - "Expires" : "-1", - "x-ms-request-id" : "02f29964-68bd-4e01-8d61-84aa52b8ed8f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202202150\"\r\n}", - "x-ms-client-request-id" : "a6d2c9b8-509d-4531-ba12-5b4dbad52b07", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31a3dec4-2d8b-49b2-852d-d212e554330e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8980ccbb-e031-46e5-9d29-06e88fba15c4", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12152,Microsoft.Compute/GetVMImageFromLocation30Min;73152", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:8980ccbb-e031-46e5-9d29-06e88fba15c4", - "Expires" : "-1", - "x-ms-request-id" : "cdca6bc3-4e42-4767-a920-b472c0a4fe2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "31a3dec4-2d8b-49b2-852d-d212e554330e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "560c22d0-ed8e-4c18-8379-53e5dec44b4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "865ccdad-d0cc-4b8a-9f9d-cb99a2c0548f", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12156,Microsoft.Compute/GetVMImageFromLocation30Min;73156", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:865ccdad-d0cc-4b8a-9f9d-cb99a2c0548f", - "Expires" : "-1", - "x-ms-request-id" : "685affac-7c35-4b3c-9cd9-2d0cb5411d66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "560c22d0-ed8e-4c18-8379-53e5dec44b4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a64a66f2-5856-4648-866a-cad46d1401e3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87e93e2d-e2e2-46d0-8885-e2be3105eee1", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12159,Microsoft.Compute/GetVMImageFromLocation30Min;73159", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:87e93e2d-e2e2-46d0-8885-e2be3105eee1", - "Expires" : "-1", - "x-ms-request-id" : "edd9959e-48fc-4674-889c-44ca62af96a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "a64a66f2-5856-4648-866a-cad46d1401e3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b53eb3f9-edf0-4322-abc0-0946f679dd42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac9f57fd-37be-42fd-9390-81db56985ce3", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12161,Microsoft.Compute/GetVMImageFromLocation30Min;73161", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:ac9f57fd-37be-42fd-9390-81db56985ce3", - "Expires" : "-1", - "x-ms-request-id" : "8ad0b12d-f7ff-468c-83ac-b4c4f6445a0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "b53eb3f9-edf0-4322-abc0-0946f679dd42", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9040b580-6a3c-40c0-9e25-749790ef4a1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "11d590ec-97a0-46de-b652-cf72220a4afb", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12158,Microsoft.Compute/GetVMImageFromLocation30Min;73158", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:11d590ec-97a0-46de-b652-cf72220a4afb", - "Expires" : "-1", - "x-ms-request-id" : "37b32423-f9ca-4c24-bb26-5b80cabb1673", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "9040b580-6a3c-40c0-9e25-749790ef4a1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f60a6f8-edef-40d0-a432-123e36e70419", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "608180c0-ffcf-4b10-bd9e-97681adb7c7d", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12151,Microsoft.Compute/GetVMImageFromLocation30Min;73151", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:608180c0-ffcf-4b10-bd9e-97681adb7c7d", - "Expires" : "-1", - "x-ms-request-id" : "45198e60-074c-4ee2-a648-c55c5df1334c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "3f60a6f8-edef-40d0-a432-123e36e70419", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cc4fbac-66b3-49f7-bf7f-3b5c60393f76", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1058", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a0fa2e5-6b30-495e-861f-4e5558599581", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12150,Microsoft.Compute/GetVMImageFromLocation30Min;73150", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130113Z:0a0fa2e5-6b30-495e-861f-4e5558599581", - "Expires" : "-1", - "x-ms-request-id" : "c8fc05c7-ed2f-480a-b358-a7981d56100b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "4cc4fbac-66b3-49f7-bf7f-3b5c60393f76", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7736d32a-fd9e-4375-a5c8-59d86dc81552", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4241", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63d60413-c76c-4e30-b89c-ca3bcac102e2", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15919,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:63d60413-c76c-4e30-b89c-ca3bcac102e2", - "Expires" : "-1", - "x-ms-request-id" : "a4e8e0be-eb5b-41d4-a28c-ea216eb8cf49", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202202150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "7736d32a-fd9e-4375-a5c8-59d86dc81552", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "21d57130-c6f2-45d4-8997-1e3291ab9de4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9dfe579-3cb7-458c-bebf-210f83aced31", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12149,Microsoft.Compute/GetVMImageFromLocation30Min;73149", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:d9dfe579-3cb7-458c-bebf-210f83aced31", - "Expires" : "-1", - "x-ms-request-id" : "f74efaab-f220-480a-8a25-c45f3558d6b2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "21d57130-c6f2-45d4-8997-1e3291ab9de4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "668c8f11-e563-4da2-9ec6-e71a4018e0e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36bf8f5c-0a21-4507-84bb-7b7f348fcd91", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12147,Microsoft.Compute/GetVMImageFromLocation30Min;73147", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:36bf8f5c-0a21-4507-84bb-7b7f348fcd91", - "Expires" : "-1", - "x-ms-request-id" : "aa487380-8d1c-4d32-9b7d-f2d52ad86701", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "668c8f11-e563-4da2-9ec6-e71a4018e0e5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8e95d58-0d8a-4bee-89fe-01fda5de12e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c9570fb-1b56-44cb-bfdf-745c10286de3", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12145,Microsoft.Compute/GetVMImageFromLocation30Min;73145", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:3c9570fb-1b56-44cb-bfdf-745c10286de3", - "Expires" : "-1", - "x-ms-request-id" : "af54019a-ba27-455b-bc9b-5d903c88fe99", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "f8e95d58-0d8a-4bee-89fe-01fda5de12e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42452fb5-693d-40b8-b403-c4bffdf8b4de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "416cdd0a-7ca0-42ec-a695-e9068d9ff2cb", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12148,Microsoft.Compute/GetVMImageFromLocation30Min;73148", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:416cdd0a-7ca0-42ec-a695-e9068d9ff2cb", - "Expires" : "-1", - "x-ms-request-id" : "52907a46-d92a-4f4e-b456-07e3d86ffa8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "42452fb5-693d-40b8-b403-c4bffdf8b4de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eebcf80f-1457-471c-93fe-80d1815935b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2bc1d67-ef27-45c4-ad26-c61ab6a7613e", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12146,Microsoft.Compute/GetVMImageFromLocation30Min;73146", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:b2bc1d67-ef27-45c4-ad26-c61ab6a7613e", - "Expires" : "-1", - "x-ms-request-id" : "efb069b7-e438-42c2-8033-4b3a56460aa5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "eebcf80f-1457-471c-93fe-80d1815935b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1222302e-d8e1-4ca5-985c-ef97357430c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7d918612-3c19-4cf0-96b0-769b3c3745b5", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12144,Microsoft.Compute/GetVMImageFromLocation30Min;73144", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:7d918612-3c19-4cf0-96b0-769b3c3745b5", - "Expires" : "-1", - "x-ms-request-id" : "6776a2ea-a856-4663-9dd7-cd185613ceb2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "1222302e-d8e1-4ca5-985c-ef97357430c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0dda65f4-d70e-4526-814f-c855df482cf6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1979b1c4-71e2-4049-819a-35a601f1d9e1", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12143,Microsoft.Compute/GetVMImageFromLocation30Min;73143", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:1979b1c4-71e2-4049-819a-35a601f1d9e1", - "Expires" : "-1", - "x-ms-request-id" : "640ce89b-3de1-4729-89d6-8f50e30a7980", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "0dda65f4-d70e-4526-814f-c855df482cf6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1536b3fa-feeb-418e-bd5b-da5f1a7f27ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf11aba3-8d37-45d6-a93f-e4bba35d5091", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12142,Microsoft.Compute/GetVMImageFromLocation30Min;73142", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:bf11aba3-8d37-45d6-a93f-e4bba35d5091", - "Expires" : "-1", - "x-ms-request-id" : "855c6310-61fd-49be-aac7-eade493d4235", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "1536b3fa-feeb-418e-bd5b-da5f1a7f27ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c263b546-6431-4dc5-884e-c7543ecf10ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ceb4f67c-ea5c-470d-9899-7cce65f5e499", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12141,Microsoft.Compute/GetVMImageFromLocation30Min;73141", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:ceb4f67c-ea5c-470d-9899-7cce65f5e499", - "Expires" : "-1", - "x-ms-request-id" : "4acd2660-0b6a-4ccd-8768-1362d6c5c6b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "c263b546-6431-4dc5-884e-c7543ecf10ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2aaf6ae3-a620-42e5-bcb8-442a96d73975", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73773b4d-5f39-448d-a2c8-8a5657151c6a", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12140,Microsoft.Compute/GetVMImageFromLocation30Min;73140", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:73773b4d-5f39-448d-a2c8-8a5657151c6a", - "Expires" : "-1", - "x-ms-request-id" : "0bca4094-0039-4d19-8fea-86492e576a09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "2aaf6ae3-a620-42e5-bcb8-442a96d73975", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce478909-ddae-4e62-b693-67da144fea74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66df670f-909d-4ed3-b14e-a47e1f531927", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12139,Microsoft.Compute/GetVMImageFromLocation30Min;73139", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:66df670f-909d-4ed3-b14e-a47e1f531927", - "Expires" : "-1", - "x-ms-request-id" : "a8bb22ff-6503-4e47-9a1d-8bf684cc056d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "ce478909-ddae-4e62-b693-67da144fea74", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acb4ec98-b8a3-43f5-9f06-5ba9f3cc0fcb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8d192fd-11d3-49c6-9915-816bbc85cd27", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12138,Microsoft.Compute/GetVMImageFromLocation30Min;73138", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:a8d192fd-11d3-49c6-9915-816bbc85cd27", - "Expires" : "-1", - "x-ms-request-id" : "0b153e50-9dcb-47cd-84cd-6737ac94c334", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "acb4ec98-b8a3-43f5-9f06-5ba9f3cc0fcb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-20_04-gen2/versions/20.04.202202150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cbe4afd-222c-4a60-a7cf-a617a4ab3356", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bc1aa24-a6ba-42b7-ba58-fc42dba98171", - "Date" : "Tue, 24 May 2022 13:01:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12137,Microsoft.Compute/GetVMImageFromLocation30Min;73137", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:3bc1aa24-a6ba-42b7-ba58-fc42dba98171", - "Expires" : "-1", - "x-ms-request-id" : "dd6c1241-23c0-40bf-851d-43e1f6908c06", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-20_04-gen2/Versions/20.04.202202150\"\r\n}", - "x-ms-client-request-id" : "3cbe4afd-222c-4a60-a7cf-a617a4ab3356", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-fips-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5fd93c5-f508-4101-a45b-5b127db317e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "329", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ab931e5-29ab-4827-b8fe-cb76a0d810d5", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15918,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130114Z:5ab931e5-29ab-4827-b8fe-cb76a0d810d5", - "Expires" : "-1", - "x-ms-request-id" : "323397ef-cfb0-4268-b31a-b2435000504b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-fips-20_04/Versions/20.04.202202151\"\r\n }\r\n]", - "x-ms-client-request-id" : "d5fd93c5-f508-4101-a45b-5b127db317e4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-fips-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "02e7cff8-6426-4021-a275-43e72fb5799e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be46f6e5-2fa6-4afe-b2ba-3b47cd46d616", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12136,Microsoft.Compute/GetVMImageFromLocation30Min;73136", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130115Z:be46f6e5-2fa6-4afe-b2ba-3b47cd46d616", - "Expires" : "-1", - "x-ms-request-id" : "bd117537-364b-4464-9265-b50ebc7e2eb0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-fips-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "02e7cff8-6426-4021-a275-43e72fb5799e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-fips-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4e856e1-ef00-443d-94b7-78774fa80518", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "334", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6fa8e01-cedd-42f2-adc9-073a0c90bf9d", - "Date" : "Tue, 24 May 2022 13:01:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15917,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130115Z:f6fa8e01-cedd-42f2-adc9-073a0c90bf9d", - "Expires" : "-1", - "x-ms-request-id" : "ee70d71a-7a79-4902-9a0d-6184e1be2bfa", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-fips-20_04-gen2/Versions/20.04.202202151\"\r\n }\r\n]", - "x-ms-client-request-id" : "d4e856e1-ef00-443d-94b7-78774fa80518", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-advanced-sla-unp/skus/pro-fips-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a546e0d-1b6f-4c66-a0e5-4ca91c8fb2b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1065", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fc1777f-a65c-4523-ba80-f48332ae3a47", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12135,Microsoft.Compute/GetVMImageFromLocation30Min;73135", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130115Z:0fc1777f-a65c-4523-ba80-f48332ae3a47", - "Expires" : "-1", - "x-ms-request-id" : "daf36fa8-ce92-4fad-aff2-df4f2fb6c086", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-advanced-sla-unp\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-advanced-sla-unp/Skus/pro-fips-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "6a546e0d-1b6f-4c66-a0e5-4ca91c8fb2b6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "07c610bb-099c-4aba-b709-7a5c6a9da228", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "839", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09bfb1a4-00ae-4852-af11-1bd6bf1f74e3", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9978,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:09bfb1a4-00ae-4852-af11-1bd6bf1f74e3", - "Expires" : "-1", - "x-ms-request-id" : "bca6600f-d9c7-40b7-b82d-956c4c7738d5", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "07c610bb-099c-4aba-b709-7a5c6a9da228", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13b8762f-59ad-4a15-a021-0f32aaef3d3b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "12278", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2bed1444-b7f1-48f5-80dd-761de89479a3", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15916,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:2bed1444-b7f1-48f5-80dd-761de89479a3", - "Expires" : "-1", - "x-ms-request-id" : "cb22aef3-feaf-4296-85e4-9c169ab38851", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200318\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200605\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202105010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202204240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202205140\"\r\n }\r\n]", - "x-ms-client-request-id" : "13b8762f-59ad-4a15-a021-0f32aaef3d3b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95a49348-f976-4dc7-b990-16738631236d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5781f455-f681-422b-a1a8-e88efb81fdf4", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12131,Microsoft.Compute/GetVMImageFromLocation30Min;73131", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:5781f455-f681-422b-a1a8-e88efb81fdf4", - "Expires" : "-1", - "x-ms-request-id" : "73848226-e173-4806-a022-c998b7cfd896", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20201014\"\r\n}", - "x-ms-client-request-id" : "95a49348-f976-4dc7-b990-16738631236d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.20200908?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f12006b0-19f4-4394-af37-f19221836787", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1643fea-0bf8-4740-841b-d7b21a23380e", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12134,Microsoft.Compute/GetVMImageFromLocation30Min;73134", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:f1643fea-0bf8-4740-841b-d7b21a23380e", - "Expires" : "-1", - "x-ms-request-id" : "b25b521d-a645-40c4-bbc1-4b8b26cf8e60", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200908\"\r\n}", - "x-ms-client-request-id" : "f12006b0-19f4-4394-af37-f19221836787", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.20200605?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93d93f9a-b848-49ed-aecb-ed302939cf4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98a777e4-ddca-452c-b2e9-68a0970e3133", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12132,Microsoft.Compute/GetVMImageFromLocation30Min;73132", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:98a777e4-ddca-452c-b2e9-68a0970e3133", - "Expires" : "-1", - "x-ms-request-id" : "cd38cf5a-4b4d-4c19-b455-60572d206c14", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200605\"\r\n}", - "x-ms-client-request-id" : "93d93f9a-b848-49ed-aecb-ed302939cf4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202103230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42c9ded7-b236-4cfe-a1c1-98a787f4246e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6547c2a-cda8-42cf-899e-a8c187e64c1f", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12129,Microsoft.Compute/GetVMImageFromLocation30Min;73129", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:c6547c2a-cda8-42cf-899e-a8c187e64c1f", - "Expires" : "-1", - "x-ms-request-id" : "ab93e082-6248-413d-aca6-98126636e316", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103230\"\r\n}", - "x-ms-client-request-id" : "42c9ded7-b236-4cfe-a1c1-98a787f4246e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b5306de-99a0-4bfb-a2c5-039dd08131e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e71b031-298e-40e9-a795-336e2a64d643", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12130,Microsoft.Compute/GetVMImageFromLocation30Min;73130", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:4e71b031-298e-40e9-a795-336e2a64d643", - "Expires" : "-1", - "x-ms-request-id" : "091f5636-5bd3-42b0-80a7-a85e1c7c94db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "7b5306de-99a0-4bfb-a2c5-039dd08131e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e38f9a2-cfe2-4f52-9f98-182f430d7dd4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4e1a855-3e6d-497d-a693-9ac7e793960e", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12127,Microsoft.Compute/GetVMImageFromLocation30Min;73127", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:a4e1a855-3e6d-497d-a693-9ac7e793960e", - "Expires" : "-1", - "x-ms-request-id" : "14d92061-7492-44dc-9f61-39a68f0ef3e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "7e38f9a2-cfe2-4f52-9f98-182f430d7dd4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202105010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fc7b5b6-2652-4777-905c-b229f3b3b3ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "695974bc-38f6-41a5-b8e0-e7f3008b82e7", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12128,Microsoft.Compute/GetVMImageFromLocation30Min;73128", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:695974bc-38f6-41a5-b8e0-e7f3008b82e7", - "Expires" : "-1", - "x-ms-request-id" : "4eb52bd5-902f-49a7-9b3e-fb9b61ab5677", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202105010\"\r\n}", - "x-ms-client-request-id" : "6fc7b5b6-2652-4777-905c-b229f3b3b3ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ddf08a3-362e-4213-b985-343570f0270f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a688577-510c-44cd-bbe6-27d08f8a92d3", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12108,Microsoft.Compute/GetVMImageFromLocation30Min;73108", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:8a688577-510c-44cd-bbe6-27d08f8a92d3", - "Expires" : "-1", - "x-ms-request-id" : "f0a1a9a8-ec5a-44ae-831b-859190b7904e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "9ddf08a3-362e-4213-b985-343570f0270f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ce816b6-a148-4114-8f72-959280f6c755", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4cbdd378-1bcb-4f51-beaf-7875c2d7a2e1", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12112,Microsoft.Compute/GetVMImageFromLocation30Min;73112", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:4cbdd378-1bcb-4f51-beaf-7875c2d7a2e1", - "Expires" : "-1", - "x-ms-request-id" : "637cc994-693b-416d-ad4a-1b9a7d11e85d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "3ce816b6-a148-4114-8f72-959280f6c755", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c81a4821-3eed-46b0-8dca-9e57ba183b82", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e54f1291-9fc1-4ad4-8d04-84755fc667a0", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12114,Microsoft.Compute/GetVMImageFromLocation30Min;73114", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:e54f1291-9fc1-4ad4-8d04-84755fc667a0", - "Expires" : "-1", - "x-ms-request-id" : "cc635d78-1bb2-4813-a6b6-251bfda61479", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "c81a4821-3eed-46b0-8dca-9e57ba183b82", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8be189d1-1041-440c-ab0a-03c7c28545bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84c575e1-6567-4737-aeab-4df4e81e5ed7", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12111,Microsoft.Compute/GetVMImageFromLocation30Min;73111", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:84c575e1-6567-4737-aeab-4df4e81e5ed7", - "Expires" : "-1", - "x-ms-request-id" : "f5a93e93-43bb-41e3-be3b-3d354425f0e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "8be189d1-1041-440c-ab0a-03c7c28545bc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.20200729?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8df5eda5-b008-4d36-89e5-73bd4737ea0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ac98eaa-fca0-488c-b89e-18018e6e36d7", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12115,Microsoft.Compute/GetVMImageFromLocation30Min;73115", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:1ac98eaa-fca0-488c-b89e-18018e6e36d7", - "Expires" : "-1", - "x-ms-request-id" : "d773b7d3-8ce8-4b89-981f-11992a592df2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200729\"\r\n}", - "x-ms-client-request-id" : "8df5eda5-b008-4d36-89e5-73bd4737ea0a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7623652-cfa0-4430-872c-a3ebb3cf6a08", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92ec5869-71f8-43fc-96ec-8d198a22d7bb", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12117,Microsoft.Compute/GetVMImageFromLocation30Min;73117", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:92ec5869-71f8-43fc-96ec-8d198a22d7bb", - "Expires" : "-1", - "x-ms-request-id" : "d7050417-08e5-4a3a-b1e0-606807d164dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "d7623652-cfa0-4430-872c-a3ebb3cf6a08", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0875a58a-70cf-4630-b08f-c866ff964a88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40d6172d-3675-467f-b8eb-b0f2f7719c99", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12109,Microsoft.Compute/GetVMImageFromLocation30Min;73109", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:40d6172d-3675-467f-b8eb-b0f2f7719c99", - "Expires" : "-1", - "x-ms-request-id" : "7d021a39-5346-48ee-b129-bd4e3193f5c4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "0875a58a-70cf-4630-b08f-c866ff964a88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94480338-47b9-410a-87cc-bccda0787d4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb77dd0d-a6ae-4f27-94c9-080a9b16a164", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12126,Microsoft.Compute/GetVMImageFromLocation30Min;73126", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:bb77dd0d-a6ae-4f27-94c9-080a9b16a164", - "Expires" : "-1", - "x-ms-request-id" : "8d19bcab-07b5-46bf-a220-d889d22bac9c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "94480338-47b9-410a-87cc-bccda0787d4a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1decf73d-0c77-401b-b342-ce9ec434d068", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27d5192a-8bd3-46c7-8b59-e63fe09cd885", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12118,Microsoft.Compute/GetVMImageFromLocation30Min;73118", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:27d5192a-8bd3-46c7-8b59-e63fe09cd885", - "Expires" : "-1", - "x-ms-request-id" : "3351afbc-6adc-43f2-a1ca-66add7d96959", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "1decf73d-0c77-401b-b342-ce9ec434d068", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "be6a2994-001c-4e99-bd37-676ef911c188", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eea52a7f-885f-41b8-a96e-62f48ccbd2b6", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12119,Microsoft.Compute/GetVMImageFromLocation30Min;73119", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:eea52a7f-885f-41b8-a96e-62f48ccbd2b6", - "Expires" : "-1", - "x-ms-request-id" : "d5ed8c1c-53bc-4554-b53e-5f19bd628835", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "be6a2994-001c-4e99-bd37-676ef911c188", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.20200318?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8f6caca-c642-47ec-badd-071b0b77fce4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0cf81be0-0ade-404d-b968-0818d74718f8", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12113,Microsoft.Compute/GetVMImageFromLocation30Min;73113", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:0cf81be0-0ade-404d-b968-0818d74718f8", - "Expires" : "-1", - "x-ms-request-id" : "724b2488-4704-4341-952d-ea55fc3605a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.20200318\"\r\n}", - "x-ms-client-request-id" : "a8f6caca-c642-47ec-badd-071b0b77fce4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "034e33ba-5753-4314-9dbe-fab7a196b6fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "935b509a-45ca-4359-99f7-c944eb065bec", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12125,Microsoft.Compute/GetVMImageFromLocation30Min;73125", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:935b509a-45ca-4359-99f7-c944eb065bec", - "Expires" : "-1", - "x-ms-request-id" : "331947dc-0794-4333-8edb-7b8d4f526265", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "034e33ba-5753-4314-9dbe-fab7a196b6fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ff08136-ec2a-4c66-b87e-1b0368be8e8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84f38ffe-06b1-4019-9bbc-dcf8ab05399d", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12120,Microsoft.Compute/GetVMImageFromLocation30Min;73120", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:84f38ffe-06b1-4019-9bbc-dcf8ab05399d", - "Expires" : "-1", - "x-ms-request-id" : "835f4be2-e015-4b04-b541-4bba6ef431b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "9ff08136-ec2a-4c66-b87e-1b0368be8e8a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2210a87a-b405-4afb-897a-d700bc65cd7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "46b50db0-13c6-47e4-9cb7-41aa5f9dedb2", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12124,Microsoft.Compute/GetVMImageFromLocation30Min;73124", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:46b50db0-13c6-47e4-9cb7-41aa5f9dedb2", - "Expires" : "-1", - "x-ms-request-id" : "5e51ebc4-c737-49f2-8a96-fa17bb5a14aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103100\"\r\n}", - "x-ms-client-request-id" : "2210a87a-b405-4afb-897a-d700bc65cd7a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38ce1fa1-deca-4f9d-80d4-fda5c65930a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "396adbf4-3566-4d50-ae62-0a38149cf3a3", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12133,Microsoft.Compute/GetVMImageFromLocation30Min;73133", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:396adbf4-3566-4d50-ae62-0a38149cf3a3", - "Expires" : "-1", - "x-ms-request-id" : "41e03c00-e2fe-45e3-8b0a-3fb5c617799b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "38ce1fa1-deca-4f9d-80d4-fda5c65930a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ff197c1-44b3-4612-8b15-a4fcf5f9b41b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "466e9b67-6b4b-4803-a8a7-afe1084969ce", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12123,Microsoft.Compute/GetVMImageFromLocation30Min;73123", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:466e9b67-6b4b-4803-a8a7-afe1084969ce", - "Expires" : "-1", - "x-ms-request-id" : "26163c15-3942-49eb-b45a-7a5c9b666f62", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "7ff197c1-44b3-4612-8b15-a4fcf5f9b41b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "882622e9-5d90-4a74-b7ba-70c51c23da04", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "228cf7dd-9903-45bc-a0d5-0e83c768b66a", - "Date" : "Tue, 24 May 2022 13:01:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12116,Microsoft.Compute/GetVMImageFromLocation30Min;73116", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:228cf7dd-9903-45bc-a0d5-0e83c768b66a", - "Expires" : "-1", - "x-ms-request-id" : "ab716c45-47ed-4dd2-9375-f512f2656c22", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "882622e9-5d90-4a74-b7ba-70c51c23da04", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa1dbb07-c007-480d-a6bb-019fb83c36a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "282ba4c6-aa5f-4974-b40a-65c10f821ed3", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12110,Microsoft.Compute/GetVMImageFromLocation30Min;73110", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:282ba4c6-aa5f-4974-b40a-65c10f821ed3", - "Expires" : "-1", - "x-ms-request-id" : "dcf5b7b2-8f11-434a-b7d3-232cc2f6bb54", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "fa1dbb07-c007-480d-a6bb-019fb83c36a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7de1c889-356a-45c0-8a16-aaececb08484", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cccfc0e6-fc66-4e42-9a02-84328b554948", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12107,Microsoft.Compute/GetVMImageFromLocation30Min;73107", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:cccfc0e6-fc66-4e42-9a02-84328b554948", - "Expires" : "-1", - "x-ms-request-id" : "f20d3dc0-d902-4f0b-8ef5-9220843d7183", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "7de1c889-356a-45c0-8a16-aaececb08484", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "79dc5f1e-081a-42a1-befd-d6e84f3a8912", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7db997a9-6314-4931-b67f-03482b183cd4", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12121,Microsoft.Compute/GetVMImageFromLocation30Min;73121", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:7db997a9-6314-4931-b67f-03482b183cd4", - "Expires" : "-1", - "x-ms-request-id" : "7ab7a246-c746-4808-93d9-44d1ca9e9c3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "79dc5f1e-081a-42a1-befd-d6e84f3a8912", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fe82fae-fa81-45fb-9b74-86fe427b735d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71277723-aba2-403d-844a-010853ec781a", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12122,Microsoft.Compute/GetVMImageFromLocation30Min;73122", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:71277723-aba2-403d-844a-010853ec781a", - "Expires" : "-1", - "x-ms-request-id" : "96b511f2-7ffc-47e5-b017-eec32a36fb91", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "3fe82fae-fa81-45fb-9b74-86fe427b735d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9997c354-6577-4793-b12a-b07847c8720e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7a64855-fa41-444e-8769-7093dc520fc4", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12105,Microsoft.Compute/GetVMImageFromLocation30Min;73105", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:b7a64855-fa41-444e-8769-7093dc520fc4", - "Expires" : "-1", - "x-ms-request-id" : "b72c0d09-6d31-403d-96b1-810ca0aca565", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "9997c354-6577-4793-b12a-b07847c8720e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a20610b-5fe8-4d60-8ede-2053a50b94e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ee7c1bb-b850-4a0e-b944-921fe2daf13e", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12106,Microsoft.Compute/GetVMImageFromLocation30Min;73106", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:2ee7c1bb-b850-4a0e-b944-921fe2daf13e", - "Expires" : "-1", - "x-ms-request-id" : "16967ca8-a349-463c-91a1-267437f57e0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202101120\"\r\n}", - "x-ms-client-request-id" : "2a20610b-5fe8-4d60-8ede-2053a50b94e4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ef73082-f971-4c46-8ac6-eebb38e89a23", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "418beff7-5fa9-436e-b4c8-aa68d60470e5", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12103,Microsoft.Compute/GetVMImageFromLocation30Min;73103", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:418beff7-5fa9-436e-b4c8-aa68d60470e5", - "Expires" : "-1", - "x-ms-request-id" : "01f585a8-9835-4b9c-9d3d-e4b3d10705a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "7ef73082-f971-4c46-8ac6-eebb38e89a23", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea3e70cf-aec0-49c6-b7d4-a9ff4eb4a07f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71e170cf-43ce-4f0f-bc7e-d8ca4630717d", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12104,Microsoft.Compute/GetVMImageFromLocation30Min;73104", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130116Z:71e170cf-43ce-4f0f-bc7e-d8ca4630717d", - "Expires" : "-1", - "x-ms-request-id" : "44518b21-73a1-49b6-a8df-e2514d76384a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "ea3e70cf-aec0-49c6-b7d4-a9ff4eb4a07f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c23a7b0-e28d-44bb-81d8-ebef19f5e7b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f0c5e0b-4df0-466d-a3f1-e9574333ec97", - "Date" : "Tue, 24 May 2022 13:01:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12102,Microsoft.Compute/GetVMImageFromLocation30Min;73102", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130117Z:4f0c5e0b-4df0-466d-a3f1-e9574333ec97", - "Expires" : "-1", - "x-ms-request-id" : "19c20c33-ae96-4129-b07b-59ee836f7ee3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "6c23a7b0-e28d-44bb-81d8-ebef19f5e7b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202204240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20a7db5d-7cf8-47e2-9b77-65e69781ed2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41aab973-f164-4762-9c0d-9bacd60e4dde", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12101,Microsoft.Compute/GetVMImageFromLocation30Min;73101", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130117Z:41aab973-f164-4762-9c0d-9bacd60e4dde", - "Expires" : "-1", - "x-ms-request-id" : "28907ced-984b-4b90-987f-7717450e95d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202204240\"\r\n}", - "x-ms-client-request-id" : "20a7db5d-7cf8-47e2-9b77-65e69781ed2f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3e2061b-73bd-4616-8423-bcc07adf1a3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f640bd8b-894c-4a8f-b2d7-fedb615e6e66", - "Date" : "Tue, 24 May 2022 13:01:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12100,Microsoft.Compute/GetVMImageFromLocation30Min;73100", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130117Z:f640bd8b-894c-4a8f-b2d7-fedb615e6e66", - "Expires" : "-1", - "x-ms-request-id" : "1abc309a-1e03-465a-b9ee-1e0bdc2478f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "e3e2061b-73bd-4616-8423-bcc07adf1a3e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "488d4767-fdc2-4fc4-847b-48ab3ccd218c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7908ab2b-bfd7-4581-98a1-7544012c315d", - "Date" : "Tue, 24 May 2022 13:01:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12099,Microsoft.Compute/GetVMImageFromLocation30Min;73099", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130117Z:7908ab2b-bfd7-4581-98a1-7544012c315d", - "Expires" : "-1", - "x-ms-request-id" : "531304db-ba3f-4b8e-9881-3b9e23f8c874", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "488d4767-fdc2-4fc4-847b-48ab3ccd218c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e0fcf12-e616-404a-97b8-556157101b77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e979d4f-ef8e-4db1-896e-fae01554a20f", - "Date" : "Tue, 24 May 2022 13:01:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12098,Microsoft.Compute/GetVMImageFromLocation30Min;73098", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130117Z:6e979d4f-ef8e-4db1-896e-fae01554a20f", - "Expires" : "-1", - "x-ms-request-id" : "53b3ef50-5f03-43a4-92a8-de238242fece", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "0e0fcf12-e616-404a-97b8-556157101b77", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ddd6dccc-840f-425e-a803-ff0b9f5b59d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5540096-00bf-49db-be94-8809028d87d5", - "Date" : "Tue, 24 May 2022 13:01:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12097,Microsoft.Compute/GetVMImageFromLocation30Min;73097", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130117Z:a5540096-00bf-49db-be94-8809028d87d5", - "Expires" : "-1", - "x-ms-request-id" : "189e1ba0-5867-42ab-9b55-34e7f60fdb35", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "ddd6dccc-840f-425e-a803-ff0b9f5b59d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts/versions/18.04.202205140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "106bf31a-6163-43de-a4e1-169061b6e684", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c000ce05-b8d5-4b28-b85b-cd4785da4d1a", - "Date" : "Tue, 24 May 2022 13:01:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12096,Microsoft.Compute/GetVMImageFromLocation30Min;73096", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130118Z:c000ce05-b8d5-4b28-b85b-cd4785da4d1a", - "Expires" : "-1", - "x-ms-request-id" : "b51a5791-10a1-44bc-b29c-ead06e250329", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts/Versions/18.04.202205140\"\r\n}", - "x-ms-client-request-id" : "106bf31a-6163-43de-a4e1-169061b6e684", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef9cd178-8c96-40ce-9b99-f93379fb1e02", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "10243", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "876beb6a-8da8-4f7e-9de4-7772b9940e59", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15915,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130118Z:876beb6a-8da8-4f7e-9de4-7772b9940e59", - "Expires" : "-1", - "x-ms-request-id" : "47b2b2e6-dc1c-4cc0-8f51-e881af80b062", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202105010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202106090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202112080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202204240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202205140\"\r\n }\r\n]", - "x-ms-client-request-id" : "ef9cd178-8c96-40ce-9b99-f93379fb1e02", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc760580-48e8-4f5f-9834-9e33759c9f29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df8f5296-103f-4132-bd8d-bb6d05cb8514", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12094,Microsoft.Compute/GetVMImageFromLocation30Min;73094", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:df8f5296-103f-4132-bd8d-bb6d05cb8514", - "Expires" : "-1", - "x-ms-request-id" : "725dc325-d435-452f-a539-77e9fa2879d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "fc760580-48e8-4f5f-9834-9e33759c9f29", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c065338-b40b-4fb8-9ccf-a1729d377b14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0e9479d-7989-4384-9186-dc5242407548", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12095,Microsoft.Compute/GetVMImageFromLocation30Min;73095", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:b0e9479d-7989-4384-9186-dc5242407548", - "Expires" : "-1", - "x-ms-request-id" : "0d6d259f-8682-4d5d-8dd0-c730d2a949c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103160\"\r\n}", - "x-ms-client-request-id" : "5c065338-b40b-4fb8-9ccf-a1729d377b14", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202105010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de021fc0-2d6a-4ef5-8c74-8b04a00950e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03a1436f-5b19-4670-9dab-591fa78c37e0", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12090,Microsoft.Compute/GetVMImageFromLocation30Min;73090", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:03a1436f-5b19-4670-9dab-591fa78c37e0", - "Expires" : "-1", - "x-ms-request-id" : "39c59120-5a80-45fe-a20c-96b75a234a36", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202105010\"\r\n}", - "x-ms-client-request-id" : "de021fc0-2d6a-4ef5-8c74-8b04a00950e6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7be04301-db37-441e-8130-d25354890643", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0dd514e-dfb1-432a-bf91-93eab0194d73", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12092,Microsoft.Compute/GetVMImageFromLocation30Min;73092", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:e0dd514e-dfb1-432a-bf91-93eab0194d73", - "Expires" : "-1", - "x-ms-request-id" : "7262f339-3358-4ce0-8e25-389e1091289f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "7be04301-db37-441e-8130-d25354890643", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e24f6b21-42e9-49a8-98cd-2baebf329bd4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39fc9ea6-8cef-4251-8b3e-8c48f28a911d", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12091,Microsoft.Compute/GetVMImageFromLocation30Min;73091", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:39fc9ea6-8cef-4251-8b3e-8c48f28a911d", - "Expires" : "-1", - "x-ms-request-id" : "f09f42b2-e72e-41da-b750-02022d0341c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "e24f6b21-42e9-49a8-98cd-2baebf329bd4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1202b4ce-6d8c-4eb6-949e-ed729760a539", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ace9f0a-2537-4a70-b16f-df4ef1f4db98", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12086,Microsoft.Compute/GetVMImageFromLocation30Min;73086", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:9ace9f0a-2537-4a70-b16f-df4ef1f4db98", - "Expires" : "-1", - "x-ms-request-id" : "0f8db0fe-389a-4326-9763-1f903b6bca57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "1202b4ce-6d8c-4eb6-949e-ed729760a539", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202106090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c5bd0c5-ac5e-46e7-8f68-87ff291da1a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "383f17ac-21e1-4037-a748-596941ac88f4", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12093,Microsoft.Compute/GetVMImageFromLocation30Min;73093", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:383f17ac-21e1-4037-a748-596941ac88f4", - "Expires" : "-1", - "x-ms-request-id" : "6490f7a9-0eff-4894-acb9-801ab01a83db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202106090\"\r\n}", - "x-ms-client-request-id" : "8c5bd0c5-ac5e-46e7-8f68-87ff291da1a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6acd0a08-cb72-45ad-876d-794be6895259", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c8916cc-9715-4d7b-b149-7a61a4b4707c", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12089,Microsoft.Compute/GetVMImageFromLocation30Min;73089", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:6c8916cc-9715-4d7b-b149-7a61a4b4707c", - "Expires" : "-1", - "x-ms-request-id" : "b3cb6762-41d9-4f80-a7f2-ebfba1889fa9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "6acd0a08-cb72-45ad-876d-794be6895259", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3efd1c88-9005-4362-a343-7396c4f5098a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "587bfc83-4c73-49d5-8921-150f8b3d9561", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12084,Microsoft.Compute/GetVMImageFromLocation30Min;73084", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:587bfc83-4c73-49d5-8921-150f8b3d9561", - "Expires" : "-1", - "x-ms-request-id" : "cc8bc748-b851-47e6-868d-0a553a255bc5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "3efd1c88-9005-4362-a343-7396c4f5098a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "107dd114-a734-4858-983a-3f90ec299130", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7919846-d50f-4a8a-87d2-53ee325239e4", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12085,Microsoft.Compute/GetVMImageFromLocation30Min;73085", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:c7919846-d50f-4a8a-87d2-53ee325239e4", - "Expires" : "-1", - "x-ms-request-id" : "b29eb5e2-7495-464f-b3bb-07bb4f0a9e77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "107dd114-a734-4858-983a-3f90ec299130", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d93d2dc3-359a-4de6-8799-5502e3209bfe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbdc5b46-0313-47c8-8891-00fa7bbc55b1", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12083,Microsoft.Compute/GetVMImageFromLocation30Min;73083", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:bbdc5b46-0313-47c8-8891-00fa7bbc55b1", - "Expires" : "-1", - "x-ms-request-id" : "0ce761c1-0583-4e41-ab8e-9700be3be698", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "d93d2dc3-359a-4de6-8799-5502e3209bfe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6d1176d-95cc-4581-b64a-69bb7794e7fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0763f5f-195e-4e1a-b8af-ca4f766114e7", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12081,Microsoft.Compute/GetVMImageFromLocation30Min;73081", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:a0763f5f-195e-4e1a-b8af-ca4f766114e7", - "Expires" : "-1", - "x-ms-request-id" : "e41f9ba6-b541-412e-bd53-2c43fa0365a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202201110\"\r\n}", - "x-ms-client-request-id" : "a6d1176d-95cc-4581-b64a-69bb7794e7fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202103230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1a55e5f-2234-41dc-b243-5ec5ed5aceb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0202fc29-7381-457f-9120-ff37ae24e90c", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12079,Microsoft.Compute/GetVMImageFromLocation30Min;73079", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:0202fc29-7381-457f-9120-ff37ae24e90c", - "Expires" : "-1", - "x-ms-request-id" : "feecc15e-f9e6-4d18-a71a-2f95a5c32608", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103230\"\r\n}", - "x-ms-client-request-id" : "e1a55e5f-2234-41dc-b243-5ec5ed5aceb7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b0fb6ac-e5d0-4d2e-9bf2-7b70b70d55be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5be50e6a-7392-4758-87e8-c7ad6d6c949c", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12087,Microsoft.Compute/GetVMImageFromLocation30Min;73087", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:5be50e6a-7392-4758-87e8-c7ad6d6c949c", - "Expires" : "-1", - "x-ms-request-id" : "7425ef44-f82a-4b4d-b1f1-85a6417e7a9a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "1b0fb6ac-e5d0-4d2e-9bf2-7b70b70d55be", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "842e5a78-6fb2-4e3b-8eb5-7d01b971f28e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0003955a-ef5a-4674-a47b-c38912de5660", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12078,Microsoft.Compute/GetVMImageFromLocation30Min;73078", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:0003955a-ef5a-4674-a47b-c38912de5660", - "Expires" : "-1", - "x-ms-request-id" : "ac813b26-fbf4-4014-ab9d-0ecbe8e499c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "842e5a78-6fb2-4e3b-8eb5-7d01b971f28e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43269ef0-f862-4e90-ad86-673005946d35", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b91f7c57-ce99-4c2a-987c-cc20d543acbd", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12077,Microsoft.Compute/GetVMImageFromLocation30Min;73077", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:b91f7c57-ce99-4c2a-987c-cc20d543acbd", - "Expires" : "-1", - "x-ms-request-id" : "66afca1f-d798-4d69-aa7e-050094cfbfbf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "43269ef0-f862-4e90-ad86-673005946d35", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fb7e3af-c879-4eb0-ac3b-9165f6e31fc5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3612477a-7402-4074-b6d2-3d47e1b1f640", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12082,Microsoft.Compute/GetVMImageFromLocation30Min;73082", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:3612477a-7402-4074-b6d2-3d47e1b1f640", - "Expires" : "-1", - "x-ms-request-id" : "7cbbe501-341e-44b5-a881-5d176eb10c73", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "2fb7e3af-c879-4eb0-ac3b-9165f6e31fc5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202112080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfddf385-5336-4cf4-bb72-401301812ab2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba105c56-8daf-4a5f-8dea-08d3503ca1f3", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12076,Microsoft.Compute/GetVMImageFromLocation30Min;73076", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:ba105c56-8daf-4a5f-8dea-08d3503ca1f3", - "Expires" : "-1", - "x-ms-request-id" : "0decc50a-e9b2-49a1-88c9-b7fb613c2ceb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202112080\"\r\n}", - "x-ms-client-request-id" : "bfddf385-5336-4cf4-bb72-401301812ab2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91588a67-04bf-4215-8656-784ffda4f357", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75e9c564-c848-4f5e-9846-66f2b2f53606", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12075,Microsoft.Compute/GetVMImageFromLocation30Min;73075", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:75e9c564-c848-4f5e-9846-66f2b2f53606", - "Expires" : "-1", - "x-ms-request-id" : "d9276160-80cb-46d4-a202-eaf6c0d3c17d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "91588a67-04bf-4215-8656-784ffda4f357", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "406fb3c4-70e7-4b3f-8d39-3474eca7fac2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04ab2039-010e-4fe8-b1b4-9e60d0dc253b", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12088,Microsoft.Compute/GetVMImageFromLocation30Min;73088", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:04ab2039-010e-4fe8-b1b4-9e60d0dc253b", - "Expires" : "-1", - "x-ms-request-id" : "a35e9cd3-9d76-45d7-aa04-457d2bc39835", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "406fb3c4-70e7-4b3f-8d39-3474eca7fac2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202205140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0d0c734-a4d2-4115-89be-3cc90afdd086", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e5eb15f-b596-45b8-ae3c-ba72e9a5149a", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12072,Microsoft.Compute/GetVMImageFromLocation30Min;73072", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:7e5eb15f-b596-45b8-ae3c-ba72e9a5149a", - "Expires" : "-1", - "x-ms-request-id" : "cb972343-c0bc-46ca-ba89-0d0b4287ab2d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202205140\"\r\n}", - "x-ms-client-request-id" : "b0d0c734-a4d2-4115-89be-3cc90afdd086", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47cbbdc2-3f09-4d2a-bc1e-b2b9b69c3b4b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6c01b19-817c-4c30-993c-0a5782797d73", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12067,Microsoft.Compute/GetVMImageFromLocation30Min;73067", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:a6c01b19-817c-4c30-993c-0a5782797d73", - "Expires" : "-1", - "x-ms-request-id" : "2e250364-b99d-4c2d-9e6f-658666da7be2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "47cbbdc2-3f09-4d2a-bc1e-b2b9b69c3b4b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80fb730d-187b-499a-8d8d-15bfcc6d9a44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bff436e9-716b-470a-9273-2b6fd63f2b4d", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12068,Microsoft.Compute/GetVMImageFromLocation30Min;73068", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:bff436e9-716b-470a-9273-2b6fd63f2b4d", - "Expires" : "-1", - "x-ms-request-id" : "8149963e-344a-41f4-9f88-adf0bec81de9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "80fb730d-187b-499a-8d8d-15bfcc6d9a44", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b652b87-7817-4e6c-b5ac-039f4319f7cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba271640-2b67-42da-8fb1-a1e6ce766591", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12074,Microsoft.Compute/GetVMImageFromLocation30Min;73074", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:ba271640-2b67-42da-8fb1-a1e6ce766591", - "Expires" : "-1", - "x-ms-request-id" : "09deadfc-e1d6-4a2f-a08a-0e860ae865c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "0b652b87-7817-4e6c-b5ac-039f4319f7cd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d926b774-4ba0-4ac6-a423-3c0e43d7180e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "727c2fc6-0965-483e-8f2b-2f51fe3447cd", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12080,Microsoft.Compute/GetVMImageFromLocation30Min;73080", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:727c2fc6-0965-483e-8f2b-2f51fe3447cd", - "Expires" : "-1", - "x-ms-request-id" : "eb67e78a-f411-413e-b20e-57040b06552d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "d926b774-4ba0-4ac6-a423-3c0e43d7180e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1735a96-7ad5-4006-87dd-ecb764683aab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f67756c-6827-464d-b7e6-dbc3d74757f9", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12071,Microsoft.Compute/GetVMImageFromLocation30Min;73071", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:4f67756c-6827-464d-b7e6-dbc3d74757f9", - "Expires" : "-1", - "x-ms-request-id" : "3f40f2ad-cba5-45e5-be57-ba1d00c0e3d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202103100\"\r\n}", - "x-ms-client-request-id" : "a1735a96-7ad5-4006-87dd-ecb764683aab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202204240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35aff0f8-69e5-4db5-8f79-305bfb5556b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd1e03bb-1590-4e9a-b2a7-ea4c04fedb33", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12066,Microsoft.Compute/GetVMImageFromLocation30Min;73066", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:fd1e03bb-1590-4e9a-b2a7-ea4c04fedb33", - "Expires" : "-1", - "x-ms-request-id" : "f9386277-b937-4b70-a4fe-fad02ec9d0fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202204240\"\r\n}", - "x-ms-client-request-id" : "35aff0f8-69e5-4db5-8f79-305bfb5556b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68d08155-9899-41bf-a43f-c6be196a9311", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e485159f-65ab-4fed-9cae-7c609debc7b1", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12064,Microsoft.Compute/GetVMImageFromLocation30Min;73064", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:e485159f-65ab-4fed-9cae-7c609debc7b1", - "Expires" : "-1", - "x-ms-request-id" : "8a65e7f8-b81d-4e20-b6d5-65cb71bfef37", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "68d08155-9899-41bf-a43f-c6be196a9311", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4088f66f-d7af-47d5-846d-9150efc33b3a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6765380-40cb-42fb-bcc4-7dc752f22ad0", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12073,Microsoft.Compute/GetVMImageFromLocation30Min;73073", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:f6765380-40cb-42fb-bcc4-7dc752f22ad0", - "Expires" : "-1", - "x-ms-request-id" : "d6e86bd1-6fa1-4c35-b439-88d649f73765", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202112060\"\r\n}", - "x-ms-client-request-id" : "4088f66f-d7af-47d5-846d-9150efc33b3a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b83946c-8ed6-4b26-a967-fd34b5ef6036", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7bc0c18c-1513-4825-a3f1-9ae487feac3a", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12065,Microsoft.Compute/GetVMImageFromLocation30Min;73065", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:7bc0c18c-1513-4825-a3f1-9ae487feac3a", - "Expires" : "-1", - "x-ms-request-id" : "e432ff57-03b2-4420-896c-99d337a17e5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "0b83946c-8ed6-4b26-a967-fd34b5ef6036", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa797b2d-a9c4-47b1-905a-834957f5e7ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b1535ec-6307-4d03-b231-919326601ff3", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12069,Microsoft.Compute/GetVMImageFromLocation30Min;73069", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:9b1535ec-6307-4d03-b231-919326601ff3", - "Expires" : "-1", - "x-ms-request-id" : "2a60ea9d-4b58-44a2-bd43-1c028452d267", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "fa797b2d-a9c4-47b1-905a-834957f5e7ed", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic/skus/pro-18_04-lts-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "893cd3fb-abac-4f2c-a629-88f518f1c1c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8162830c-176f-47ea-b09d-d055ecc09e82", - "Date" : "Tue, 24 May 2022 13:01:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12070,Microsoft.Compute/GetVMImageFromLocation30Min;73070", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:8162830c-176f-47ea-b09d-d055ecc09e82", - "Expires" : "-1", - "x-ms-request-id" : "cc8c0e58-6dc9-4baa-a1b4-6279fb33db14", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-18_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic/Skus/pro-18_04-lts-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "893cd3fb-abac-4f2c-a629-88f518f1c1c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb374865-207c-473b-b797-f7a352f964d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "853", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "feedc4dc-1243-419b-99e4-c6e812480f29", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9977,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:feedc4dc-1243-419b-99e4-c6e812480f29", - "Expires" : "-1", - "x-ms-request-id" : "93a3e697-6ba0-402c-a4e0-10e03d1d04b1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "fb374865-207c-473b-b797-f7a352f964d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25f0c251-8d0c-4f89-a801-b4caa70fa32d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6102", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b2567b8-3530-436b-82e8-b5181c623ceb", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15914,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130119Z:7b2567b8-3530-436b-82e8-b5181c623ceb", - "Expires" : "-1", - "x-ms-request-id" : "6b06bbc2-cf06-4d58-a165-4370e9214136", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202007240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202010201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202104020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202105010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202105200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202105260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "25f0c251-8d0c-4f89-a801-b4caa70fa32d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3da18139-b982-4959-8680-d28ad3d16efd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee34136f-945e-46b6-993e-f8b2189b90df", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12060,Microsoft.Compute/GetVMImageFromLocation30Min;73060", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:ee34136f-945e-46b6-993e-f8b2189b90df", - "Expires" : "-1", - "x-ms-request-id" : "b8b5aac3-5e15-4934-a55d-20a17cd451d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "3da18139-b982-4959-8680-d28ad3d16efd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a09a244-b5dc-4fde-8579-11d67be9be18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e5d1a06-b538-4aac-8d01-c428c0a9f2ee", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12058,Microsoft.Compute/GetVMImageFromLocation30Min;73058", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:6e5d1a06-b538-4aac-8d01-c428c0a9f2ee", - "Expires" : "-1", - "x-ms-request-id" : "0dcdad1c-aebb-4be7-8119-977c06813b3e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "5a09a244-b5dc-4fde-8579-11d67be9be18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0abea657-54ff-4076-b6c1-a63cfc02a271", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b63e3de5-7240-4244-830c-a5a3e831c36b", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12055,Microsoft.Compute/GetVMImageFromLocation30Min;73055", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:b63e3de5-7240-4244-830c-a5a3e831c36b", - "Expires" : "-1", - "x-ms-request-id" : "e6854f5c-18df-47d0-82d8-99b7d7d728db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "0abea657-54ff-4076-b6c1-a63cfc02a271", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d4a2e23-a187-466f-86de-146e73b104d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8f484a6-f007-4f8b-9b5b-51bced05a79f", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12056,Microsoft.Compute/GetVMImageFromLocation30Min;73056", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:d8f484a6-f007-4f8b-9b5b-51bced05a79f", - "Expires" : "-1", - "x-ms-request-id" : "07fa241e-f223-4c97-aef8-942c6afbf1a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "7d4a2e23-a187-466f-86de-146e73b104d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9964c74c-74b5-4ffd-ad22-e19180c82bd3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d705b51-2e5e-4af9-95e2-c898e45a77e6", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12054,Microsoft.Compute/GetVMImageFromLocation30Min;73054", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:9d705b51-2e5e-4af9-95e2-c898e45a77e6", - "Expires" : "-1", - "x-ms-request-id" : "21314f78-5dc3-4df5-b61a-0abb075b7e32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "9964c74c-74b5-4ffd-ad22-e19180c82bd3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf9663ed-9b1d-47b4-a8f4-7a5d17fe3fdc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1c72d71-6afa-4166-8d5d-0e78f17ccc30", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12057,Microsoft.Compute/GetVMImageFromLocation30Min;73057", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:f1c72d71-6afa-4166-8d5d-0e78f17ccc30", - "Expires" : "-1", - "x-ms-request-id" : "16ea3256-2a9c-4a04-911a-95c39e51a443", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "bf9663ed-9b1d-47b4-a8f4-7a5d17fe3fdc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7087537d-8ad2-4c67-85e2-631db7f42236", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbd4e161-9b84-4e0c-9fe4-a7d2b1002908", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12052,Microsoft.Compute/GetVMImageFromLocation30Min;73052", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:fbd4e161-9b84-4e0c-9fe4-a7d2b1002908", - "Expires" : "-1", - "x-ms-request-id" : "d5a3bcf4-c43e-4711-a98f-1d04302299e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "7087537d-8ad2-4c67-85e2-631db7f42236", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5e3cc50-47af-4bd3-97a6-18575444521d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1e5f4c1-fab3-4fb2-817a-5b51ffffda0d", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12051,Microsoft.Compute/GetVMImageFromLocation30Min;73051", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:c1e5f4c1-fab3-4fb2-817a-5b51ffffda0d", - "Expires" : "-1", - "x-ms-request-id" : "a09ae71e-4af9-4707-9187-16af6d94de6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "e5e3cc50-47af-4bd3-97a6-18575444521d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202105200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47d28cac-154c-47d3-9032-4ce7a08181e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3e22b7f-00e8-43fc-adc5-ae347eebf669", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12063,Microsoft.Compute/GetVMImageFromLocation30Min;73063", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:b3e22b7f-00e8-43fc-adc5-ae347eebf669", - "Expires" : "-1", - "x-ms-request-id" : "4af4334d-a099-40f6-b814-e1999840194b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202105200\"\r\n}", - "x-ms-client-request-id" : "47d28cac-154c-47d3-9032-4ce7a08181e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202105010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "264479db-48b5-4525-aef5-76bbe11ad20a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd1f45ae-ce29-4ca1-8574-e61681e82096", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12059,Microsoft.Compute/GetVMImageFromLocation30Min;73059", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:cd1f45ae-ce29-4ca1-8574-e61681e82096", - "Expires" : "-1", - "x-ms-request-id" : "66618856-a0b4-4fad-9e54-c4005c795594", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202105010\"\r\n}", - "x-ms-client-request-id" : "264479db-48b5-4525-aef5-76bbe11ad20a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4baace91-127b-4403-aa92-83da6357751b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9592e61-ac61-4abb-b1bf-4eeb00d4d13b", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12062,Microsoft.Compute/GetVMImageFromLocation30Min;73062", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:d9592e61-ac61-4abb-b1bf-4eeb00d4d13b", - "Expires" : "-1", - "x-ms-request-id" : "3e665e4a-ae4c-4f17-befe-0503d97f1e9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "4baace91-127b-4403-aa92-83da6357751b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b23a5629-0512-4f13-b772-fed7771b9cda", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "20dd5cf1-d19c-4fc7-a399-b5030f4a8113", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12048,Microsoft.Compute/GetVMImageFromLocation30Min;73048", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:20dd5cf1-d19c-4fc7-a399-b5030f4a8113", - "Expires" : "-1", - "x-ms-request-id" : "d5db2f72-26f9-4a46-947f-bdfb8ec7ebd5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "b23a5629-0512-4f13-b772-fed7771b9cda", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "252aed2a-6007-421b-af6c-58ec85faafae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "940a38fd-c16a-4dca-8a00-7e86eb5d643b", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12047,Microsoft.Compute/GetVMImageFromLocation30Min;73047", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:940a38fd-c16a-4dca-8a00-7e86eb5d643b", - "Expires" : "-1", - "x-ms-request-id" : "58e43fca-1b9b-42ef-a2d0-f50dd518f627", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "252aed2a-6007-421b-af6c-58ec85faafae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2932bd3e-610b-475f-beda-7f3a903b2ba0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af85d1fb-4c24-4aa4-aebc-c4a5a282f793", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12050,Microsoft.Compute/GetVMImageFromLocation30Min;73050", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:af85d1fb-4c24-4aa4-aebc-c4a5a282f793", - "Expires" : "-1", - "x-ms-request-id" : "536aef22-270f-4ef2-aaa4-73c83e59d6a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202201070\"\r\n}", - "x-ms-client-request-id" : "2932bd3e-610b-475f-beda-7f3a903b2ba0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202010201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ecdd7d2-544b-477c-9f71-63a9b156f1ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14fefe04-b093-4c2d-85b3-0a087367ad23", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12049,Microsoft.Compute/GetVMImageFromLocation30Min;73049", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:14fefe04-b093-4c2d-85b3-0a087367ad23", - "Expires" : "-1", - "x-ms-request-id" : "a73923a4-dafd-4c10-a1d6-019ff55390e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202010201\"\r\n}", - "x-ms-client-request-id" : "0ecdd7d2-544b-477c-9f71-63a9b156f1ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "720852e7-1ece-4dd6-a21a-9dbed874e924", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a96cfea-6746-45a9-8b17-d6f7d007a231", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12053,Microsoft.Compute/GetVMImageFromLocation30Min;73053", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:2a96cfea-6746-45a9-8b17-d6f7d007a231", - "Expires" : "-1", - "x-ms-request-id" : "430fa73b-9c8c-443c-9204-7fd2ee01aabc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "720852e7-1ece-4dd6-a21a-9dbed874e924", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202104020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4772ba84-6d8b-40aa-b5aa-a75bb7d7396b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2148122-681e-4803-8b25-dd90d13aac9d", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12046,Microsoft.Compute/GetVMImageFromLocation30Min;73046", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:f2148122-681e-4803-8b25-dd90d13aac9d", - "Expires" : "-1", - "x-ms-request-id" : "046c4f38-1575-4f8e-8d6f-1a8d7e33f64d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202104020\"\r\n}", - "x-ms-client-request-id" : "4772ba84-6d8b-40aa-b5aa-a75bb7d7396b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202105260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fab5154-6e36-4f81-a656-3ae0aa14c762", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "661a0331-1bb0-4133-8050-44619cccda83", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12045,Microsoft.Compute/GetVMImageFromLocation30Min;73045", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:661a0331-1bb0-4133-8050-44619cccda83", - "Expires" : "-1", - "x-ms-request-id" : "76b3e674-1a49-499b-8cd0-fea62d8b8e6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202105260\"\r\n}", - "x-ms-client-request-id" : "9fab5154-6e36-4f81-a656-3ae0aa14c762", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04/versions/18.04.202007240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf3dd681-1f1a-4cbb-8a1a-8821ebffa3aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1053", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df26f38c-0283-418c-9732-b6e5f3e44bbd", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12061,Microsoft.Compute/GetVMImageFromLocation30Min;73061", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:df26f38c-0283-418c-9732-b6e5f3e44bbd", - "Expires" : "-1", - "x-ms-request-id" : "3e463e41-3e63-4718-84e6-7d3592653cb7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04/Versions/18.04.202007240\"\r\n}", - "x-ms-client-request-id" : "cf3dd681-1f1a-4cbb-8a1a-8821ebffa3aa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72f67111-35d3-4f41-b2a4-41b69f13be11", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4241", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce423a9f-147a-4178-ae0c-9177b54a466d", - "Date" : "Tue, 24 May 2022 13:01:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15913,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:ce423a9f-147a-4178-ae0c-9177b54a466d", - "Expires" : "-1", - "x-ms-request-id" : "4b873358-76c6-4c71-b9cf-80557da0f6e3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202105200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202105260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202107160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202204010\"\r\n }\r\n]", - "x-ms-client-request-id" : "72f67111-35d3-4f41-b2a4-41b69f13be11", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202105200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01c3e857-49bb-4716-843a-dbc68d411876", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5293d9b0-26da-405e-92ff-6760fceca615", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12043,Microsoft.Compute/GetVMImageFromLocation30Min;73043", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:5293d9b0-26da-405e-92ff-6760fceca615", - "Expires" : "-1", - "x-ms-request-id" : "92cdfb47-78e5-4fe4-97c8-d462513488d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202105200\"\r\n}", - "x-ms-client-request-id" : "01c3e857-49bb-4716-843a-dbc68d411876", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202105260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48941219-f629-40a1-b7c1-4421a8144314", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c51067e1-8737-44c0-a9cf-00daf19dab47", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12044,Microsoft.Compute/GetVMImageFromLocation30Min;73044", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:c51067e1-8737-44c0-a9cf-00daf19dab47", - "Expires" : "-1", - "x-ms-request-id" : "84aef6ba-73b0-4326-947f-b2bc59c09dc7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202105260\"\r\n}", - "x-ms-client-request-id" : "48941219-f629-40a1-b7c1-4421a8144314", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202107160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93119423-f131-4257-aec1-e0c111b31539", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e6f2e72-17fa-4446-8c6f-66cdb4b4a73c", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12042,Microsoft.Compute/GetVMImageFromLocation30Min;73042", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:7e6f2e72-17fa-4446-8c6f-66cdb4b4a73c", - "Expires" : "-1", - "x-ms-request-id" : "93b26689-39aa-4993-82cf-997d13e482c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202107160\"\r\n}", - "x-ms-client-request-id" : "93119423-f131-4257-aec1-e0c111b31539", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0cb65b1-75a5-49df-b877-bffa6f920859", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1989c6a3-ca70-42bb-a1ee-227a2d267869", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12039,Microsoft.Compute/GetVMImageFromLocation30Min;73039", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:1989c6a3-ca70-42bb-a1ee-227a2d267869", - "Expires" : "-1", - "x-ms-request-id" : "7f6010d1-60c5-4c6a-9310-912674ef14f6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "a0cb65b1-75a5-49df-b877-bffa6f920859", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2bebb46-b3bd-430c-92d0-82f38cf54dbc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bcbb1037-2b0b-49ac-b957-59a728395bea", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12040,Microsoft.Compute/GetVMImageFromLocation30Min;73040", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:bcbb1037-2b0b-49ac-b957-59a728395bea", - "Expires" : "-1", - "x-ms-request-id" : "78106de7-1497-4bfa-9f2f-55d7fdecf2de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "c2bebb46-b3bd-430c-92d0-82f38cf54dbc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba13b1f7-38c0-498f-9f2a-7431c914684c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c61fbe6-3a0a-40bb-b04a-bf0d53ba07fa", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12038,Microsoft.Compute/GetVMImageFromLocation30Min;73038", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:4c61fbe6-3a0a-40bb-b04a-bf0d53ba07fa", - "Expires" : "-1", - "x-ms-request-id" : "4adb07a0-4bb9-4501-9dcf-d6274fbe9502", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "ba13b1f7-38c0-498f-9f2a-7431c914684c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35f84313-615e-43d0-b52a-07ad40e52f25", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1592327-3e53-41bd-a65e-3aa8794d1b18", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12041,Microsoft.Compute/GetVMImageFromLocation30Min;73041", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:c1592327-3e53-41bd-a65e-3aa8794d1b18", - "Expires" : "-1", - "x-ms-request-id" : "8e2d9320-e73f-4c63-9ab9-8f7718277269", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "35f84313-615e-43d0-b52a-07ad40e52f25", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18d4064e-6560-44bd-a2e8-a6ad73fcaf70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0fe00e5-a5c0-4630-9d13-dd7eaab40f2b", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12036,Microsoft.Compute/GetVMImageFromLocation30Min;73036", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:e0fe00e5-a5c0-4630-9d13-dd7eaab40f2b", - "Expires" : "-1", - "x-ms-request-id" : "ee1b894b-d372-4bed-b40a-c64baa59c486", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "18d4064e-6560-44bd-a2e8-a6ad73fcaf70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5988127-a317-4560-b0b1-4c093b3dd58e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "737c0e8a-6804-4564-99dd-94825d37b50a", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12035,Microsoft.Compute/GetVMImageFromLocation30Min;73035", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:737c0e8a-6804-4564-99dd-94825d37b50a", - "Expires" : "-1", - "x-ms-request-id" : "876e1709-c06e-42f3-8b79-97521426a5aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "b5988127-a317-4560-b0b1-4c093b3dd58e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3a2fa2d-cc55-4406-848e-ace499cbd5c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0281ca1e-06bb-4e11-8760-a99d41f0cc96", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12033,Microsoft.Compute/GetVMImageFromLocation30Min;73033", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:0281ca1e-06bb-4e11-8760-a99d41f0cc96", - "Expires" : "-1", - "x-ms-request-id" : "d0dfe91b-c30d-406c-8324-56391417d43f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202201070\"\r\n}", - "x-ms-client-request-id" : "b3a2fa2d-cc55-4406-848e-ace499cbd5c6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "611c40af-98e7-458d-b715-3b1b03c1335b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1055", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a788b20-cc85-487c-9011-10ed5aae5b76", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12034,Microsoft.Compute/GetVMImageFromLocation30Min;73034", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:6a788b20-cc85-487c-9011-10ed5aae5b76", - "Expires" : "-1", - "x-ms-request-id" : "f6e3eb11-f340-47f9-a046-378259f1426d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "611c40af-98e7-458d-b715-3b1b03c1335b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a764191-fbd3-4378-af29-b0af5f28d916", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ffce5a4a-4ba5-451d-832d-37ffe2987eb4", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12032,Microsoft.Compute/GetVMImageFromLocation30Min;73032", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:ffce5a4a-4ba5-451d-832d-37ffe2987eb4", - "Expires" : "-1", - "x-ms-request-id" : "184eeaa7-dcea-46d8-8aaf-dfecac80aa81", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "2a764191-fbd3-4378-af29-b0af5f28d916", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-bionic-fips/skus/pro-fips-18_04-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4619e379-c7cb-4f98-8cea-cb1ccae2b95a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bf266ea-3922-4fb2-bc94-7f04f1cf7701", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12037,Microsoft.Compute/GetVMImageFromLocation30Min;73037", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130120Z:1bf266ea-3922-4fb2-bc94-7f04f1cf7701", - "Expires" : "-1", - "x-ms-request-id" : "882ed357-75a1-4d76-9aea-25313a023fcc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-bionic-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-bionic-fips/Skus/pro-fips-18_04-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "4619e379-c7cb-4f98-8cea-cb1ccae2b95a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a3ffb9e-42a9-4c35-87c5-28ad46e11212", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "837", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ae6c43a-733a-427d-afe5-335c7030c276", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9976,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:5ae6c43a-733a-427d-afe5-335c7030c276", - "Expires" : "-1", - "x-ms-request-id" : "3fbc3ff6-c119-4b3f-b8f1-0dd7ae45b7a4", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "1a3ffb9e-42a9-4c35-87c5-28ad46e11212", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29bf8dca-358a-4d00-a7ff-ccd4c4894c30", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "14751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d66adda-9fc7-4521-a34a-d2f928e73410", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15912,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:6d66adda-9fc7-4521-a34a-d2f928e73410", - "Expires" : "-1", - "x-ms-request-id" : "532be7cb-5f3d-44c2-9caf-c83e674f5700", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200423\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200525\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202009030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202010260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202102020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202103090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202105120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202205110\"\r\n }\r\n]", - "x-ms-client-request-id" : "29bf8dca-358a-4d00-a7ff-ccd4c4894c30", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202009030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40a7699e-076f-46b3-89a7-eb252ac2d0e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93bad662-6e7f-4dbe-9a59-e2de8c7595b5", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12031,Microsoft.Compute/GetVMImageFromLocation30Min;73031", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:93bad662-6e7f-4dbe-9a59-e2de8c7595b5", - "Expires" : "-1", - "x-ms-request-id" : "8298a027-554d-4380-8de5-0d9afcf4cb8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202009030\"\r\n}", - "x-ms-client-request-id" : "40a7699e-076f-46b3-89a7-eb252ac2d0e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202010260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "66cdd0a2-1df9-4b2a-922c-fc330e93c1d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95e8258e-d548-4fdf-8d3b-10cfe1b58f61", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12028,Microsoft.Compute/GetVMImageFromLocation30Min;73028", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:95e8258e-d548-4fdf-8d3b-10cfe1b58f61", - "Expires" : "-1", - "x-ms-request-id" : "d8b413c7-47e9-422c-89b2-aedf1d95ba17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202010260\"\r\n}", - "x-ms-client-request-id" : "66cdd0a2-1df9-4b2a-922c-fc330e93c1d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e655d2e-1f14-495f-8a86-f8d5e40078ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1207", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c1d7d0a-3487-489c-b9f6-b3a7c8223fca", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12029,Microsoft.Compute/GetVMImageFromLocation30Min;73029", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:5c1d7d0a-3487-489c-b9f6-b3a7c8223fca", - "Expires" : "-1", - "x-ms-request-id" : "7b9a8844-8799-4bf0-a4c5-b472f3e340d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20201014\"\r\n}", - "x-ms-client-request-id" : "4e655d2e-1f14-495f-8a86-f8d5e40078ee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.20200423?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ccb840e2-1d9b-414b-9bdd-faed4736c433", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1207", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "afccfc9e-3261-4245-b85c-4b074fba817a", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12030,Microsoft.Compute/GetVMImageFromLocation30Min;73030", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:afccfc9e-3261-4245-b85c-4b074fba817a", - "Expires" : "-1", - "x-ms-request-id" : "78a29ba9-fd5a-4c31-a0ec-c31308012cf5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200423\"\r\n}", - "x-ms-client-request-id" : "ccb840e2-1d9b-414b-9bdd-faed4736c433", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202011260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f2ac645-9899-404f-87a4-167bd2ba6218", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6586c73b-8ba3-46ac-af9b-d43b400a1166", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12026,Microsoft.Compute/GetVMImageFromLocation30Min;73026", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:6586c73b-8ba3-46ac-af9b-d43b400a1166", - "Expires" : "-1", - "x-ms-request-id" : "cca91cbb-722d-4f2e-8109-0ac0104a5d6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011260\"\r\n}", - "x-ms-client-request-id" : "3f2ac645-9899-404f-87a4-167bd2ba6218", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202011020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22d438f9-3b93-49dc-a565-4dd5f9cf5d5c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7ed3ab1-3cd6-4f64-9b8b-7be5f82a085e", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12027,Microsoft.Compute/GetVMImageFromLocation30Min;73027", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:e7ed3ab1-3cd6-4f64-9b8b-7be5f82a085e", - "Expires" : "-1", - "x-ms-request-id" : "8f616968-bc63-4386-9f92-e802c7240cc4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011020\"\r\n}", - "x-ms-client-request-id" : "22d438f9-3b93-49dc-a565-4dd5f9cf5d5c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202011060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80853c5f-efd9-443e-99ec-e21ea24c6503", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9297311-ab36-4921-9c9b-e47129078d14", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12025,Microsoft.Compute/GetVMImageFromLocation30Min;73025", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:e9297311-ab36-4921-9c9b-e47129078d14", - "Expires" : "-1", - "x-ms-request-id" : "66b56959-3e8d-40fe-a599-608b4bdbc50b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011060\"\r\n}", - "x-ms-client-request-id" : "80853c5f-efd9-443e-99ec-e21ea24c6503", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9bea6e9b-db97-4d1c-b6d3-14eebdcc0d2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "832aef41-d6fd-4a4d-995b-90bc3d0affaa", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12024,Microsoft.Compute/GetVMImageFromLocation30Min;73024", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:832aef41-d6fd-4a4d-995b-90bc3d0affaa", - "Expires" : "-1", - "x-ms-request-id" : "bc3b61dc-7f0e-4092-b5b7-d00a972d62c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "9bea6e9b-db97-4d1c-b6d3-14eebdcc0d2d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d8ef57d-c82e-4789-add5-e5c802a1003b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1ab2ad1-d4ea-4c6e-9ade-d9852ab7ac3d", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12021,Microsoft.Compute/GetVMImageFromLocation30Min;73021", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:c1ab2ad1-d4ea-4c6e-9ade-d9852ab7ac3d", - "Expires" : "-1", - "x-ms-request-id" : "bfd47bea-e1d4-4087-a52d-22e845efa4d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202103160\"\r\n}", - "x-ms-client-request-id" : "8d8ef57d-c82e-4789-add5-e5c802a1003b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202102020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9aeda134-08d9-42cb-b642-563bc7ae3d65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c963c944-df28-4b59-8e7d-b28325b58606", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12022,Microsoft.Compute/GetVMImageFromLocation30Min;73022", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:c963c944-df28-4b59-8e7d-b28325b58606", - "Expires" : "-1", - "x-ms-request-id" : "107e41da-2f14-4f75-94f4-aefdcd42106f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202102020\"\r\n}", - "x-ms-client-request-id" : "9aeda134-08d9-42cb-b642-563bc7ae3d65", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36946b42-80c3-4e5d-89d6-0c4aa8432037", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6c622b7-71fb-4fcc-b5d1-748158042f5c", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12018,Microsoft.Compute/GetVMImageFromLocation30Min;73018", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:c6c622b7-71fb-4fcc-b5d1-748158042f5c", - "Expires" : "-1", - "x-ms-request-id" : "8124e5b9-84b4-4b5c-85b1-81059fd057fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "36946b42-80c3-4e5d-89d6-0c4aa8432037", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e168852a-33bc-4a8b-91de-b7d2269c6cb4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc4f418c-e2be-4727-b2c3-47fc4f0033f4", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12016,Microsoft.Compute/GetVMImageFromLocation30Min;73016", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:bc4f418c-e2be-4727-b2c3-47fc4f0033f4", - "Expires" : "-1", - "x-ms-request-id" : "5b2edf48-cb45-4357-987b-a4672dbd5e34", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "e168852a-33bc-4a8b-91de-b7d2269c6cb4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5215ef44-6c8e-4a1a-a433-7f9eb48994f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8817e270-68a0-4e09-b766-124d07116fd8", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12020,Microsoft.Compute/GetVMImageFromLocation30Min;73020", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:8817e270-68a0-4e09-b766-124d07116fd8", - "Expires" : "-1", - "x-ms-request-id" : "7279bf38-07e6-421d-b820-9507bb65af19", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "5215ef44-6c8e-4a1a-a433-7f9eb48994f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4bd7d324-cd1a-4717-92e7-74b923fc4b78", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d5001e66-8538-4bfa-bb63-939960b13480", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12019,Microsoft.Compute/GetVMImageFromLocation30Min;73019", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:d5001e66-8538-4bfa-bb63-939960b13480", - "Expires" : "-1", - "x-ms-request-id" : "0c02b046-6777-43d1-ab47-776ff53e459c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "4bd7d324-cd1a-4717-92e7-74b923fc4b78", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc7737bd-29dd-4767-aa65-12e1f10d590c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "788a220d-ea80-4308-b057-b367c2ab1735", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12013,Microsoft.Compute/GetVMImageFromLocation30Min;73013", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:788a220d-ea80-4308-b057-b367c2ab1735", - "Expires" : "-1", - "x-ms-request-id" : "5edc2a8e-f2ae-41c8-95a9-924f976e08bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "cc7737bd-29dd-4767-aa65-12e1f10d590c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e6ed3a3-d99e-4065-8029-34a51e1b7482", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a72a33e-af0b-45e9-80f5-ef2a59c3b722", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12014,Microsoft.Compute/GetVMImageFromLocation30Min;73014", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:6a72a33e-af0b-45e9-80f5-ef2a59c3b722", - "Expires" : "-1", - "x-ms-request-id" : "aac12541-a0c9-4105-bdbf-b01624eaf987", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "5e6ed3a3-d99e-4065-8029-34a51e1b7482", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.20200525?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e130fba-4896-4ced-9beb-ac4a86bd1472", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1207", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8783bf3c-aed0-4f90-9f55-5f859e8ddac9", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12010,Microsoft.Compute/GetVMImageFromLocation30Min;73010", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:8783bf3c-aed0-4f90-9f55-5f859e8ddac9", - "Expires" : "-1", - "x-ms-request-id" : "b4fd250f-4baa-41c9-b6d6-b44cf7c623c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200525\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200525\"\r\n}", - "x-ms-client-request-id" : "3e130fba-4896-4ced-9beb-ac4a86bd1472", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.20200729?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4fc7c2a-dfd7-4119-b696-a1bbbeb02ada", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1207", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3a698d3-86da-4c7f-9693-0ae2771b7b11", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12009,Microsoft.Compute/GetVMImageFromLocation30Min;73009", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:d3a698d3-86da-4c7f-9693-0ae2771b7b11", - "Expires" : "-1", - "x-ms-request-id" : "d08c0efd-c301-408e-87f8-4f2d27fbeb7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200729\"\r\n}", - "x-ms-client-request-id" : "b4fc7c2a-dfd7-4119-b696-a1bbbeb02ada", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df214163-15fc-4c34-8a58-b58857014ddf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2152a91e-a30c-4c49-9c79-2f4727afa920", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12012,Microsoft.Compute/GetVMImageFromLocation30Min;73012", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:2152a91e-a30c-4c49-9c79-2f4727afa920", - "Expires" : "-1", - "x-ms-request-id" : "9ee5f741-f9d9-427d-a3bf-39f2f627071b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "df214163-15fc-4c34-8a58-b58857014ddf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4fda0f80-fad5-4b3c-873d-749f06e1715b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54094cd8-6e25-45bd-9236-fed528b2df7d", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12011,Microsoft.Compute/GetVMImageFromLocation30Min;73011", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:54094cd8-6e25-45bd-9236-fed528b2df7d", - "Expires" : "-1", - "x-ms-request-id" : "7b300a9d-e883-4854-b16c-943e4783e9df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "4fda0f80-fad5-4b3c-873d-749f06e1715b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aeb1ec05-5d75-4a8f-9029-fb59a9b601c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75d22659-a713-4054-a70e-552b71fc3b20", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12008,Microsoft.Compute/GetVMImageFromLocation30Min;73008", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:75d22659-a713-4054-a70e-552b71fc3b20", - "Expires" : "-1", - "x-ms-request-id" : "9bb9b201-7782-4cce-a691-45e9bc096ac4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "aeb1ec05-5d75-4a8f-9029-fb59a9b601c3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bece5e1-86c8-4589-80fa-a3dd7fc2f9de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b1cc555-833e-4c21-9ded-c5760dd5edd6", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12015,Microsoft.Compute/GetVMImageFromLocation30Min;73015", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:6b1cc555-833e-4c21-9ded-c5760dd5edd6", - "Expires" : "-1", - "x-ms-request-id" : "ca1f634e-208c-4756-8de3-d7a13f0bad32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "0bece5e1-86c8-4589-80fa-a3dd7fc2f9de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d42d270c-6de1-4186-a439-c15fb1520095", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7a80bf7-0a86-4751-ab7a-e7d3f39cca40", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12006,Microsoft.Compute/GetVMImageFromLocation30Min;73006", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:e7a80bf7-0a86-4751-ab7a-e7d3f39cca40", - "Expires" : "-1", - "x-ms-request-id" : "4b334e6e-36a0-4d45-a5a0-dcdd9edd5253", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "d42d270c-6de1-4186-a439-c15fb1520095", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f27aafab-a3b8-4678-bd30-506a33e636b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad881137-79e7-4847-b3d6-fc0601d994ab", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12005,Microsoft.Compute/GetVMImageFromLocation30Min;73005", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:ad881137-79e7-4847-b3d6-fc0601d994ab", - "Expires" : "-1", - "x-ms-request-id" : "4c11cca3-6bbd-4254-8c80-aece980315ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "f27aafab-a3b8-4678-bd30-506a33e636b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9af96dd0-f3ef-404d-9df8-284f19cdb20b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "efb6ad0d-b22c-437a-bd2a-acfce8f758d8", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12007,Microsoft.Compute/GetVMImageFromLocation30Min;73007", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:efb6ad0d-b22c-437a-bd2a-acfce8f758d8", - "Expires" : "-1", - "x-ms-request-id" : "80ff620d-1658-4e30-8745-1122aaddbe10", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "9af96dd0-f3ef-404d-9df8-284f19cdb20b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202103090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9409fdc8-aab2-470c-ba5c-681d89361fac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c201f421-1a8b-4e0e-a724-7149c8c9d81e", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12017,Microsoft.Compute/GetVMImageFromLocation30Min;73017", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:c201f421-1a8b-4e0e-a724-7149c8c9d81e", - "Expires" : "-1", - "x-ms-request-id" : "a314ea34-26be-4ccb-bea8-36f8c535efb6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202103090\"\r\n}", - "x-ms-client-request-id" : "9409fdc8-aab2-470c-ba5c-681d89361fac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202105120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f885994f-3a7c-40af-b353-6989e74661de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4c24416-a806-4776-ae29-125fa8c0186e", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12002,Microsoft.Compute/GetVMImageFromLocation30Min;73002", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:e4c24416-a806-4776-ae29-125fa8c0186e", - "Expires" : "-1", - "x-ms-request-id" : "3490c268-f82c-4f88-91d7-519f52543b57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202105120\"\r\n}", - "x-ms-client-request-id" : "f885994f-3a7c-40af-b353-6989e74661de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202011030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b004703e-41b0-45d9-ae8a-d71737e40402", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db930b47-4507-41dd-8e1a-5183e607ea9d", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12004,Microsoft.Compute/GetVMImageFromLocation30Min;73004", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:db930b47-4507-41dd-8e1a-5183e607ea9d", - "Expires" : "-1", - "x-ms-request-id" : "7fce38c5-8b0a-4c62-bbfc-e8e3020bc9fc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011030\"\r\n}", - "x-ms-client-request-id" : "b004703e-41b0-45d9-ae8a-d71737e40402", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202011050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b3a5e39-8ae2-432f-9f69-459f4a8a3fdb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bcd4018d-9d90-45dd-b913-8c729264aeed", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12003,Microsoft.Compute/GetVMImageFromLocation30Min;73003", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:bcd4018d-9d90-45dd-b913-8c729264aeed", - "Expires" : "-1", - "x-ms-request-id" : "d383fe4f-8c70-4fb6-87f1-e4783582c404", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011050\"\r\n}", - "x-ms-client-request-id" : "5b3a5e39-8ae2-432f-9f69-459f4a8a3fdb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6266e651-7d10-485a-bbe9-1d1e615bd342", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a5265ca-d0f3-44f1-8d7e-7c7aa1af85ce", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12023,Microsoft.Compute/GetVMImageFromLocation30Min;73023", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:5a5265ca-d0f3-44f1-8d7e-7c7aa1af85ce", - "Expires" : "-1", - "x-ms-request-id" : "7b98ca85-71bd-4b0e-abe1-039503232f92", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "6266e651-7d10-485a-bbe9-1d1e615bd342", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b258ef0-0a7c-4f5e-91cf-9f88a78b5cd9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e5fe02f-80c9-4e6e-9edc-b850ab1a610b", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12000,Microsoft.Compute/GetVMImageFromLocation30Min;73000", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:5e5fe02f-80c9-4e6e-9edc-b850ab1a610b", - "Expires" : "-1", - "x-ms-request-id" : "d32fceaa-6064-4cdd-a00a-f531aee89a58", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "4b258ef0-0a7c-4f5e-91cf-9f88a78b5cd9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00b00099-f02c-4b1f-ba6a-ffaa9a464af5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3e8c3bd-9405-4a15-a3fe-bf51787f7ba1", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12001,Microsoft.Compute/GetVMImageFromLocation30Min;73001", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:c3e8c3bd-9405-4a15-a3fe-bf51787f7ba1", - "Expires" : "-1", - "x-ms-request-id" : "3bf67ce4-5663-44b6-a153-a6ebde788ad4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "00b00099-f02c-4b1f-ba6a-ffaa9a464af5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f25f44d0-aefa-42d4-b626-6afe4ec10631", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5fcba344-2f97-43b0-8f34-9fe5c587d0aa", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11999,Microsoft.Compute/GetVMImageFromLocation30Min;72999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:5fcba344-2f97-43b0-8f34-9fe5c587d0aa", - "Expires" : "-1", - "x-ms-request-id" : "bdcf41b4-bf43-4f2b-b1f2-64bbec77a915", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "f25f44d0-aefa-42d4-b626-6afe4ec10631", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f18fa5a1-a577-409d-bed2-4fc25a3af503", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7cd8c35d-633a-4031-8349-c6533e7f09cc", - "Date" : "Tue, 24 May 2022 13:01:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11998,Microsoft.Compute/GetVMImageFromLocation30Min;72998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:7cd8c35d-633a-4031-8349-c6533e7f09cc", - "Expires" : "-1", - "x-ms-request-id" : "790839be-8cd8-45a3-8b61-76788eedf92b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "f18fa5a1-a577-409d-bed2-4fc25a3af503", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202011170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23f3b95d-347e-4c06-8833-3e9175e1794f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ddcbc9a-86f6-48dc-b8b6-801f96f3e477", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11997,Microsoft.Compute/GetVMImageFromLocation30Min;72997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:7ddcbc9a-86f6-48dc-b8b6-801f96f3e477", - "Expires" : "-1", - "x-ms-request-id" : "125a35f5-9819-4dc0-a43a-2f71a0c61796", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202011170\"\r\n}", - "x-ms-client-request-id" : "23f3b95d-347e-4c06-8833-3e9175e1794f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e6872f5-edca-4351-8d1a-66ff64220b89", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1445b0d5-df1c-4cf0-aac2-5d385ca07eec", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11995,Microsoft.Compute/GetVMImageFromLocation30Min;72995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:1445b0d5-df1c-4cf0-aac2-5d385ca07eec", - "Expires" : "-1", - "x-ms-request-id" : "418735b7-f255-4c26-af9e-47d45e323f27", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "9e6872f5-edca-4351-8d1a-66ff64220b89", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f54671bc-7967-4012-9df8-b5eb2d8bffd3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df481587-ca99-4fb1-a077-ad36cc0f22e9", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11996,Microsoft.Compute/GetVMImageFromLocation30Min;72996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130121Z:df481587-ca99-4fb1-a077-ad36cc0f22e9", - "Expires" : "-1", - "x-ms-request-id" : "7f98b62e-2e38-4c54-a174-3fec4e94c5a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202101191\"\r\n}", - "x-ms-client-request-id" : "f54671bc-7967-4012-9df8-b5eb2d8bffd3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b15c1f1d-c108-421e-8d10-4a323c8deec1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8044a26c-1780-4d81-98d1-bdee81f9f801", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11993,Microsoft.Compute/GetVMImageFromLocation30Min;72993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:8044a26c-1780-4d81-98d1-bdee81f9f801", - "Expires" : "-1", - "x-ms-request-id" : "7d784e52-dc17-40ea-808f-5cc61141e31c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "b15c1f1d-c108-421e-8d10-4a323c8deec1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f55e9c1a-3fb6-40b4-8e57-ec18bda3bec7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f70a7724-6bfb-4c34-af1c-2235ba317c06", - "Date" : "Tue, 24 May 2022 13:01:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11992,Microsoft.Compute/GetVMImageFromLocation30Min;72992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:f70a7724-6bfb-4c34-af1c-2235ba317c06", - "Expires" : "-1", - "x-ms-request-id" : "abc54fa8-65c0-4fcb-b99e-df1cf9ce1ccf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "f55e9c1a-3fb6-40b4-8e57-ec18bda3bec7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1d9bc84-909e-4888-8861-c70aabe4572a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b727a0f3-e87d-4534-9727-43b07195fbf0", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11991,Microsoft.Compute/GetVMImageFromLocation30Min;72991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:b727a0f3-e87d-4534-9727-43b07195fbf0", - "Expires" : "-1", - "x-ms-request-id" : "167e15b4-ec25-4adf-ab6b-524bec5519e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "d1d9bc84-909e-4888-8861-c70aabe4572a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a68b955-ffb0-4460-93a7-f25549c6fd7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67c1e592-9b86-44c9-b13e-04ca1885da77", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11990,Microsoft.Compute/GetVMImageFromLocation30Min;72990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:67c1e592-9b86-44c9-b13e-04ca1885da77", - "Expires" : "-1", - "x-ms-request-id" : "297a2bd5-5d8c-4f7a-9a40-04ef368af843", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "5a68b955-ffb0-4460-93a7-f25549c6fd7d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e97c4dd-0e58-426e-869b-001a889181ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf876588-b552-400c-9ec1-02559d84bb4e", - "Date" : "Tue, 24 May 2022 13:01:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11994,Microsoft.Compute/GetVMImageFromLocation30Min;72994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:bf876588-b552-400c-9ec1-02559d84bb4e", - "Expires" : "-1", - "x-ms-request-id" : "2d6fed19-d5b5-4521-be88-09efe805caaf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "9e97c4dd-0e58-426e-869b-001a889181ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e244899a-7bcb-4283-91c0-7beba15eda74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80c4534b-9f39-4a08-9a4b-8863e1120a3a", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11988,Microsoft.Compute/GetVMImageFromLocation30Min;72988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:80c4534b-9f39-4a08-9a4b-8863e1120a3a", - "Expires" : "-1", - "x-ms-request-id" : "2ff1d01b-2b66-4ecf-9e42-7983c3a870ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "e244899a-7bcb-4283-91c0-7beba15eda74", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81e3e37b-c711-4065-9043-dcb1d2c739f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce74c666-edcd-41e4-82cc-94861b97ed7e", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11989,Microsoft.Compute/GetVMImageFromLocation30Min;72989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:ce74c666-edcd-41e4-82cc-94861b97ed7e", - "Expires" : "-1", - "x-ms-request-id" : "21bc9323-9eb1-458d-a273-e71116c8797e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202205110\"\r\n}", - "x-ms-client-request-id" : "81e3e37b-c711-4065-9043-dcb1d2c739f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c141a53f-b00f-4969-897c-b87bf5e21ace", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29c93f5a-b878-488d-bfb1-dfe4ff747e8f", - "Date" : "Tue, 24 May 2022 13:01:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11986,Microsoft.Compute/GetVMImageFromLocation30Min;72986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:29c93f5a-b878-488d-bfb1-dfe4ff747e8f", - "Expires" : "-1", - "x-ms-request-id" : "3f4e8546-0eac-4d0f-8a50-f909770ebab9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "c141a53f-b00f-4969-897c-b87bf5e21ace", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.20200908?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fba46c73-fab9-4c60-a0c1-9925479e5c31", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1207", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "949544c4-7f30-4a66-a1ea-90a432c28230", - "Date" : "Tue, 24 May 2022 13:01:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11987,Microsoft.Compute/GetVMImageFromLocation30Min;72987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130122Z:949544c4-7f30-4a66-a1ea-90a432c28230", - "Expires" : "-1", - "x-ms-request-id" : "e9f3a4e9-8fcd-4a4b-a739-9fd465a4bc6c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.20200908\"\r\n}", - "x-ms-client-request-id" : "fba46c73-fab9-4c60-a0c1-9925479e5c31", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa257d13-417f-4b73-b442-44afa7e407e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6faaee22-4125-4a1b-8cfa-44a45a84f427", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11985,Microsoft.Compute/GetVMImageFromLocation30Min;72985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130123Z:6faaee22-4125-4a1b-8cfa-44a45a84f427", - "Expires" : "-1", - "x-ms-request-id" : "2b46e3f2-bcd5-4f62-bfdf-fe0b9f277691", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "aa257d13-417f-4b73-b442-44afa7e407e2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cbd145b-2227-423e-9219-467df9bb7561", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "10211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b9620ce-2139-48a1-aa10-a592e14bfcfb", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15911,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:4b9620ce-2139-48a1-aa10-a592e14bfcfb", - "Expires" : "-1", - "x-ms-request-id" : "8f597361-6985-4b9e-8d65-c61d6d1b611f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202103090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202105120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202105180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202203070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202205110\"\r\n }\r\n]", - "x-ms-client-request-id" : "6cbd145b-2227-423e-9219-467df9bb7561", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7993f7a-0f47-4b91-84cb-57bbfeff5d07", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f273454-6b1f-451c-9cb0-fab16ebe2383", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11984,Microsoft.Compute/GetVMImageFromLocation30Min;72984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:5f273454-6b1f-451c-9cb0-fab16ebe2383", - "Expires" : "-1", - "x-ms-request-id" : "ff01fccf-ae11-4d4f-b8ee-0c5a8404965f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "f7993f7a-0f47-4b91-84cb-57bbfeff5d07", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202105120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e6601c8-030a-491f-91e4-fdf1835a42ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d2b6861-138f-4be4-8130-7efd6d7d2ed2", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11982,Microsoft.Compute/GetVMImageFromLocation30Min;72982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:0d2b6861-138f-4be4-8130-7efd6d7d2ed2", - "Expires" : "-1", - "x-ms-request-id" : "d2c6201b-6276-4186-a0a4-c5590845d0b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202105120\"\r\n}", - "x-ms-client-request-id" : "7e6601c8-030a-491f-91e4-fdf1835a42ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202103090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "027f0be3-2d48-49a1-9d6e-cdb942475466", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7592084f-7ce2-4507-b0d0-d62c03b4b766", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11981,Microsoft.Compute/GetVMImageFromLocation30Min;72981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:7592084f-7ce2-4507-b0d0-d62c03b4b766", - "Expires" : "-1", - "x-ms-request-id" : "484bdb5c-6069-44ee-96b7-69fc3c9f9847", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202103090\"\r\n}", - "x-ms-client-request-id" : "027f0be3-2d48-49a1-9d6e-cdb942475466", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "070d6f57-512f-47df-9ced-4a38057ae073", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14d258d9-bd8e-4e1c-a05d-cf64387dc2a4", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11976,Microsoft.Compute/GetVMImageFromLocation30Min;72976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:14d258d9-bd8e-4e1c-a05d-cf64387dc2a4", - "Expires" : "-1", - "x-ms-request-id" : "71c0932d-3676-46bf-930a-d33c36b2c859", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "070d6f57-512f-47df-9ced-4a38057ae073", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "965ea7a7-829d-4f31-aa1f-28f59f86cd55", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ead8ea2-4bf7-4297-81e8-5f7f93d47362", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11979,Microsoft.Compute/GetVMImageFromLocation30Min;72979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:6ead8ea2-4bf7-4297-81e8-5f7f93d47362", - "Expires" : "-1", - "x-ms-request-id" : "08106a0f-b3fd-4a1b-95ee-4eab2cf3d88b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "965ea7a7-829d-4f31-aa1f-28f59f86cd55", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19eddfb0-549a-4058-9c9e-f4b4c6dfdb6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8831a142-6e5b-4acc-abaf-1ad43fbdc46b", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11975,Microsoft.Compute/GetVMImageFromLocation30Min;72975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:8831a142-6e5b-4acc-abaf-1ad43fbdc46b", - "Expires" : "-1", - "x-ms-request-id" : "d6b90697-1760-4819-8518-e7cf6ecee0a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "19eddfb0-549a-4058-9c9e-f4b4c6dfdb6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "762fd20e-7ef9-4482-b4b8-4fbc62b885da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58ab89ad-c713-435f-9b5d-9ee1bb01c188", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11983,Microsoft.Compute/GetVMImageFromLocation30Min;72983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:58ab89ad-c713-435f-9b5d-9ee1bb01c188", - "Expires" : "-1", - "x-ms-request-id" : "5c3a606f-56bf-44d9-919d-e5a688807455", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "762fd20e-7ef9-4482-b4b8-4fbc62b885da", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8492bb39-8b92-482c-a6f6-9e64ef8c25cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c4af535e-324e-4559-8bb2-c62b2be4a1a3", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11970,Microsoft.Compute/GetVMImageFromLocation30Min;72970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:c4af535e-324e-4559-8bb2-c62b2be4a1a3", - "Expires" : "-1", - "x-ms-request-id" : "356ab237-2b87-4820-84a7-449b2a02b969", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "8492bb39-8b92-482c-a6f6-9e64ef8c25cb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51f6a62c-c568-4ce8-8753-d2d54e7c39e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cdb58c71-dbcf-4e29-8c37-eb42a7761949", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11972,Microsoft.Compute/GetVMImageFromLocation30Min;72972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:cdb58c71-dbcf-4e29-8c37-eb42a7761949", - "Expires" : "-1", - "x-ms-request-id" : "2492cc7e-8b6d-46b4-9f9b-2e26abd92935", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "51f6a62c-c568-4ce8-8753-d2d54e7c39e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a0aeb17-1439-4c00-9fc3-99532b68a7e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12797bce-4606-412e-81b1-832f10e54bf2", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11969,Microsoft.Compute/GetVMImageFromLocation30Min;72969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:12797bce-4606-412e-81b1-832f10e54bf2", - "Expires" : "-1", - "x-ms-request-id" : "cb4b367f-227a-4f67-81d4-afed8d1f81cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "3a0aeb17-1439-4c00-9fc3-99532b68a7e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bdad0b3e-2367-438a-9d64-59f22244284b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cdaadb47-1e4a-48b7-838b-d502f1204b16", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11973,Microsoft.Compute/GetVMImageFromLocation30Min;72973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:cdaadb47-1e4a-48b7-838b-d502f1204b16", - "Expires" : "-1", - "x-ms-request-id" : "c1bac18b-aac6-442f-a806-2106996198fb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "bdad0b3e-2367-438a-9d64-59f22244284b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202105180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b9662e2-219d-4a1b-913f-6d79f4d2677f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e80567e-f06d-4c50-9762-1073c2d33534", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11978,Microsoft.Compute/GetVMImageFromLocation30Min;72978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:9e80567e-f06d-4c50-9762-1073c2d33534", - "Expires" : "-1", - "x-ms-request-id" : "d5ccf5dc-fac3-4736-94cc-ba07fdea5b91", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202105180\"\r\n}", - "x-ms-client-request-id" : "3b9662e2-219d-4a1b-913f-6d79f4d2677f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c94c46a7-7dea-4a44-baef-5a78b37d17ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f094d9f-24d7-4786-bd88-5506d81a8b32", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11965,Microsoft.Compute/GetVMImageFromLocation30Min;72965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:5f094d9f-24d7-4786-bd88-5506d81a8b32", - "Expires" : "-1", - "x-ms-request-id" : "2d3821aa-a61e-44e3-8ee9-7d21cba2f199", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "c94c46a7-7dea-4a44-baef-5a78b37d17ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47e4cc26-b0e2-4d14-aa5f-0885b43e8241", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84940c9a-4da6-4ba8-8c66-bd9bfcaa2acc", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11968,Microsoft.Compute/GetVMImageFromLocation30Min;72968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:84940c9a-4da6-4ba8-8c66-bd9bfcaa2acc", - "Expires" : "-1", - "x-ms-request-id" : "ab72fda2-4e88-4dc2-80a7-e148bd6101b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "47e4cc26-b0e2-4d14-aa5f-0885b43e8241", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a72af989-28c1-448c-aa7f-c5812c143a99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d25216e-1ed1-4610-839b-8c9ce2c200f9", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11967,Microsoft.Compute/GetVMImageFromLocation30Min;72967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:8d25216e-1ed1-4610-839b-8c9ce2c200f9", - "Expires" : "-1", - "x-ms-request-id" : "11fbf189-b104-4eaf-945c-0f526eb62acb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202204010\"\r\n}", - "x-ms-client-request-id" : "a72af989-28c1-448c-aa7f-c5812c143a99", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18d48c79-2dfc-4335-8124-4750786d0de1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b0519a5-0cb8-4b7c-b0bd-fb9b3a69a8ff", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11980,Microsoft.Compute/GetVMImageFromLocation30Min;72980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:3b0519a5-0cb8-4b7c-b0bd-fb9b3a69a8ff", - "Expires" : "-1", - "x-ms-request-id" : "d2261ee7-625f-4a1a-a5b7-3eaabe9fe4aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "18d48c79-2dfc-4335-8124-4750786d0de1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cef133ad-536a-4ab8-9194-823573496ddb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29486002-9e63-4495-9c13-0c9007d1f56b", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11966,Microsoft.Compute/GetVMImageFromLocation30Min;72966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:29486002-9e63-4495-9c13-0c9007d1f56b", - "Expires" : "-1", - "x-ms-request-id" : "8bd42bbb-951e-47fe-9630-f96dc317a3ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202103160\"\r\n}", - "x-ms-client-request-id" : "cef133ad-536a-4ab8-9194-823573496ddb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "028040f7-2df4-45eb-9b1e-b4937112bb8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c792948b-1ff0-4245-bd3a-69894758acdf", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11964,Microsoft.Compute/GetVMImageFromLocation30Min;72964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:c792948b-1ff0-4245-bd3a-69894758acdf", - "Expires" : "-1", - "x-ms-request-id" : "42e1da9c-d50a-491c-8408-038193d846fb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "028040f7-2df4-45eb-9b1e-b4937112bb8c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202203070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf8d21da-59bc-4104-b387-f9c664291ba3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9eacb6ba-e373-4b75-b93e-0f6682e95ae6", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11962,Microsoft.Compute/GetVMImageFromLocation30Min;72962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:9eacb6ba-e373-4b75-b93e-0f6682e95ae6", - "Expires" : "-1", - "x-ms-request-id" : "4f8c7771-68aa-49f6-9945-2e28ecd25d97", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202203070\"\r\n}", - "x-ms-client-request-id" : "cf8d21da-59bc-4104-b387-f9c664291ba3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a3bfef9-3e1a-4cc4-b115-a21bdea4ddcb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7720313b-3bf5-4c56-85ac-e5b3e73f901e", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11977,Microsoft.Compute/GetVMImageFromLocation30Min;72977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:7720313b-3bf5-4c56-85ac-e5b3e73f901e", - "Expires" : "-1", - "x-ms-request-id" : "a903bcb4-390d-4a2e-b098-61e41344c502", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "3a3bfef9-3e1a-4cc4-b115-a21bdea4ddcb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6da6119f-141f-44dd-9246-93c19ed432e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1aafd1c4-6818-49e5-b454-2c464813d9de", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11971,Microsoft.Compute/GetVMImageFromLocation30Min;72971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:1aafd1c4-6818-49e5-b454-2c464813d9de", - "Expires" : "-1", - "x-ms-request-id" : "69b0a497-9daa-4ff3-8523-795ff5085264", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "6da6119f-141f-44dd-9246-93c19ed432e2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fc6f070-ffa0-4801-9c29-7a8cd47c4208", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7c0095d-9c7f-493a-a17b-5e1eee21a653", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11974,Microsoft.Compute/GetVMImageFromLocation30Min;72974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:e7c0095d-9c7f-493a-a17b-5e1eee21a653", - "Expires" : "-1", - "x-ms-request-id" : "6d9fe22f-b082-45b2-9f5b-95fc97cbe5f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "3fc6f070-ffa0-4801-9c29-7a8cd47c4208", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2945804-322a-49b5-939f-71bc66060430", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff98828d-f440-4dfc-aea5-7f3ff2b4912e", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11961,Microsoft.Compute/GetVMImageFromLocation30Min;72961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:ff98828d-f440-4dfc-aea5-7f3ff2b4912e", - "Expires" : "-1", - "x-ms-request-id" : "4efbb7e1-5156-4a10-8014-3309020ae2dc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "f2945804-322a-49b5-939f-71bc66060430", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d9d4f16-e4bc-455e-875d-b2cd4b3cfe97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "109ccd5d-310f-4678-98c8-c3c13526029b", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11963,Microsoft.Compute/GetVMImageFromLocation30Min;72963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:109ccd5d-310f-4678-98c8-c3c13526029b", - "Expires" : "-1", - "x-ms-request-id" : "a9e5b4cc-c4b0-4adc-9b62-84bc5108d4ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "6d9d4f16-e4bc-455e-875d-b2cd4b3cfe97", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57158d4d-bbd7-4b99-a898-6aa63daff025", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a85feb7-1444-48e0-ab21-d8731b9566f3", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11960,Microsoft.Compute/GetVMImageFromLocation30Min;72960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:6a85feb7-1444-48e0-ab21-d8731b9566f3", - "Expires" : "-1", - "x-ms-request-id" : "74d854bb-782a-4751-8652-a2fc21ec968f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "57158d4d-bbd7-4b99-a898-6aa63daff025", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae99f2d7-f2f7-4b27-b51f-c09f1f432bb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c14ef95-33ee-405e-9014-f33e3171380c", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11959,Microsoft.Compute/GetVMImageFromLocation30Min;72959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:0c14ef95-33ee-405e-9014-f33e3171380c", - "Expires" : "-1", - "x-ms-request-id" : "4ac298ef-dce8-4351-9f6b-b7b4c45351ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "ae99f2d7-f2f7-4b27-b51f-c09f1f432bb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95e3d2e8-7d31-42c5-a50f-283e24340dc3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5641d345-ab9e-44b1-b597-39985f537480", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11957,Microsoft.Compute/GetVMImageFromLocation30Min;72957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:5641d345-ab9e-44b1-b597-39985f537480", - "Expires" : "-1", - "x-ms-request-id" : "089e34aa-553f-41d9-bf81-de174411b02a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "95e3d2e8-7d31-42c5-a50f-283e24340dc3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "adb4badf-1632-4bd6-9ffe-900d67d51670", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7f0b442-785e-4fdb-b58e-c39e7f489a65", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11956,Microsoft.Compute/GetVMImageFromLocation30Min;72956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:e7f0b442-785e-4fdb-b58e-c39e7f489a65", - "Expires" : "-1", - "x-ms-request-id" : "76572f5e-379b-4364-9062-81b540fd9ac0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "adb4badf-1632-4bd6-9ffe-900d67d51670", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34743ecc-9325-4fbe-a99a-6bae86ba6495", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cddf7b9-b8cc-4699-8902-91738f88c585", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11955,Microsoft.Compute/GetVMImageFromLocation30Min;72955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:6cddf7b9-b8cc-4699-8902-91738f88c585", - "Expires" : "-1", - "x-ms-request-id" : "cfdfee6a-a670-4835-8422-de295354f54d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "34743ecc-9325-4fbe-a99a-6bae86ba6495", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d4560fc-d9ff-435c-b9c1-7dab7d63cbc9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b318045-b085-4759-9d74-57be0524716b", - "Date" : "Tue, 24 May 2022 13:01:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11958,Microsoft.Compute/GetVMImageFromLocation30Min;72958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:0b318045-b085-4759-9d74-57be0524716b", - "Expires" : "-1", - "x-ms-request-id" : "36b28547-991e-4da2-9450-52256f059475", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202205110\"\r\n}", - "x-ms-client-request-id" : "9d4560fc-d9ff-435c-b9c1-7dab7d63cbc9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ce08e4b-c862-4877-a111-ca56ac9fdc42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8986fe51-6d8a-409f-93bd-3531fa356d98", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11954,Microsoft.Compute/GetVMImageFromLocation30Min;72954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:8986fe51-6d8a-409f-93bd-3531fa356d98", - "Expires" : "-1", - "x-ms-request-id" : "b6116f05-958d-49fa-8a07-4f1cfc8704a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "6ce08e4b-c862-4877-a111-ca56ac9fdc42", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal/skus/pro-20_04-lts-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95716594-4882-4282-8cbf-34ecbd61feff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1224", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "965a2808-ffea-48e4-9438-5a2ee81d91db", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11953,Microsoft.Compute/GetVMImageFromLocation30Min;72953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:965a2808-ffea-48e4-9438-5a2ee81d91db", - "Expires" : "-1", - "x-ms-request-id" : "9534b753-7c07-48db-bfcf-4c5cbebf30aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal/Skus/pro-20_04-lts-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "95716594-4882-4282-8cbf-34ecbd61feff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b4fe56b-b221-4f7d-9f50-7d0ae84c6567", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "851", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7b8fa67-638a-4b56-816d-0b4abf6ecc03", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9975,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130124Z:a7b8fa67-638a-4b56-816d-0b4abf6ecc03", - "Expires" : "-1", - "x-ms-request-id" : "049f12a6-dab3-4962-8c21-a35f328df853", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "1b4fe56b-b221-4f7d-9f50-7d0ae84c6567", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f94be0d-406e-46bf-8609-acf2d299ff9b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "963", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4305a27e-56c4-4323-971f-7f486dbebcd3", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15910,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130125Z:4305a27e-56c4-4323-971f-7f486dbebcd3", - "Expires" : "-1", - "x-ms-request-id" : "9464366c-cb6a-44db-b6e6-5e5f9ca21ba6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04/Versions/20.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04/Versions/20.04.202205160\"\r\n }\r\n]", - "x-ms-client-request-id" : "1f94be0d-406e-46bf-8609-acf2d299ff9b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04/versions/20.04.202205160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "199291a9-f0e7-42f0-b364-b6ddfba77166", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ddba545-7f8a-4d76-aeaa-e50f0a4ae2bb", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11952,Microsoft.Compute/GetVMImageFromLocation30Min;72952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130125Z:6ddba545-7f8a-4d76-aeaa-e50f0a4ae2bb", - "Expires" : "-1", - "x-ms-request-id" : "86a18582-7513-4d1f-8698-e54d9b3baa7d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04/Versions/20.04.202205160\"\r\n}", - "x-ms-client-request-id" : "199291a9-f0e7-42f0-b364-b6ddfba77166", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04/versions/20.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d45d2355-3bb8-4b92-8df1-9162d7408f75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7468ba3-8366-441f-ae38-e14da785a08f", - "Date" : "Tue, 24 May 2022 13:01:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11951,Microsoft.Compute/GetVMImageFromLocation30Min;72951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130125Z:b7468ba3-8366-441f-ae38-e14da785a08f", - "Expires" : "-1", - "x-ms-request-id" : "635fa40e-1786-4736-8882-81fd8a5a1eec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04/Versions/20.04.202204290\"\r\n}", - "x-ms-client-request-id" : "d45d2355-3bb8-4b92-8df1-9162d7408f75", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1c6f81b-357c-4de0-8992-3aa5e7750739", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0408dea5-15ab-4ecd-b6ae-3392e5929fac", - "Date" : "Tue, 24 May 2022 13:01:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11950,Microsoft.Compute/GetVMImageFromLocation30Min;72950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130125Z:0408dea5-15ab-4ecd-b6ae-3392e5929fac", - "Expires" : "-1", - "x-ms-request-id" : "49f9e485-25f2-485c-9498-b15ec045c3a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "f1c6f81b-357c-4de0-8992-3aa5e7750739", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aeb30369-e40e-4395-8014-81eed1379b53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "978", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3e88888-1afe-4ab3-95ce-fd72f0e78b20", - "Date" : "Tue, 24 May 2022 13:01:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15909,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130125Z:a3e88888-1afe-4ab3-95ce-fd72f0e78b20", - "Expires" : "-1", - "x-ms-request-id" : "036beed4-b622-4fa7-8914-09b460cb3d74", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2/Versions/20.04.202202151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2/Versions/20.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2/Versions/20.04.202205160\"\r\n }\r\n]", - "x-ms-client-request-id" : "aeb30369-e40e-4395-8014-81eed1379b53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a75f9ded-ea18-421c-837b-0720db2e586d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1223", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ac4bd41-42ba-408f-8d15-fef4d8613102", - "Date" : "Tue, 24 May 2022 13:01:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11949,Microsoft.Compute/GetVMImageFromLocation30Min;72949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130126Z:0ac4bd41-42ba-408f-8d15-fef4d8613102", - "Expires" : "-1", - "x-ms-request-id" : "bf1d1a8d-8a11-47c9-ba30-f86f178ad696", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "a75f9ded-ea18-421c-837b-0720db2e586d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04-gen2/versions/20.04.202205160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0fad582-9ece-4cde-82e0-580349f2615f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1223", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "53315cf9-9e0e-4d3c-b48c-fcc4f2c1ea0f", - "Date" : "Tue, 24 May 2022 13:01:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11948,Microsoft.Compute/GetVMImageFromLocation30Min;72948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130126Z:53315cf9-9e0e-4d3c-b48c-fcc4f2c1ea0f", - "Expires" : "-1", - "x-ms-request-id" : "2cd8f26f-5482-421b-89f5-42692a02dc27", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2/Versions/20.04.202205160\"\r\n}", - "x-ms-client-request-id" : "a0fad582-9ece-4cde-82e0-580349f2615f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-focal-fips/skus/pro-fips-20_04-gen2/versions/20.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b57f52d-1f55-446b-a19c-7fc074207e76", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1223", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e5efa3d-683e-4e82-aebc-c445c2737e25", - "Date" : "Tue, 24 May 2022 13:01:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11947,Microsoft.Compute/GetVMImageFromLocation30Min;72947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130126Z:4e5efa3d-683e-4e82-aebc-c445c2737e25", - "Expires" : "-1", - "x-ms-request-id" : "649bba69-5489-4f6f-bb99-1b805251056b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-focal-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-focal-fips/Skus/pro-fips-20_04-gen2/Versions/20.04.202204290\"\r\n}", - "x-ms-client-request-id" : "3b57f52d-1f55-446b-a19c-7fc074207e76", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f2ba8a3-47b3-4e02-b99d-0543f1919fa6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1651", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19d5b973-3d2c-461a-8b83-aa933b9b5f6d", - "Date" : "Tue, 24 May 2022 13:01:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9974,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130126Z:19d5b973-3d2c-461a-8b83-aa933b9b5f6d", - "Expires" : "-1", - "x-ms-request-id" : "d4e5b16e-5420-4ff8-aa08-611a46317f1e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "5f2ba8a3-47b3-4e02-b99d-0543f1919fa6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a26607ac-6cdb-4bad-a541-c093db955346", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "318", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9bf83133-1ae5-41fd-bf3f-4d97d7266f6e", - "Date" : "Tue, 24 May 2022 13:01:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15908,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130126Z:9bf83133-1ae5-41fd-bf3f-4d97d7266f6e", - "Expires" : "-1", - "x-ms-request-id" : "5c71a6df-54fc-4231-952e-21f090bb3c99", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200623\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/16_04/Versions/16.04.20200623\"\r\n }\r\n]", - "x-ms-client-request-id" : "a26607ac-6cdb-4bad-a541-c093db955346", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/16_04/versions/16.04.20200623?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "083d1403-468d-40a0-ab6d-1cbc3a572ed7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "786", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a671c96f-5b24-4bfd-b9bd-62acff784f7d", - "Date" : "Tue, 24 May 2022 13:01:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11946,Microsoft.Compute/GetVMImageFromLocation30Min;72946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130127Z:a671c96f-5b24-4bfd-b9bd-62acff784f7d", - "Expires" : "-1", - "x-ms-request-id" : "1cab66dc-0fe9-40c7-a179-80875aadd106", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200623\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/16_04/Versions/16.04.20200623\"\r\n}", - "x-ms-client-request-id" : "083d1403-468d-40a0-ab6d-1cbc3a572ed7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93dafde9-1ac6-4185-ac71-b270ac579ef2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "323", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "058068b6-b2b9-4a70-8a51-004a1008b6d7", - "Date" : "Tue, 24 May 2022 13:01:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15907,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130127Z:058068b6-b2b9-4a70-8a51-004a1008b6d7", - "Expires" : "-1", - "x-ms-request-id" : "c6cc691f-1ce4-4374-bb98-c261a2363078", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200623\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/16_04-gen2/Versions/16.04.20200623\"\r\n }\r\n]", - "x-ms-client-request-id" : "93dafde9-1ac6-4185-ac71-b270ac579ef2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/16_04-gen2/versions/16.04.20200623?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8082f29-9d88-4506-84b9-89b57e80991f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "784", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "153d30c8-869f-4ae2-addd-d856ac9db5f6", - "Date" : "Tue, 24 May 2022 13:01:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11945,Microsoft.Compute/GetVMImageFromLocation30Min;72945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130127Z:153d30c8-869f-4ae2-addd-d856ac9db5f6", - "Expires" : "-1", - "x-ms-request-id" : "59828f9c-13dd-434e-8d6c-f89684c1b907", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200623\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/16_04-gen2/Versions/16.04.20200623\"\r\n}", - "x-ms-client-request-id" : "d8082f29-9d88-4506-84b9-89b57e80991f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e57b970-ef10-46f9-9663-3e174014e8e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "318", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75e54d27-f278-4288-9504-6ae6f9546262", - "Date" : "Tue, 24 May 2022 13:01:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15906,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130127Z:75e54d27-f278-4288-9504-6ae6f9546262", - "Expires" : "-1", - "x-ms-request-id" : "40c7784b-3166-44d3-a081-fed37ca0ecd4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200724\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/18_04/Versions/18.04.20200724\"\r\n }\r\n]", - "x-ms-client-request-id" : "9e57b970-ef10-46f9-9663-3e174014e8e6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/18_04/versions/18.04.20200724?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34f55554-e350-4db0-9f7f-dd0756b9fe98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "786", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23d3489e-c5ee-4df1-a1c2-f66145f76f37", - "Date" : "Tue, 24 May 2022 13:01:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11944,Microsoft.Compute/GetVMImageFromLocation30Min;72944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130128Z:23d3489e-c5ee-4df1-a1c2-f66145f76f37", - "Expires" : "-1", - "x-ms-request-id" : "6d1490ea-bf28-4b9f-aa09-a68ff5939a9e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200724\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/18_04/Versions/18.04.20200724\"\r\n}", - "x-ms-client-request-id" : "34f55554-e350-4db0-9f7f-dd0756b9fe98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ebba5e3-2780-468c-ad5e-82735a0c4adf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "323", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "997b964d-498e-4d79-a98f-9f4d13dbe23c", - "Date" : "Tue, 24 May 2022 13:01:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15905,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130128Z:997b964d-498e-4d79-a98f-9f4d13dbe23c", - "Expires" : "-1", - "x-ms-request-id" : "c3e030ad-aec0-49be-a2a4-b2cdc81aa275", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200724\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/18_04-gen2/Versions/18.04.20200724\"\r\n }\r\n]", - "x-ms-client-request-id" : "2ebba5e3-2780-468c-ad5e-82735a0c4adf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-hidden-msft-fips/skus/18_04-gen2/versions/18.04.20200724?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "482c5292-3273-4357-b720-427ff2494011", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "784", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ce8453f-be9e-4835-821e-44961d7f9787", - "Date" : "Tue, 24 May 2022 13:01:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11943,Microsoft.Compute/GetVMImageFromLocation30Min;72943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130128Z:1ce8453f-be9e-4835-821e-44961d7f9787", - "Expires" : "-1", - "x-ms-request-id" : "afc7dd36-ec53-458d-aff7-cb5e67d63dd5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20200724\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-hidden-msft-fips/Skus/18_04-gen2/Versions/18.04.20200724\"\r\n}", - "x-ms-client-request-id" : "482c5292-3273-4357-b720-427ff2494011", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5763633-5fe9-489b-842c-5a89552934a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "837", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e96133a-65bd-45ff-85ad-c2fb1260c77e", - "Date" : "Tue, 24 May 2022 13:01:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9973,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130129Z:0e96133a-65bd-45ff-85ad-c2fb1260c77e", - "Expires" : "-1", - "x-ms-request-id" : "c2c9daf4-9749-4b74-af1a-ff04c2007235", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-22_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-22_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "a5763633-5fe9-489b-842c-5a89552934a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus/pro-22_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e80204d1-434d-452e-be00-c55a0b035da8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "631", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "335a2e6c-189b-4c3f-a172-5ec8568ba8fe", - "Date" : "Tue, 24 May 2022 13:01:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15904,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130129Z:335a2e6c-189b-4c3f-a172-5ec8568ba8fe", - "Expires" : "-1", - "x-ms-request-id" : "c9329d33-ec41-470a-8406-98a366dad2da", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts/Versions/22.04.202205060\"\r\n }\r\n]", - "x-ms-client-request-id" : "e80204d1-434d-452e-be00-c55a0b035da8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus/pro-22_04-lts/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b6aedf2-e377-48e4-93b6-6f038c4b8e1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1214", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78fc2518-fc35-49e2-8102-52cd0c99d534", - "Date" : "Tue, 24 May 2022 13:01:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11941,Microsoft.Compute/GetVMImageFromLocation30Min;72941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130129Z:78fc2518-fc35-49e2-8102-52cd0c99d534", - "Expires" : "-1", - "x-ms-request-id" : "b3291439-4786-4c1d-9526-9a90490ac0df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-22_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-jammy\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "2b6aedf2-e377-48e4-93b6-6f038c4b8e1f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus/pro-22_04-lts/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc2eab7c-1127-473c-b78f-c2c634f80b49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1214", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68c44726-63e3-4a58-8cfe-fe9efece22f3", - "Date" : "Tue, 24 May 2022 13:01:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11942,Microsoft.Compute/GetVMImageFromLocation30Min;72942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130129Z:68c44726-63e3-4a58-8cfe-fe9efece22f3", - "Expires" : "-1", - "x-ms-request-id" : "22945459-bcf8-4c66-936b-411c92d46d57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-22_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-jammy\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "bc2eab7c-1127-473c-b78f-c2c634f80b49", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus/pro-22_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f42f4273-a8a2-4ff7-a718-56c9ddb74c29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "641", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e9d6e95-212d-4a00-b091-859a57caeb68", - "Date" : "Tue, 24 May 2022 13:01:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15903,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130129Z:1e9d6e95-212d-4a00-b091-859a57caeb68", - "Expires" : "-1", - "x-ms-request-id" : "ad8044d5-0b3b-41c6-baaa-089e39d859b6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts-gen2/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts-gen2/Versions/22.04.202205060\"\r\n }\r\n]", - "x-ms-client-request-id" : "f42f4273-a8a2-4ff7-a718-56c9ddb74c29", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus/pro-22_04-lts-gen2/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e54ee00-d56f-43d6-9ca7-f9b4677b92cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88d51e0c-b45c-435c-a039-b85dc6545315", - "Date" : "Tue, 24 May 2022 13:01:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11940,Microsoft.Compute/GetVMImageFromLocation30Min;72940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130130Z:88d51e0c-b45c-435c-a039-b85dc6545315", - "Expires" : "-1", - "x-ms-request-id" : "eeeae8d6-2213-46e6-bee9-e3a62fefac95", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-22_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-jammy\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts-gen2/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "9e54ee00-d56f-43d6-9ca7-f9b4677b92cf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-jammy/skus/pro-22_04-lts-gen2/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12e78de6-bd27-4963-8945-661272d13b86", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79767362-84e7-4e92-aadd-4a54fe61be4c", - "Date" : "Tue, 24 May 2022 13:01:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11939,Microsoft.Compute/GetVMImageFromLocation30Min;72939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130130Z:79767362-84e7-4e92-aadd-4a54fe61be4c", - "Expires" : "-1", - "x-ms-request-id" : "e767ed0f-2580-4640-bb7c-8755191ce289", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-22_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-jammy\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-jammy/Skus/pro-22_04-lts-gen2/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "12e78de6-bd27-4963-8945-661272d13b86", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de713887-a623-49d5-b5e5-fb266b9605f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2501", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ba064d7-4ac0-4ead-be63-b7f3307a8d21", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9972,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130130Z:5ba064d7-4ac0-4ead-be63-b7f3307a8d21", - "Expires" : "-1", - "x-ms-request-id" : "e0a93ce2-e219-489b-b69c-f692c6061f43", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "de713887-a623-49d5-b5e5-fb266b9605f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cd72bc7-ae7f-41d7-bf1c-79356e0d5342", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1573", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "714e7094-66e7-4a13-b78c-131b26c7b22e", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15902,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130130Z:714e7094-66e7-4a13-b78c-131b26c7b22e", - "Expires" : "-1", - "x-ms-request-id" : "34ca1d1a-e33d-4941-974e-92dfb97e7980", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202202230\"\r\n }\r\n]", - "x-ms-client-request-id" : "0cd72bc7-ae7f-41d7-bf1c-79356e0d5342", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dda1e2c-8d04-4a62-9e17-7e338bc585f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c8d0c8a-a4e7-4ab8-95cd-9ded75b9d19d", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11938,Microsoft.Compute/GetVMImageFromLocation30Min;72938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:2c8d0c8a-a4e7-4ab8-95cd-9ded75b9d19d", - "Expires" : "-1", - "x-ms-request-id" : "d49608da-4417-45a4-a487-e8bfd0d8d8e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "2dda1e2c-8d04-4a62-9e17-7e338bc585f3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c5d2027-fd68-4213-a3f1-259af266deb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01d3ed69-3339-472d-b055-14f7daf11412", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11937,Microsoft.Compute/GetVMImageFromLocation30Min;72937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:01d3ed69-3339-472d-b055-14f7daf11412", - "Expires" : "-1", - "x-ms-request-id" : "8ca611a7-0b18-4ce2-b723-d72459ca9490", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "8c5d2027-fd68-4213-a3f1-259af266deb9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a4ff5e0-47d4-4624-ac3a-70d033f74dbf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "22bd429a-6698-4f52-b4b7-8528530fecae", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11936,Microsoft.Compute/GetVMImageFromLocation30Min;72936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:22bd429a-6698-4f52-b4b7-8528530fecae", - "Expires" : "-1", - "x-ms-request-id" : "b45b63fa-fed2-4138-9fed-4708dc1a817b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "6a4ff5e0-47d4-4624-ac3a-70d033f74dbf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "710202dd-c3cb-463a-83ad-d6a77104ef2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7069cf70-e80d-4dd6-b4c6-9d4d84b5e669", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11935,Microsoft.Compute/GetVMImageFromLocation30Min;72935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:7069cf70-e80d-4dd6-b4c6-9d4d84b5e669", - "Expires" : "-1", - "x-ms-request-id" : "9a028b57-f14b-4744-9d58-20b992fb9172", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "710202dd-c3cb-463a-83ad-d6a77104ef2e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20149391-3eeb-4f9d-b918-967f3c3f6ecd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fffa17cf-eff7-4481-9ccc-327aa56b70f8", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11934,Microsoft.Compute/GetVMImageFromLocation30Min;72934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:fffa17cf-eff7-4481-9ccc-327aa56b70f8", - "Expires" : "-1", - "x-ms-request-id" : "7aac7976-c63c-4661-9772-3759ff899ff3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "20149391-3eeb-4f9d-b918-967f3c3f6ecd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2bf4d184-3825-4aa1-8a8e-d54af2e129a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1598", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aed9ca91-ef1a-4c9b-b8a7-8c5b1b2606c7", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15901,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:aed9ca91-ef1a-4c9b-b8a7-8c5b1b2606c7", - "Expires" : "-1", - "x-ms-request-id" : "c66fde01-ddf7-4a3b-9572-bbb1be06df13", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n }\r\n]", - "x-ms-client-request-id" : "2bf4d184-3825-4aa1-8a8e-d54af2e129a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9d2121f-3a8f-4e9b-90e8-3317865177fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c04df3f-cd8a-4d47-b340-2354348ebaec", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11933,Microsoft.Compute/GetVMImageFromLocation30Min;72933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:2c04df3f-cd8a-4d47-b340-2354348ebaec", - "Expires" : "-1", - "x-ms-request-id" : "57287d37-2794-4ec2-8f0d-8584d6648bfe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "f9d2121f-3a8f-4e9b-90e8-3317865177fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04-gen2/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81392f52-f5ef-4c02-a594-38c974ad6be6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "072b2841-d16f-4023-a210-e5c43b28fa53", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11930,Microsoft.Compute/GetVMImageFromLocation30Min;72930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:072b2841-d16f-4023-a210-e5c43b28fa53", - "Expires" : "-1", - "x-ms-request-id" : "b200e68a-d2bf-403f-a66f-f76101bfd19b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "81392f52-f5ef-4c02-a594-38c974ad6be6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08217c81-fce3-44c9-baff-bb084b4377bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e1946a4-0eb1-4218-9be6-1316cd143b56", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11931,Microsoft.Compute/GetVMImageFromLocation30Min;72931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:8e1946a4-0eb1-4218-9be6-1316cd143b56", - "Expires" : "-1", - "x-ms-request-id" : "e2bd5eae-c012-4ea3-a1d7-ab28da6281d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "08217c81-fce3-44c9-baff-bb084b4377bc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cc35be1-a513-4018-861d-453b50640006", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "253899bf-aa33-485d-9d55-b425983d7fa6", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11932,Microsoft.Compute/GetVMImageFromLocation30Min;72932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:253899bf-aa33-485d-9d55-b425983d7fa6", - "Expires" : "-1", - "x-ms-request-id" : "9d2a83d8-d316-48ad-b56f-1ae1b6fcbd2f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "3cc35be1-a513-4018-861d-453b50640006", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-16_04-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c703295-436a-4464-9abe-d6161470eb75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5653d98d-6074-49fd-bb80-5ecb56ff904b", - "Date" : "Tue, 24 May 2022 13:01:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11929,Microsoft.Compute/GetVMImageFromLocation30Min;72929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130131Z:5653d98d-6074-49fd-bb80-5ecb56ff904b", - "Expires" : "-1", - "x-ms-request-id" : "d9b40b59-8f57-48c2-b49d-5889fb1b7a23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-16_04-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "7c703295-436a-4464-9abe-d6161470eb75", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fdd54f0-7cd8-421d-b3c6-c322afa05ef5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5655", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e55bdba4-f385-4c14-9636-1de7d636da52", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15900,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:e55bdba4-f385-4c14-9636-1de7d636da52", - "Expires" : "-1", - "x-ms-request-id" : "42f168a1-b496-4782-9f59-71c127c4f35a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202202151\"\r\n }\r\n]", - "x-ms-client-request-id" : "2fdd54f0-7cd8-421d-b3c6-c322afa05ef5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cd6c34d-613d-499e-9d71-ccdec44d1c53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0c434ff-cf22-45c1-bc27-168b9dbe74ce", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11928,Microsoft.Compute/GetVMImageFromLocation30Min;72928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:a0c434ff-cf22-45c1-bc27-168b9dbe74ce", - "Expires" : "-1", - "x-ms-request-id" : "a33131fa-2bbf-47a2-98e0-bc8a1257aa60", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "8cd6c34d-613d-499e-9d71-ccdec44d1c53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcf24993-c0db-47cc-ad1e-081bee20535a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40afaf3c-e851-4617-b696-0d71cf1709da", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11926,Microsoft.Compute/GetVMImageFromLocation30Min;72926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:40afaf3c-e851-4617-b696-0d71cf1709da", - "Expires" : "-1", - "x-ms-request-id" : "1c14090a-13a6-4db9-8267-ef0e1937f036", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "fcf24993-c0db-47cc-ad1e-081bee20535a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5ad0834-3bb0-4404-b548-d44c4c6d7de7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a4f1382-729d-4e77-8712-2fadf24f5540", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11927,Microsoft.Compute/GetVMImageFromLocation30Min;72927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:0a4f1382-729d-4e77-8712-2fadf24f5540", - "Expires" : "-1", - "x-ms-request-id" : "110422b3-ba72-4814-9f91-2e6d58fdf406", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "f5ad0834-3bb0-4404-b548-d44c4c6d7de7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cc0b4b0-4ce2-42c0-b00e-cff166a36d0c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94bcff50-cc30-44d9-ab88-80ef5fb92a8a", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11924,Microsoft.Compute/GetVMImageFromLocation30Min;72924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:94bcff50-cc30-44d9-ab88-80ef5fb92a8a", - "Expires" : "-1", - "x-ms-request-id" : "0b489263-45de-489e-a9de-80c20b29b971", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "8cc0b4b0-4ce2-42c0-b00e-cff166a36d0c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f15f767d-0ddc-4b3c-97f6-efcc516ad166", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6eb920ac-69ca-4e79-aa0b-1584dab296aa", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11925,Microsoft.Compute/GetVMImageFromLocation30Min;72925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:6eb920ac-69ca-4e79-aa0b-1584dab296aa", - "Expires" : "-1", - "x-ms-request-id" : "d0c83a7a-6f45-4b0f-b26d-5ebe4d860fcc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "f15f767d-0ddc-4b3c-97f6-efcc516ad166", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "30547780-779b-441c-b041-0e01f6a7dfe7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23a6d56c-4ac8-4346-8713-b2e22ec970cb", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11922,Microsoft.Compute/GetVMImageFromLocation30Min;72922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:23a6d56c-4ac8-4346-8713-b2e22ec970cb", - "Expires" : "-1", - "x-ms-request-id" : "45ff40a7-f9a3-4d3d-b629-b98adb7372ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "30547780-779b-441c-b041-0e01f6a7dfe7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d0460f3-8733-4a54-8555-128eabbc1111", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d19a369c-fa48-4789-b86e-853cf0d17c3f", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11920,Microsoft.Compute/GetVMImageFromLocation30Min;72920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:d19a369c-fa48-4789-b86e-853cf0d17c3f", - "Expires" : "-1", - "x-ms-request-id" : "ef9ee24d-8f72-4b5b-9030-fd9ab3567b3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "4d0460f3-8733-4a54-8555-128eabbc1111", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "182816ac-fe3f-4215-bc86-40849ce287db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f2bab91-0887-44c4-ab31-76c2a61c324e", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11919,Microsoft.Compute/GetVMImageFromLocation30Min;72919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:6f2bab91-0887-44c4-ab31-76c2a61c324e", - "Expires" : "-1", - "x-ms-request-id" : "75f51fd6-b47a-494d-90aa-63d3991f12f1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "182816ac-fe3f-4215-bc86-40849ce287db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "58b3bc85-d57b-43aa-8acd-6fe064415a35", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78503042-dbe0-42df-8795-05e79abb118a", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11918,Microsoft.Compute/GetVMImageFromLocation30Min;72918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:78503042-dbe0-42df-8795-05e79abb118a", - "Expires" : "-1", - "x-ms-request-id" : "a854c30b-681e-4c8e-b570-b4b577a91179", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "58b3bc85-d57b-43aa-8acd-6fe064415a35", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "457bd696-161c-436e-8139-c17ba0326c58", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5eb2de3e-8fb3-441f-a804-7aa7a443834a", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11917,Microsoft.Compute/GetVMImageFromLocation30Min;72917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:5eb2de3e-8fb3-441f-a804-7aa7a443834a", - "Expires" : "-1", - "x-ms-request-id" : "bf94a406-0ea8-4bd5-b30f-5815d6b8ff6e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "457bd696-161c-436e-8139-c17ba0326c58", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfc0ea52-5d41-447f-8a54-7705bea7e518", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "594bc1a6-f768-4c09-9cc1-85be8e491be0", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11921,Microsoft.Compute/GetVMImageFromLocation30Min;72921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:594bc1a6-f768-4c09-9cc1-85be8e491be0", - "Expires" : "-1", - "x-ms-request-id" : "b680c3b5-baba-4172-bfb9-b8ac06f7f883", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "cfc0ea52-5d41-447f-8a54-7705bea7e518", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cb346d2-b9db-472a-8f07-c4e2bfe243ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cce0db38-397b-4415-b626-4d8d71cef474", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11916,Microsoft.Compute/GetVMImageFromLocation30Min;72916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:cce0db38-397b-4415-b626-4d8d71cef474", - "Expires" : "-1", - "x-ms-request-id" : "aa44a2cc-c62a-4ff8-8294-9b0a4183232c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "8cb346d2-b9db-472a-8f07-c4e2bfe243ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8085cba-c1ea-4447-baa9-ef0530c87d36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37f7034d-ef8a-407f-8826-5938328f1c56", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11923,Microsoft.Compute/GetVMImageFromLocation30Min;72923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:37f7034d-ef8a-407f-8826-5938328f1c56", - "Expires" : "-1", - "x-ms-request-id" : "dec8116b-34a8-4325-bef4-f14a09f73413", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "a8085cba-c1ea-4447-baa9-ef0530c87d36", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbfda799-3312-4c64-8384-52e85c1cc04f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd9769b4-f815-4e1c-945b-573af5670318", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11915,Microsoft.Compute/GetVMImageFromLocation30Min;72915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:cd9769b4-f815-4e1c-945b-573af5670318", - "Expires" : "-1", - "x-ms-request-id" : "deb81d73-d185-4325-a15d-47d593c8152d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "dbfda799-3312-4c64-8384-52e85c1cc04f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50f1c947-57df-46f6-877e-74b0d5a9b263", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "740de5ce-5baa-47bb-9c01-39d77b43f609", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11914,Microsoft.Compute/GetVMImageFromLocation30Min;72914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:740de5ce-5baa-47bb-9c01-39d77b43f609", - "Expires" : "-1", - "x-ms-request-id" : "c3b5bbbd-e9eb-439a-8316-b75d2dcc9e1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "50f1c947-57df-46f6-877e-74b0d5a9b263", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e56b8ee-4318-4b8d-a061-9ee5865d27d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed7e6b27-d97d-4ab8-818d-1288585fb3cf", - "Date" : "Tue, 24 May 2022 13:01:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11913,Microsoft.Compute/GetVMImageFromLocation30Min;72913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:ed7e6b27-d97d-4ab8-818d-1288585fb3cf", - "Expires" : "-1", - "x-ms-request-id" : "d4827a86-26ba-47a4-bb6b-406f57c596f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "5e56b8ee-4318-4b8d-a061-9ee5865d27d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "638268b5-de96-4d01-83db-d2bbd91ff324", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "035fd076-1513-4d7d-813e-8aef61ad3bbd", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11912,Microsoft.Compute/GetVMImageFromLocation30Min;72912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:035fd076-1513-4d7d-813e-8aef61ad3bbd", - "Expires" : "-1", - "x-ms-request-id" : "ed6b768e-575a-4d8b-8357-43def0d2ff9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "638268b5-de96-4d01-83db-d2bbd91ff324", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f01689e-ffc5-47de-a256-3a5d74740462", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e22e7b4-3368-4c59-acb2-3ab22bb925c6", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11911,Microsoft.Compute/GetVMImageFromLocation30Min;72911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130132Z:5e22e7b4-3368-4c59-acb2-3ab22bb925c6", - "Expires" : "-1", - "x-ms-request-id" : "8b3921fc-899b-49a6-b143-ee15aef4f302", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "7f01689e-ffc5-47de-a256-3a5d74740462", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "76914814-4ee7-404a-9399-aa3bf64e42d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5745", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5570dfdf-c5bf-4510-94a3-36cdfd376123", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15899,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:5570dfdf-c5bf-4510-94a3-36cdfd376123", - "Expires" : "-1", - "x-ms-request-id" : "0ccdd682-3674-4618-962f-d76ebb43d74a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n }\r\n]", - "x-ms-client-request-id" : "76914814-4ee7-404a-9399-aa3bf64e42d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202108060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4823fd4b-e8e4-49ef-996c-e198c5f3390b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59c8658b-1299-449a-a031-7bb25ff89abd", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11910,Microsoft.Compute/GetVMImageFromLocation30Min;72910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:59c8658b-1299-449a-a031-7bb25ff89abd", - "Expires" : "-1", - "x-ms-request-id" : "48feb026-ec90-430b-af58-8a92be2190db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202108060\"\r\n}", - "x-ms-client-request-id" : "4823fd4b-e8e4-49ef-996c-e198c5f3390b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202108240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cedf08c0-fd38-460b-b8c8-91f3aba6d326", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6e7d00a-75dc-4bc0-bb72-cc48a807faa5", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11908,Microsoft.Compute/GetVMImageFromLocation30Min;72908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:d6e7d00a-75dc-4bc0-bb72-cc48a807faa5", - "Expires" : "-1", - "x-ms-request-id" : "96fee33a-97f2-4f9c-93fa-c8228637118e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202108240\"\r\n}", - "x-ms-client-request-id" : "cedf08c0-fd38-460b-b8c8-91f3aba6d326", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a00e279b-ac4b-4d7b-8bec-d1feb7b48828", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9045562-3fde-4b23-b74a-da86d37a5dfe", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11907,Microsoft.Compute/GetVMImageFromLocation30Min;72907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:a9045562-3fde-4b23-b74a-da86d37a5dfe", - "Expires" : "-1", - "x-ms-request-id" : "415b8cb9-36cb-4b28-a8d7-50e20c7856bc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "a00e279b-ac4b-4d7b-8bec-d1feb7b48828", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1279782f-101a-4f2a-8d90-8a0384f6bb62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e930288f-27e4-4f43-967e-7222dccd745c", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11905,Microsoft.Compute/GetVMImageFromLocation30Min;72905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:e930288f-27e4-4f43-967e-7222dccd745c", - "Expires" : "-1", - "x-ms-request-id" : "ca1f7402-8e68-4585-97fc-6432d1b958b8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "1279782f-101a-4f2a-8d90-8a0384f6bb62", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202110040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d682b02d-7508-4394-bb21-a5e04f40ff7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "646ade66-0331-41f4-8dea-dd8efa1d3558", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11904,Microsoft.Compute/GetVMImageFromLocation30Min;72904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:646ade66-0331-41f4-8dea-dd8efa1d3558", - "Expires" : "-1", - "x-ms-request-id" : "7ad212f6-bb4e-4ca6-a0f5-258ba085da18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202110040\"\r\n}", - "x-ms-client-request-id" : "d682b02d-7508-4394-bb21-a5e04f40ff7a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202109170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3feb2de4-5958-4903-a092-44f7d7aaed47", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc706887-43ab-4a89-8741-233a361ff4e8", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11902,Microsoft.Compute/GetVMImageFromLocation30Min;72902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:dc706887-43ab-4a89-8741-233a361ff4e8", - "Expires" : "-1", - "x-ms-request-id" : "d74b6247-6db1-45e3-9813-5a825133008f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202109170\"\r\n}", - "x-ms-client-request-id" : "3feb2de4-5958-4903-a092-44f7d7aaed47", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88b5f3f2-6381-48d4-a655-38eb2fba44d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24a0a81d-7be8-41a3-878c-b4780502192d", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11901,Microsoft.Compute/GetVMImageFromLocation30Min;72901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:24a0a81d-7be8-41a3-878c-b4780502192d", - "Expires" : "-1", - "x-ms-request-id" : "2a8af6d7-6e50-470d-ab31-ebe1c761b648", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "88b5f3f2-6381-48d4-a655-38eb2fba44d4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bf27796-ba1c-4680-abde-51f124deb145", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0de3f748-746e-497b-8dd8-0e4852905651", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11909,Microsoft.Compute/GetVMImageFromLocation30Min;72909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:0de3f748-746e-497b-8dd8-0e4852905651", - "Expires" : "-1", - "x-ms-request-id" : "f7bebce2-a0c8-48fa-8c79-a4d6309d0928", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "8bf27796-ba1c-4680-abde-51f124deb145", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "275f4217-8373-4ea1-a8f6-6997e16912f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "90e48818-f55b-4fe2-a5d5-7cfb6f0f14ee", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11900,Microsoft.Compute/GetVMImageFromLocation30Min;72900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:90e48818-f55b-4fe2-a5d5-7cfb6f0f14ee", - "Expires" : "-1", - "x-ms-request-id" : "296c5039-74bb-4ae9-8849-0efb8811b5f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "275f4217-8373-4ea1-a8f6-6997e16912f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202201311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7caa6880-4c0a-41d0-ab72-06cbc2db3bde", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f21f92a3-d411-415f-b608-f17b49fd288a", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11903,Microsoft.Compute/GetVMImageFromLocation30Min;72903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:f21f92a3-d411-415f-b608-f17b49fd288a", - "Expires" : "-1", - "x-ms-request-id" : "2c460759-6a0d-4e84-905d-e5aa004aca44", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201311\"\r\n}", - "x-ms-client-request-id" : "7caa6880-4c0a-41d0-ab72-06cbc2db3bde", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202111020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2b89301-7e78-495b-9e97-6f4dbd62bef0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ee7ae76-744d-4bb7-9ae6-fbf2b0ce1f94", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11898,Microsoft.Compute/GetVMImageFromLocation30Min;72898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:7ee7ae76-744d-4bb7-9ae6-fbf2b0ce1f94", - "Expires" : "-1", - "x-ms-request-id" : "fe82cee8-075d-4bd9-abae-bfa899fa6284", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202111020\"\r\n}", - "x-ms-client-request-id" : "f2b89301-7e78-495b-9e97-6f4dbd62bef0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202202151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "563f1693-b7f3-44ba-b49a-b31f1acb8a5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b400f40-9144-4a16-ba07-c1b40e295e9b", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11897,Microsoft.Compute/GetVMImageFromLocation30Min;72897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:0b400f40-9144-4a16-ba07-c1b40e295e9b", - "Expires" : "-1", - "x-ms-request-id" : "2e62fc9a-f9f6-44cf-8b86-465eec5c5c49", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202202151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202202151\"\r\n}", - "x-ms-client-request-id" : "563f1693-b7f3-44ba-b49a-b31f1acb8a5a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e29cf2d9-3286-40fd-81ae-580e21a8fbce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8eb3d714-4074-49e1-be2b-765351529652", - "Date" : "Tue, 24 May 2022 13:01:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11906,Microsoft.Compute/GetVMImageFromLocation30Min;72906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:8eb3d714-4074-49e1-be2b-765351529652", - "Expires" : "-1", - "x-ms-request-id" : "3a1db806-bdc6-4375-9b59-0c193ab7809c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "e29cf2d9-3286-40fd-81ae-580e21a8fbce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f23c2044-e850-4a21-bd53-eacd70439fff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "142c7cee-7136-47fa-9c7f-fbdb025b5286", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11896,Microsoft.Compute/GetVMImageFromLocation30Min;72896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:142c7cee-7136-47fa-9c7f-fbdb025b5286", - "Expires" : "-1", - "x-ms-request-id" : "eb02fa93-2dab-41c1-b7a6-d6f1af9f15ea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "f23c2044-e850-4a21-bd53-eacd70439fff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202112010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce004206-2786-4e25-add3-eec5016d5687", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d32d979d-9308-49a7-b8ca-43d4c2388636", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11899,Microsoft.Compute/GetVMImageFromLocation30Min;72899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:d32d979d-9308-49a7-b8ca-43d4c2388636", - "Expires" : "-1", - "x-ms-request-id" : "e4d54cc8-f76a-43ee-a64e-afd503f39411", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202112010\"\r\n}", - "x-ms-client-request-id" : "ce004206-2786-4e25-add3-eec5016d5687", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202112060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa431749-e7e5-4df1-8dd1-d27a897a7d12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64c5c45a-185c-4cc3-b9fa-a7f83b296708", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11895,Microsoft.Compute/GetVMImageFromLocation30Min;72895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:64c5c45a-185c-4cc3-b9fa-a7f83b296708", - "Expires" : "-1", - "x-ms-request-id" : "26c3c574-039f-4f33-a001-663b64807302", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202112060\"\r\n}", - "x-ms-client-request-id" : "aa431749-e7e5-4df1-8dd1-d27a897a7d12", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202111120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "836ccc83-1ced-463a-8fa3-b34493da648b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5220dc02-46be-46d3-b63f-dd63f90c0f21", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11893,Microsoft.Compute/GetVMImageFromLocation30Min;72893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:5220dc02-46be-46d3-b63f-dd63f90c0f21", - "Expires" : "-1", - "x-ms-request-id" : "5f1359ee-3c77-428f-b1f0-a67ea34fdbca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202111120\"\r\n}", - "x-ms-client-request-id" : "836ccc83-1ced-463a-8fa3-b34493da648b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-20_04-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aa02b00-f681-403d-a4ba-85f780088cbf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27f0d089-8dcd-41c6-a51d-cc743b9426f3", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11894,Microsoft.Compute/GetVMImageFromLocation30Min;72894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:27f0d089-8dcd-41c6-a51d-cc743b9426f3", - "Expires" : "-1", - "x-ms-request-id" : "9e5b4926-5e8c-406b-917a-1be885965c82", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-20_04-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "6aa02b00-f681-403d-a4ba-85f780088cbf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf9bba7e-074e-4b24-8820-4ad93b0997af", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2236", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3d4057b-a195-487a-b4b5-6f24d44ee515", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15898,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130133Z:d3d4057b-a195-487a-b4b5-6f24d44ee515", - "Expires" : "-1", - "x-ms-request-id" : "77fafe45-eecb-40c1-b833-03478ca431b5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n }\r\n]", - "x-ms-client-request-id" : "cf9bba7e-074e-4b24-8820-4ad93b0997af", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b7c5560-c220-4a97-9d96-e4d80242aa4b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee107867-fe2c-4621-b26b-23829afaf4eb", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11892,Microsoft.Compute/GetVMImageFromLocation30Min;72892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:ee107867-fe2c-4621-b26b-23829afaf4eb", - "Expires" : "-1", - "x-ms-request-id" : "437d03a1-78f6-4ffb-92fa-9fa84566e731", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "5b7c5560-c220-4a97-9d96-e4d80242aa4b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c13d2d6f-f0e6-45a3-b6db-ed3d4f5d1799", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ba13b2b-38fb-4218-817c-2fbc2457e4fc", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11889,Microsoft.Compute/GetVMImageFromLocation30Min;72889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:1ba13b2b-38fb-4218-817c-2fbc2457e4fc", - "Expires" : "-1", - "x-ms-request-id" : "a101f51e-adbc-4553-8e00-fb39c4da9739", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "c13d2d6f-f0e6-45a3-b6db-ed3d4f5d1799", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95f7e8f5-c942-4684-b215-800eccc8d459", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d8b3de9-10a0-4e92-8dca-a9d454dcf051", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11891,Microsoft.Compute/GetVMImageFromLocation30Min;72891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:0d8b3de9-10a0-4e92-8dca-a9d454dcf051", - "Expires" : "-1", - "x-ms-request-id" : "7ff54ff5-093b-4274-9a7d-e1d506613a82", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "95f7e8f5-c942-4684-b215-800eccc8d459", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd888977-ce4b-49e3-a830-388dcff41ae0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1e40439-a5a2-4999-86ce-503ce19216b7", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11887,Microsoft.Compute/GetVMImageFromLocation30Min;72887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:f1e40439-a5a2-4999-86ce-503ce19216b7", - "Expires" : "-1", - "x-ms-request-id" : "03557e1c-7a85-483c-bd64-f91906844e33", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "bd888977-ce4b-49e3-a830-388dcff41ae0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "770234cb-fa88-4d5e-9dae-fcb60a998c60", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7891bfe-42bf-4c65-b6d2-3262fc79865b", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11888,Microsoft.Compute/GetVMImageFromLocation30Min;72888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:f7891bfe-42bf-4c65-b6d2-3262fc79865b", - "Expires" : "-1", - "x-ms-request-id" : "d0387a39-b3a3-4fb4-b969-f765a7d02111", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "770234cb-fa88-4d5e-9dae-fcb60a998c60", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45b6fe28-cc97-41da-aed6-19de94157a21", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bbbfd08-1aa6-4795-b62f-8b4ff581e1c4", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11890,Microsoft.Compute/GetVMImageFromLocation30Min;72890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:3bbbfd08-1aa6-4795-b62f-8b4ff581e1c4", - "Expires" : "-1", - "x-ms-request-id" : "75b533fe-f005-4b10-af32-7b06714145a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "45b6fe28-cc97-41da-aed6-19de94157a21", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04/versions/18.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f074bbca-da89-42cd-99cd-156eaa5e5b22", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ffc5782-a691-447f-91d2-42085f3ff9b5", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11886,Microsoft.Compute/GetVMImageFromLocation30Min;72886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:3ffc5782-a691-447f-91d2-42085f3ff9b5", - "Expires" : "-1", - "x-ms-request-id" : "9fcb73c5-c570-471e-a578-ef798f1cbd95", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04/Versions/18.04.202201070\"\r\n}", - "x-ms-client-request-id" : "f074bbca-da89-42cd-99cd-156eaa5e5b22", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0ecb0ba-e673-4833-b457-a1c34a4ab7b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2271", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "400c986b-3f53-4067-b6da-77e5cc353e59", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15897,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:400c986b-3f53-4067-b6da-77e5cc353e59", - "Expires" : "-1", - "x-ms-request-id" : "8bf14d3e-b30f-4b20-ba1a-6c03190a6183", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202111030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n }\r\n]", - "x-ms-client-request-id" : "c0ecb0ba-e673-4833-b457-a1c34a4ab7b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a39ea3ed-f7b2-4d7b-9196-f813069789d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb28560e-f0b8-4f30-97b6-5069f4ec6065", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11884,Microsoft.Compute/GetVMImageFromLocation30Min;72884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:cb28560e-f0b8-4f30-97b6-5069f4ec6065", - "Expires" : "-1", - "x-ms-request-id" : "4d54e770-3ced-4b3f-af22-458aa2deec0a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "a39ea3ed-f7b2-4d7b-9196-f813069789d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f78e37b-c4b3-4285-88ee-9541e350f076", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de1106fc-2b92-4bd9-89bc-9e830ec99bef", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11885,Microsoft.Compute/GetVMImageFromLocation30Min;72885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:de1106fc-2b92-4bd9-89bc-9e830ec99bef", - "Expires" : "-1", - "x-ms-request-id" : "f06a5524-916b-4f08-8439-375246113466", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202201070\"\r\n}", - "x-ms-client-request-id" : "3f78e37b-c4b3-4285-88ee-9541e350f076", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202111030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c752d71d-bd21-4687-a86a-1e2251cf3844", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2edb7995-4422-4bd0-8c23-f7b4911a48f2", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11883,Microsoft.Compute/GetVMImageFromLocation30Min;72883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:2edb7995-4422-4bd0-8c23-f7b4911a48f2", - "Expires" : "-1", - "x-ms-request-id" : "e4982f9a-1bcf-4667-a488-fe4980f59bd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202111030\"\r\n}", - "x-ms-client-request-id" : "c752d71d-bd21-4687-a86a-1e2251cf3844", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202201170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac3502e1-650a-42cc-a844-b8ad63d26ba4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d9d8605-6942-4a07-85b3-dc34c1d67460", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11881,Microsoft.Compute/GetVMImageFromLocation30Min;72881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:5d9d8605-6942-4a07-85b3-dc34c1d67460", - "Expires" : "-1", - "x-ms-request-id" : "320db284-1ce0-403e-b111-e922ae0e8962", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202201170\"\r\n}", - "x-ms-client-request-id" : "ac3502e1-650a-42cc-a844-b8ad63d26ba4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "960c642a-7bc4-46b0-80a9-919d5dde8bdd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1051", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6d4890d-a058-4e31-869b-ff06c8312fb1", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11882,Microsoft.Compute/GetVMImageFromLocation30Min;72882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:a6d4890d-a058-4e31-869b-ff06c8312fb1", - "Expires" : "-1", - "x-ms-request-id" : "aa243536-7a84-470f-a6b6-7c0b5f54925f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "960c642a-7bc4-46b0-80a9-919d5dde8bdd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62816c60-7ebe-4106-9f4c-10e5346cb080", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1180a585-fc0e-4d72-a5cc-dd100079d460", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11880,Microsoft.Compute/GetVMImageFromLocation30Min;72880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:1180a585-fc0e-4d72-a5cc-dd100079d460", - "Expires" : "-1", - "x-ms-request-id" : "1b568060-4375-4055-8f37-7002592eae63", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202110210\"\r\n}", - "x-ms-client-request-id" : "62816c60-7ebe-4106-9f4c-10e5346cb080", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-microsoft/skus/pro-fips-18_04-gen2/versions/18.04.202108020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b988377b-642d-461a-a4f2-ee618bfb79ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d673bf05-34ef-47ee-b447-ba28343714ec", - "Date" : "Tue, 24 May 2022 13:01:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11879,Microsoft.Compute/GetVMImageFromLocation30Min;72879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130134Z:d673bf05-34ef-47ee-b447-ba28343714ec", - "Expires" : "-1", - "x-ms-request-id" : "55480fe6-4276-4e97-b6ab-21d6a8142e83", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-18_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-microsoft\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-microsoft/Skus/pro-fips-18_04-gen2/Versions/18.04.202108020\"\r\n}", - "x-ms-client-request-id" : "b988377b-642d-461a-a4f2-ee618bfb79ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-minimal-cis-focal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c7d1aa2-6a19-4e75-b54b-ee3054fc31be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "893", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36535e68-580d-43cc-9a25-8323e36f0468", - "Date" : "Tue, 24 May 2022 13:01:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9971,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130135Z:36535e68-580d-43cc-9a25-8323e36f0468", - "Expires" : "-1", - "x-ms-request-id" : "4ed82699-e5d5-407f-aa28-52a6b1652f9e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-cis-minimal-20_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal/Skus/pro-cis-minimal-20_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-cis-minimal-20_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal/Skus/pro-cis-minimal-20_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "2c7d1aa2-6a19-4e75-b54b-ee3054fc31be", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-minimal-cis-focal/skus/pro-cis-minimal-20_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b523529b-2caa-4e96-9a20-abec5d62aa7f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "337", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d696754-fa9c-4018-844a-b9712f562a97", - "Date" : "Tue, 24 May 2022 13:01:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15896,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130135Z:4d696754-fa9c-4018-844a-b9712f562a97", - "Expires" : "-1", - "x-ms-request-id" : "215def6a-0308-43bf-a02c-2df0222a092e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal/Skus/pro-cis-minimal-20_04/Versions/20.04.202203250\"\r\n }\r\n]", - "x-ms-client-request-id" : "b523529b-2caa-4e96-9a20-abec5d62aa7f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-minimal-cis-focal/skus/pro-cis-minimal-20_04/versions/20.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "292518ed-bc07-4006-8c83-6f34ebde9e83", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c22d39f-789a-474a-a68a-0efc09dd3d31", - "Date" : "Tue, 24 May 2022 13:01:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11878,Microsoft.Compute/GetVMImageFromLocation30Min;72878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130135Z:6c22d39f-789a-474a-a68a-0efc09dd3d31", - "Expires" : "-1", - "x-ms-request-id" : "4a2dbc36-fb63-4bd5-a3b1-523e13249764", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-cis-minimal-20_04\",\r\n \"product\": \"0001-com-ubuntu-pro-minimal-cis-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal/Skus/pro-cis-minimal-20_04/Versions/20.04.202203250\"\r\n}", - "x-ms-client-request-id" : "292518ed-bc07-4006-8c83-6f34ebde9e83", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-minimal-cis-focal/skus/pro-cis-minimal-20_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0e09b11-2700-4ab9-8193-87d4366dc7c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "342", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1257bed9-7134-4dcc-8f4f-d7c16453823d", - "Date" : "Tue, 24 May 2022 13:01:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15895,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130136Z:1257bed9-7134-4dcc-8f4f-d7c16453823d", - "Expires" : "-1", - "x-ms-request-id" : "51af1436-858c-49ae-90ff-d7d550504281", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal/Skus/pro-cis-minimal-20_04-gen2/Versions/20.04.202203250\"\r\n }\r\n]", - "x-ms-client-request-id" : "e0e09b11-2700-4ab9-8193-87d4366dc7c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-minimal-cis-focal/skus/pro-cis-minimal-20_04-gen2/versions/20.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "091373c4-3a12-42ae-8aa1-cb6b902236a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "687826cf-bc84-4ac2-b6b9-7fb2e7950b35", - "Date" : "Tue, 24 May 2022 13:01:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11877,Microsoft.Compute/GetVMImageFromLocation30Min;72877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130136Z:687826cf-bc84-4ac2-b6b9-7fb2e7950b35", - "Expires" : "-1", - "x-ms-request-id" : "541abf5f-800e-4600-b28a-43a740652fa8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-cis-minimal-20_04-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-minimal-cis-focal\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-minimal-cis-focal/Skus/pro-cis-minimal-20_04-gen2/Versions/20.04.202203250\"\r\n}", - "x-ms-client-request-id" : "091373c4-3a12-42ae-8aa1-cb6b902236a7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-trusty/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c953afb8-90b2-4141-a9bb-6dbbfa3a7b2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "416", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ea58d31-6a5f-4bcc-abbe-c21a500ad168", - "Date" : "Tue, 24 May 2022 13:01:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9970,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130136Z:7ea58d31-6a5f-4bcc-abbe-c21a500ad168", - "Expires" : "-1", - "x-ms-request-id" : "9501d3be-c7e8-4b9e-a0e4-c09c6f87fc83", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-14_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-trusty/Skus/pro-14_04-lts\"\r\n }\r\n]", - "x-ms-client-request-id" : "c953afb8-90b2-4141-a9bb-6dbbfa3a7b2f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-trusty/skus/pro-14_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7fc5665-5d3c-49f5-9bde-a22e7f754851", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "629", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5578c6a6-8714-4066-96ae-8eae45df1377", - "Date" : "Tue, 24 May 2022 13:01:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15894,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130136Z:5578c6a6-8714-4066-96ae-8eae45df1377", - "Expires" : "-1", - "x-ms-request-id" : "e109f83d-9674-4e87-9b0b-7ba4ae15badd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.20200324\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-trusty/Skus/pro-14_04-lts/Versions/14.04.20200324\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.20200601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-trusty/Skus/pro-14_04-lts/Versions/14.04.20200601\"\r\n }\r\n]", - "x-ms-client-request-id" : "c7fc5665-5d3c-49f5-9bde-a22e7f754851", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-trusty/skus/pro-14_04-lts/versions/14.04.20200601?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d14803fa-31ab-4784-8d71-0c5b438851a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "919", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21942e10-48d4-4864-b8ab-5386ec3df43c", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11876,Microsoft.Compute/GetVMImageFromLocation30Min;72876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130137Z:21942e10-48d4-4864-b8ab-5386ec3df43c", - "Expires" : "-1", - "x-ms-request-id" : "39aa4f35-d1d4-4770-bc55-d080f2510bb0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-14_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-trusty\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.20200601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-trusty/Skus/pro-14_04-lts/Versions/14.04.20200601\"\r\n}", - "x-ms-client-request-id" : "d14803fa-31ab-4784-8d71-0c5b438851a2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-trusty/skus/pro-14_04-lts/versions/14.04.20200324?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6964dd17-b308-4f81-848d-6869f1e4c964", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "919", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf2c7e59-c7b5-4e30-92f7-f832f874c89c", - "Date" : "Tue, 24 May 2022 13:01:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11875,Microsoft.Compute/GetVMImageFromLocation30Min;72875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130137Z:cf2c7e59-c7b5-4e30-92f7-f832f874c89c", - "Expires" : "-1", - "x-ms-request-id" : "c88cc78c-3ca9-4f64-9504-33491767151e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-14_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-trusty\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.20200324\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-trusty/Skus/pro-14_04-lts/Versions/14.04.20200324\"\r\n}", - "x-ms-client-request-id" : "6964dd17-b308-4f81-848d-6869f1e4c964", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50543481-7c12-4452-96e7-a935ec1bd212", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "839", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9d506fc-99e8-4fa5-a782-1cb153fbcffa", - "Date" : "Tue, 24 May 2022 13:01:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9969,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130137Z:f9d506fc-99e8-4fa5-a782-1cb153fbcffa", - "Expires" : "-1", - "x-ms-request-id" : "2c368744-ea53-472a-a341-a98e4aae809a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "50543481-7c12-4452-96e7-a935ec1bd212", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0c4cb43-d472-46ee-bd30-c23ef4e455b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5978", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26f679bf-ed74-49ac-ac55-23ca2254dbe9", - "Date" : "Tue, 24 May 2022 13:01:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15893,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130137Z:26f679bf-ed74-49ac-ac55-23ca2254dbe9", - "Expires" : "-1", - "x-ms-request-id" : "e10d19a4-ddde-4b5b-8665-9176811c8ee9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200319\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200319\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200602\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200729\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200908\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20201014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202101140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202103291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "d0c4cb43-d472-46ee-bd30-c23ef4e455b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202101140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74894ab3-5a81-413b-ab60-b0d3a7a30f75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c689c58-d449-4a0c-bae4-ae90b652fe26", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11873,Microsoft.Compute/GetVMImageFromLocation30Min;72873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:9c689c58-d449-4a0c-bae4-ae90b652fe26", - "Expires" : "-1", - "x-ms-request-id" : "1c43e617-f48b-4001-9b55-67362cc98aa3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202101140\"\r\n}", - "x-ms-client-request-id" : "74894ab3-5a81-413b-ab60-b0d3a7a30f75", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68fb99c7-be2e-44a9-9dac-6f851dbaf100", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a455394-4c91-4558-9d5c-ac60e0106887", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11872,Microsoft.Compute/GetVMImageFromLocation30Min;72872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:5a455394-4c91-4558-9d5c-ac60e0106887", - "Expires" : "-1", - "x-ms-request-id" : "391286ad-0ae4-4b9d-9091-04d75113f07d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "68fb99c7-be2e-44a9-9dac-6f851dbaf100", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ff0ea20-9a42-40d3-819e-7d668239aa58", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97e30fe9-6248-4cd4-917d-72c5ca8179fe", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11871,Microsoft.Compute/GetVMImageFromLocation30Min;72871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:97e30fe9-6248-4cd4-917d-72c5ca8179fe", - "Expires" : "-1", - "x-ms-request-id" : "674a5b4d-cba0-4fd4-b78f-117e7f86f5e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "2ff0ea20-9a42-40d3-819e-7d668239aa58", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "612bd4df-a9a7-4948-824d-65cf54ed1e90", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0d9e0ea-6852-45f5-988e-e3850207c829", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11870,Microsoft.Compute/GetVMImageFromLocation30Min;72870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:d0d9e0ea-6852-45f5-988e-e3850207c829", - "Expires" : "-1", - "x-ms-request-id" : "2f90b062-3907-4efc-821b-7c2300d49480", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "612bd4df-a9a7-4948-824d-65cf54ed1e90", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202103291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "265a9b52-56f4-4b3a-9fd2-3b4864af4a51", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "5f0da524-4f8f-4dc9-b88f-12c04985f690", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11866,Microsoft.Compute/GetVMImageFromLocation30Min;72866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:5f0da524-4f8f-4dc9-b88f-12c04985f690", - "Expires" : "-1", - "x-ms-request-id" : "18198454-2b6e-4cb3-9900-3d00f90c3c78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202103291\"\r\n}", - "x-ms-client-request-id" : "265a9b52-56f4-4b3a-9fd2-3b4864af4a51", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0dc36d78-d428-44d9-a061-b67840480475", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f3c6a43-47f8-4256-be6a-79350726f649", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11867,Microsoft.Compute/GetVMImageFromLocation30Min;72867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:7f3c6a43-47f8-4256-be6a-79350726f649", - "Expires" : "-1", - "x-ms-request-id" : "62540ef4-45ea-49c2-85e3-349bef479b78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202103100\"\r\n}", - "x-ms-client-request-id" : "0dc36d78-d428-44d9-a061-b67840480475", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77375b48-7c0d-4e91-8c9c-8014974d5a34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ace7ef6-3332-4fcf-ab56-cf42fb4fd972", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11868,Microsoft.Compute/GetVMImageFromLocation30Min;72868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:0ace7ef6-3332-4fcf-ab56-cf42fb4fd972", - "Expires" : "-1", - "x-ms-request-id" : "c38849ac-ec5b-411d-9388-df017224f3d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "77375b48-7c0d-4e91-8c9c-8014974d5a34", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27267984-b4f9-4c43-841b-312e12394da1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27ff9798-f5df-4a82-be43-7df4937082ae", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11869,Microsoft.Compute/GetVMImageFromLocation30Min;72869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:27ff9798-f5df-4a82-be43-7df4937082ae", - "Expires" : "-1", - "x-ms-request-id" : "03180952-ada0-4418-95f0-5a2390812293", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "27267984-b4f9-4c43-841b-312e12394da1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.20200319?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a9f6f16-c4bd-4322-abc9-745f04e4f1ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a684ec0-3e91-42e1-8aa1-6bc16f69a0d4", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11874,Microsoft.Compute/GetVMImageFromLocation30Min;72874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:4a684ec0-3e91-42e1-8aa1-6bc16f69a0d4", - "Expires" : "-1", - "x-ms-request-id" : "b24c8e46-5986-4185-9fb6-e8bdcdfdb89a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200319\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200319\"\r\n}", - "x-ms-client-request-id" : "1a9f6f16-c4bd-4322-abc9-745f04e4f1ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.20200908?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "386af08b-f316-4c4c-b5a3-8bb4deccef1e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eef4e6c1-4b13-464b-ba31-c71fab07a547", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11864,Microsoft.Compute/GetVMImageFromLocation30Min;72864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:eef4e6c1-4b13-464b-ba31-c71fab07a547", - "Expires" : "-1", - "x-ms-request-id" : "a538e5ce-6488-428e-a63e-477f3cdb16ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200908\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200908\"\r\n}", - "x-ms-client-request-id" : "386af08b-f316-4c4c-b5a3-8bb4deccef1e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "edf81973-c0d0-4a1b-98f6-160784421966", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de81d664-7278-40ed-84ed-0febc7fe1dc4", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11865,Microsoft.Compute/GetVMImageFromLocation30Min;72865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:de81d664-7278-40ed-84ed-0febc7fe1dc4", - "Expires" : "-1", - "x-ms-request-id" : "2fb6cac8-9045-4eed-9521-af8e821e34a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "edf81973-c0d0-4a1b-98f6-160784421966", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.20201014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a0849e4-a21e-4fa8-b78e-7a543ca1284f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ebd6342-beb6-4443-ae6a-49dd217c298a", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11862,Microsoft.Compute/GetVMImageFromLocation30Min;72862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:9ebd6342-beb6-4443-ae6a-49dd217c298a", - "Expires" : "-1", - "x-ms-request-id" : "4a87b642-201b-41c2-860f-e117810f3d45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20201014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20201014\"\r\n}", - "x-ms-client-request-id" : "0a0849e4-a21e-4fa8-b78e-7a543ca1284f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.20200602?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1527f9f7-ba74-4368-96e6-c3ba36821710", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27ed6a3c-e033-4840-8e93-59cd9bb53a79", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11861,Microsoft.Compute/GetVMImageFromLocation30Min;72861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:27ed6a3c-e033-4840-8e93-59cd9bb53a79", - "Expires" : "-1", - "x-ms-request-id" : "7b190132-ab5b-457f-815b-4e70daae0b9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200602\"\r\n}", - "x-ms-client-request-id" : "1527f9f7-ba74-4368-96e6-c3ba36821710", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d5c95b5-0281-4c6f-8b7a-48ee5a85eef3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d723246-21c8-436a-8233-203161e68816", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11860,Microsoft.Compute/GetVMImageFromLocation30Min;72860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:5d723246-21c8-436a-8233-203161e68816", - "Expires" : "-1", - "x-ms-request-id" : "c163dfd7-e1a3-4a19-abeb-2c670dbaeadc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "3d5c95b5-0281-4c6f-8b7a-48ee5a85eef3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "874db881-084b-433e-a089-a45b3890a9f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "945a8596-c15b-4b52-aa5c-61d6a03a2245", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11859,Microsoft.Compute/GetVMImageFromLocation30Min;72859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:945a8596-c15b-4b52-aa5c-61d6a03a2245", - "Expires" : "-1", - "x-ms-request-id" : "ae7933e4-5e56-4bb5-9040-c5d77eff3882", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "874db881-084b-433e-a089-a45b3890a9f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "481e0abd-2754-4cae-8d75-0518fd57c574", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "c84218bf-71ae-49a7-8519-1ab11826571b", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11863,Microsoft.Compute/GetVMImageFromLocation30Min;72863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:c84218bf-71ae-49a7-8519-1ab11826571b", - "Expires" : "-1", - "x-ms-request-id" : "936aa2a6-81e1-4766-9c75-74eace084c61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "481e0abd-2754-4cae-8d75-0518fd57c574", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35e23890-a8c7-4527-8efa-5adbe04cfed8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b570bfed-9e66-48e7-89c4-fd9bba3b83e3", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11858,Microsoft.Compute/GetVMImageFromLocation30Min;72858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:b570bfed-9e66-48e7-89c4-fd9bba3b83e3", - "Expires" : "-1", - "x-ms-request-id" : "5b05e6bb-08cc-442b-967e-ff75e00377f6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "35e23890-a8c7-4527-8efa-5adbe04cfed8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.20200729?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c9a1f2f-87b9-495e-9ad1-8697bba76946", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1209", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82c709c7-2866-40a7-9cb8-1a9d22ce1794", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11857,Microsoft.Compute/GetVMImageFromLocation30Min;72857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:82c709c7-2866-40a7-9cb8-1a9d22ce1794", - "Expires" : "-1", - "x-ms-request-id" : "13e2722a-c7be-43e0-b2f0-c3446981f281", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200729\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.20200729\"\r\n}", - "x-ms-client-request-id" : "7c9a1f2f-87b9-495e-9ad1-8697bba76946", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts/versions/16.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "99ce2d39-5a5f-460b-8605-1a97f633bbb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "936acec3-928a-454b-bb75-84e3a62b0c63", - "Date" : "Tue, 24 May 2022 13:01:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11856,Microsoft.Compute/GetVMImageFromLocation30Min;72856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:936acec3-928a-454b-bb75-84e3a62b0c63", - "Expires" : "-1", - "x-ms-request-id" : "21a01dc7-6185-41c2-aa44-59d29349667e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts/Versions/16.04.202101120\"\r\n}", - "x-ms-client-request-id" : "99ce2d39-5a5f-460b-8605-1a97f633bbb9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60e1d670-9cdd-4240-be44-dd50259a2cd1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3523", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "595fafd7-d026-4ff4-996d-1817bc423b12", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15892,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:595fafd7-d026-4ff4-996d-1817bc423b12", - "Expires" : "-1", - "x-ms-request-id" : "776d87e6-982a-4c23-bfc7-a20e55bc5b63", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202103100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202103291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202202230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202203090\"\r\n }\r\n]", - "x-ms-client-request-id" : "60e1d670-9cdd-4240-be44-dd50259a2cd1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202103100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53f3f710-132f-4fb0-bec7-16ce53487a2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73412fa5-5f79-4892-8945-bc367c24ad60", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11855,Microsoft.Compute/GetVMImageFromLocation30Min;72855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:73412fa5-5f79-4892-8945-bc367c24ad60", - "Expires" : "-1", - "x-ms-request-id" : "258bd60a-81c8-4e8f-bb6b-cf04f0ba4565", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202103100\"\r\n}", - "x-ms-client-request-id" : "53f3f710-132f-4fb0-bec7-16ce53487a2b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0dc1b767-a233-43bf-a555-cf11e695780d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7f7c88c-a531-451c-8c07-7d797a68cf21", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11853,Microsoft.Compute/GetVMImageFromLocation30Min;72853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:f7f7c88c-a531-451c-8c07-7d797a68cf21", - "Expires" : "-1", - "x-ms-request-id" : "1d2660b3-819e-4480-9877-cca18efa6d2e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "0dc1b767-a233-43bf-a555-cf11e695780d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bef3c78-100f-436d-b221-cce91b180804", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e70003b-8a6b-4724-aa89-1358c8b549a1", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11852,Microsoft.Compute/GetVMImageFromLocation30Min;72852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:1e70003b-8a6b-4724-aa89-1358c8b549a1", - "Expires" : "-1", - "x-ms-request-id" : "f3cbb4f9-c7c3-4c05-bd35-83e1f9d7eebe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "7bef3c78-100f-436d-b221-cce91b180804", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80471605-b83d-4591-b7a5-c8955a8ae635", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca5a84ca-ba23-4349-b6ee-70c76d36ed86", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11851,Microsoft.Compute/GetVMImageFromLocation30Min;72851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:ca5a84ca-ba23-4349-b6ee-70c76d36ed86", - "Expires" : "-1", - "x-ms-request-id" : "836bcd33-4c89-417f-bea4-a400dca3a5ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "80471605-b83d-4591-b7a5-c8955a8ae635", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f9d7be9-8715-48e1-94bc-6a7a30b6f45e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8de58cd6-ed67-4b38-b099-5ad3691c0f01", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11854,Microsoft.Compute/GetVMImageFromLocation30Min;72854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:8de58cd6-ed67-4b38-b099-5ad3691c0f01", - "Expires" : "-1", - "x-ms-request-id" : "39794865-6715-494c-8a42-17fa6e937b5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "5f9d7be9-8715-48e1-94bc-6a7a30b6f45e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2abbef21-c168-495c-a074-870e288d7baa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26f0914b-e866-45bc-aa1d-fdff564dcf94", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11850,Microsoft.Compute/GetVMImageFromLocation30Min;72850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:26f0914b-e866-45bc-aa1d-fdff564dcf94", - "Expires" : "-1", - "x-ms-request-id" : "533555b0-4a8c-457d-b3db-d5b272585406", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "2abbef21-c168-495c-a074-870e288d7baa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2027519-6e74-464d-ac60-687dc906cc97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32726d26-d050-4cbf-9ddc-2d4b6fa85142", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11848,Microsoft.Compute/GetVMImageFromLocation30Min;72848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:32726d26-d050-4cbf-9ddc-2d4b6fa85142", - "Expires" : "-1", - "x-ms-request-id" : "b1d56063-6954-43f8-b7bd-404db68eeeba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202203090\"\r\n}", - "x-ms-client-request-id" : "a2027519-6e74-464d-ac60-687dc906cc97", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c3da1af-28da-4bc0-b96d-97bd95e2f89d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "11f823a1-ab87-4685-b388-0478020403a9", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11849,Microsoft.Compute/GetVMImageFromLocation30Min;72849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:11f823a1-ab87-4685-b388-0478020403a9", - "Expires" : "-1", - "x-ms-request-id" : "091057f2-01d1-4b24-b9ce-7332586f7e1c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "5c3da1af-28da-4bc0-b96d-97bd95e2f89d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd2a2093-206e-4a37-bebb-df6824af4525", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7ba8d1b-2436-4cda-b3bf-2976a11d25ba", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11845,Microsoft.Compute/GetVMImageFromLocation30Min;72845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:d7ba8d1b-2436-4cda-b3bf-2976a11d25ba", - "Expires" : "-1", - "x-ms-request-id" : "8d45a920-50cc-4b25-8f24-e70cf7b7bf5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "bd2a2093-206e-4a37-bebb-df6824af4525", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202103291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb8149c9-ed3f-42c9-ba04-7ba8f1e13621", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1226", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96ba0028-2977-457e-bbdf-4a7e3715d00c", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11847,Microsoft.Compute/GetVMImageFromLocation30Min;72847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:96ba0028-2977-457e-bbdf-4a7e3715d00c", - "Expires" : "-1", - "x-ms-request-id" : "94a4930b-0847-4026-879c-1af5dd9895b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202103291\"\r\n}", - "x-ms-client-request-id" : "eb8149c9-ed3f-42c9-ba04-7ba8f1e13621", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial/skus/pro-16_04-lts-gen2/versions/16.04.202202230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d286b11-9ca1-481f-9674-644b605fbd46", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1213", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5838da5c-7ff8-4174-a3e0-88ccee0428d0", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11846,Microsoft.Compute/GetVMImageFromLocation30Min;72846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130138Z:5838da5c-7ff8-4174-a3e0-88ccee0428d0", - "Expires" : "-1", - "x-ms-request-id" : "0fcacc00-0bc4-41cf-9faa-f17e9b55a859", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-16_04-lts-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial/Skus/pro-16_04-lts-gen2/Versions/16.04.202202230\"\r\n}", - "x-ms-client-request-id" : "5d286b11-9ca1-481f-9674-644b605fbd46", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b5ddfe8-8dd9-466e-ae7d-959f334ff46b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "885", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3728cf9-71b0-44ed-9260-187224ce61ee", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9968,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:e3728cf9-71b0-44ed-9260-187224ce61ee", - "Expires" : "-1", - "x-ms-request-id" : "356e23fd-7d8c-4fe3-ab6e-3779683028f8", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "7b5ddfe8-8dd9-466e-ae7d-959f334ff46b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84e493a0-17ab-4e9d-b49c-770bfbfa3434", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2960", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf99507b-e96a-4f2f-93b0-1ea06ed9b98d", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15891,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:bf99507b-e96a-4f2f-93b0-1ea06ed9b98d", - "Expires" : "-1", - "x-ms-request-id" : "fac63674-0a11-465d-bf76-75c1160e5b81", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.20200311\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200623\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.20200623\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202010200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202104301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202204060\"\r\n }\r\n]", - "x-ms-client-request-id" : "84e493a0-17ab-4e9d-b49c-770bfbfa3434", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.20200623?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecea88ce-bb6e-46d7-b5ca-a33f4b2d77c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0e0a149-11c5-4e28-837b-b39be212d926", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11844,Microsoft.Compute/GetVMImageFromLocation30Min;72844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:a0e0a149-11c5-4e28-837b-b39be212d926", - "Expires" : "-1", - "x-ms-request-id" : "8da27e47-68de-4631-beb9-2f9bfc0e7d7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200623\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.20200623\"\r\n}", - "x-ms-client-request-id" : "ecea88ce-bb6e-46d7-b5ca-a33f4b2d77c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202104301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad6b1998-4d0f-404c-9668-984ff76c21cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e302e554-8b9b-45e5-afad-9cc23bee3958", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11843,Microsoft.Compute/GetVMImageFromLocation30Min;72843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:e302e554-8b9b-45e5-afad-9cc23bee3958", - "Expires" : "-1", - "x-ms-request-id" : "5d364321-7315-41cb-9c21-d252a98bd698", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202104301\"\r\n}", - "x-ms-client-request-id" : "ad6b1998-4d0f-404c-9668-984ff76c21cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4158d401-428b-4612-9936-89c9d8f5acf0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2945060-ca98-445f-8aaf-4e5fb5d45a25", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11842,Microsoft.Compute/GetVMImageFromLocation30Min;72842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:a2945060-ca98-445f-8aaf-4e5fb5d45a25", - "Expires" : "-1", - "x-ms-request-id" : "2e25757b-5c84-4264-91a2-b9410fa31947", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "4158d401-428b-4612-9936-89c9d8f5acf0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202010200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "542d8487-9529-4798-bacd-ae189afa5a48", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5c8e6ed-a6a5-4bc1-aec9-335090fe47eb", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11841,Microsoft.Compute/GetVMImageFromLocation30Min;72841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:e5c8e6ed-a6a5-4bc1-aec9-335090fe47eb", - "Expires" : "-1", - "x-ms-request-id" : "0441553c-6bc9-4a3b-b58a-143fe4459e76", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202010200\"\r\n}", - "x-ms-client-request-id" : "542d8487-9529-4798-bacd-ae189afa5a48", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b54fe97-620c-4873-affa-fcf48fb214ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0e32d73-de28-47c7-8cc2-f36dc0bffcfc", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11840,Microsoft.Compute/GetVMImageFromLocation30Min;72840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:c0e32d73-de28-47c7-8cc2-f36dc0bffcfc", - "Expires" : "-1", - "x-ms-request-id" : "0bed444b-00d3-4e55-914b-9913aa3dad9e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "1b54fe97-620c-4873-affa-fcf48fb214ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202204060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6563f1a8-5657-4389-9c4e-746379ed2219", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba3116ac-0a65-4b62-8fd2-7174bb3e01db", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11839,Microsoft.Compute/GetVMImageFromLocation30Min;72839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:ba3116ac-0a65-4b62-8fd2-7174bb3e01db", - "Expires" : "-1", - "x-ms-request-id" : "09256f1f-d97a-4db8-bc1c-2a4483f4245c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202204060\"\r\n}", - "x-ms-client-request-id" : "6563f1a8-5657-4389-9c4e-746379ed2219", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31678122-6f9a-4d0b-af54-7f1d1971cd31", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "322b217a-88f3-4700-a31a-a03ad85229a0", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11838,Microsoft.Compute/GetVMImageFromLocation30Min;72838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:322b217a-88f3-4700-a31a-a03ad85229a0", - "Expires" : "-1", - "x-ms-request-id" : "ca24b189-e620-4cf1-aaa5-3e916d3da06f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "31678122-6f9a-4d0b-af54-7f1d1971cd31", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77a9ebe3-3f01-4ac3-a0da-d41d788ff930", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1070", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ed17803-57aa-49d1-a72f-30c629630808", - "Date" : "Tue, 24 May 2022 13:01:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11837,Microsoft.Compute/GetVMImageFromLocation30Min;72837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:1ed17803-57aa-49d1-a72f-30c629630808", - "Expires" : "-1", - "x-ms-request-id" : "67ac860e-e198-4263-b803-084d1d7e0c82", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "77a9ebe3-3f01-4ac3-a0da-d41d788ff930", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private/versions/16.04.20200311?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59e09327-9181-4c6b-9fae-806d2235c8f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1068", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "1d80bb2c-faf4-4a04-8ffb-3767b6342dbf", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11836,Microsoft.Compute/GetVMImageFromLocation30Min;72836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130139Z:1d80bb2c-faf4-4a04-8ffb-3767b6342dbf", - "Expires" : "-1", - "x-ms-request-id" : "8ccdd14b-8d84-4cb3-b780-f9450448c198", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.20200311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private/Versions/16.04.20200311\"\r\n}", - "x-ms-client-request-id" : "59e09327-9181-4c6b-9fae-806d2235c8f3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3045ab4c-e989-4276-a640-976b7f640dae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2007", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea9f6f60-5e48-42ec-857b-7c8b81ce6cc6", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15890,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:ea9f6f60-5e48-42ec-857b-7c8b81ce6cc6", - "Expires" : "-1", - "x-ms-request-id" : "cb5344e2-b6f5-4d2b-924d-51826ed55ae7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202104301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202202110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202204060\"\r\n }\r\n]", - "x-ms-client-request-id" : "3045ab4c-e989-4276-a640-976b7f640dae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d2c8363-fb8b-461f-8fc4-60205f67c7b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1085", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c29d4080-0154-4f06-b8b4-9689306d7f78", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11833,Microsoft.Compute/GetVMImageFromLocation30Min;72833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:c29d4080-0154-4f06-b8b4-9689306d7f78", - "Expires" : "-1", - "x-ms-request-id" : "e37bb859-e22f-4732-acb5-7988b38e91fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "8d2c8363-fb8b-461f-8fc4-60205f67c7b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d16b5ba-0ec6-4aa8-8894-b3f7d58b6ded", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1085", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66a15fe6-1147-44b0-aa0d-7ad9d1cd3902", - "Date" : "Tue, 24 May 2022 13:01:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11834,Microsoft.Compute/GetVMImageFromLocation30Min;72834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:66a15fe6-1147-44b0-aa0d-7ad9d1cd3902", - "Expires" : "-1", - "x-ms-request-id" : "68517f62-ce6b-4e8a-9cb7-cb165277ebb7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "1d16b5ba-0ec6-4aa8-8894-b3f7d58b6ded", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions/16.04.202104301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a13f5eb-739b-432d-98de-adc8a1309169", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1085", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "872c729a-6f4f-4e17-9a4c-60bf33d16068", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11835,Microsoft.Compute/GetVMImageFromLocation30Min;72835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:872c729a-6f4f-4e17-9a4c-60bf33d16068", - "Expires" : "-1", - "x-ms-request-id" : "183b4734-556d-435c-b654-76a004827758", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202104301\"\r\n}", - "x-ms-client-request-id" : "8a13f5eb-739b-432d-98de-adc8a1309169", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98ae1f74-13ba-4294-bb07-7a2c53ea862a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1085", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a41dad2-2cb4-4ebd-8b5b-6b61e6a9290d", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11831,Microsoft.Compute/GetVMImageFromLocation30Min;72831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:5a41dad2-2cb4-4ebd-8b5b-6b61e6a9290d", - "Expires" : "-1", - "x-ms-request-id" : "b289c75b-dd7e-4806-8c37-217e57434dc5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "98ae1f74-13ba-4294-bb07-7a2c53ea862a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions/16.04.202204060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48a177eb-2d0e-4ef2-8116-df94e8459874", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3f4d7cf2-e598-4fcf-983a-319a160f9d43", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11832,Microsoft.Compute/GetVMImageFromLocation30Min;72832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:3f4d7cf2-e598-4fcf-983a-319a160f9d43", - "Expires" : "-1", - "x-ms-request-id" : "0974884e-3aee-4116-ace5-b8c31d7b8840", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202204060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202204060\"\r\n}", - "x-ms-client-request-id" : "48a177eb-2d0e-4ef2-8116-df94e8459874", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-pro-xenial-fips/skus/pro-fips-16_04-private-gen2/versions/16.04.202202110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "baac53ef-5e43-48dd-87f4-c029a34e6a68", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ea381a8-5d92-4e4f-b331-752cdcb80ccd", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11830,Microsoft.Compute/GetVMImageFromLocation30Min;72830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:8ea381a8-5d92-4e4f-b331-752cdcb80ccd", - "Expires" : "-1", - "x-ms-request-id" : "da919bda-ad9b-4ed2-bae8-e6aaf291a5c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"canonical\",\r\n \"name\": \"pro-fips-16_04-private-gen2\",\r\n \"product\": \"0001-com-ubuntu-pro-xenial-fips\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202202110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-pro-xenial-fips/Skus/pro-fips-16_04-private-gen2/Versions/16.04.202202110\"\r\n}", - "x-ms-client-request-id" : "baac53ef-5e43-48dd-87f4-c029a34e6a68", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-arm-preview-focal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ecc0029-6e3e-49df-97a2-834bfedf87c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "422", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ee9eeee-ceea-49b3-9099-b77b33cdd33b", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9967,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130140Z:6ee9eeee-ceea-49b3-9099-b77b33cdd33b", - "Expires" : "-1", - "x-ms-request-id" : "fcf56514-8fde-4b68-9542-160d1a1cd8cf", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts\"\r\n }\r\n]", - "x-ms-client-request-id" : "5ecc0029-6e3e-49df-97a2-834bfedf87c4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-arm-preview-focal/skus/20_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e5c82ae-a9c6-4672-afd9-889f75091529", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "974", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33e12181-90bf-47d6-aaa2-52fe3340e530", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15889,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130141Z:33e12181-90bf-47d6-aaa2-52fe3340e530", - "Expires" : "-1", - "x-ms-request-id" : "e97d41a4-f2aa-4586-b091-7ae051130283", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20220322\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts/Versions/20.04.20220322\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20220331\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts/Versions/20.04.20220331\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts/Versions/20.04.202205090\"\r\n }\r\n]", - "x-ms-client-request-id" : "5e5c82ae-a9c6-4672-afd9-889f75091529", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-arm-preview-focal/skus/20_04-lts/versions/20.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3420ff0d-2f30-45ac-a5f0-6c20622a4930", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39eb3178-79b2-4a54-8793-9b01bc61b7b6", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11829,Microsoft.Compute/GetVMImageFromLocation30Min;72829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130141Z:39eb3178-79b2-4a54-8793-9b01bc61b7b6", - "Expires" : "-1", - "x-ms-request-id" : "12b7697b-fe01-4098-9510-4aa17ee91dc5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts/Versions/20.04.202205090\"\r\n}", - "x-ms-client-request-id" : "3420ff0d-2f30-45ac-a5f0-6c20622a4930", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-arm-preview-focal/skus/20_04-lts/versions/20.04.20220322?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9b060af-2625-43a2-9188-fceefff7800f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bea6a743-f1f4-4432-a25d-794770239916", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11828,Microsoft.Compute/GetVMImageFromLocation30Min;72828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130141Z:bea6a743-f1f4-4432-a25d-794770239916", - "Expires" : "-1", - "x-ms-request-id" : "12ae62ef-008c-4960-90c3-d41d307d5c61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20220322\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts/Versions/20.04.20220322\"\r\n}", - "x-ms-client-request-id" : "c9b060af-2625-43a2-9188-fceefff7800f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-arm-preview-focal/skus/20_04-lts/versions/20.04.20220331?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a8e4ea5-e119-4628-ae91-28d09c404d47", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2f39fa5-283a-43d3-87db-70a689447063", - "Date" : "Tue, 24 May 2022 13:01:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11827,Microsoft.Compute/GetVMImageFromLocation30Min;72827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130141Z:b2f39fa5-283a-43d3-87db-70a689447063", - "Expires" : "-1", - "x-ms-request-id" : "d737757c-193e-469f-bb09-456ee26569d3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.20220331\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-arm-preview-focal/Skus/20_04-lts/Versions/20.04.20220331\"\r\n}", - "x-ms-client-request-id" : "1a8e4ea5-e119-4628-ae91-28d09c404d47", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24e2b1e1-945c-41fd-8cd7-33ecc49dc0bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "809", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a7b80c4-98a2-4ffb-956d-9abe672474d5", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9966,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130141Z:3a7b80c4-98a2-4ffb-956d-9abe672474d5", - "Expires" : "-1", - "x-ms-request-id" : "121e2358-c466-40b6-987f-b3ee44abfa80", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19_10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19_10-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "24e2b1e1-945c-41fd-8cd7-33ecc49dc0bc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc0a3666-1398-4fce-b075-1a2264372a64", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3699", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9dc70140-df96-45b8-853f-6d78570039a7", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15888,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130141Z:9dc70140-df96-45b8-853f-6d78570039a7", - "Expires" : "-1", - "x-ms-request-id" : "3599db83-76f9-4d6c-b031-b4a6f9d3b6b6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201910170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201910170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201911080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202001230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202001310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202002070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202002070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202003310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202005080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202005270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202006100\"\r\n }\r\n]", - "x-ms-client-request-id" : "bc0a3666-1398-4fce-b075-1a2264372a64", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.201910170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93bc3d76-baf6-4d3a-9c54-10b825d5a0d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5dab1905-03cc-4d81-aff0-4ce286657304", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11826,Microsoft.Compute/GetVMImageFromLocation30Min;72826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:5dab1905-03cc-4d81-aff0-4ce286657304", - "Expires" : "-1", - "x-ms-request-id" : "d3981a28-340c-46b4-83bf-a8cd92ae514d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201910170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201910170\"\r\n}", - "x-ms-client-request-id" : "93bc3d76-baf6-4d3a-9c54-10b825d5a0d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202001310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4ef3239-f66e-4b37-9447-de5a0e4537c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8076ca47-2300-41f4-987d-1f07555fb78e", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11825,Microsoft.Compute/GetVMImageFromLocation30Min;72825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:8076ca47-2300-41f4-987d-1f07555fb78e", - "Expires" : "-1", - "x-ms-request-id" : "35ad5636-5f57-4263-8e0c-9255d2718cdc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202001310\"\r\n}", - "x-ms-client-request-id" : "b4ef3239-f66e-4b37-9447-de5a0e4537c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202003310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f7293d5-55ee-4c77-b159-f0e4ae55f0f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba0ec9e3-3133-43a8-a68d-4c5e7a617426", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11823,Microsoft.Compute/GetVMImageFromLocation30Min;72823", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:ba0ec9e3-3133-43a8-a68d-4c5e7a617426", - "Expires" : "-1", - "x-ms-request-id" : "a3eb6a37-9246-4055-8042-44dbb6fd413f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202003310\"\r\n}", - "x-ms-client-request-id" : "5f7293d5-55ee-4c77-b159-f0e4ae55f0f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2eee2378-6ae9-4150-a832-02409ac744a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51d73f4a-a8a3-4cde-bdc9-7162ce88b74c", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11822,Microsoft.Compute/GetVMImageFromLocation30Min;72822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:51d73f4a-a8a3-4cde-bdc9-7162ce88b74c", - "Expires" : "-1", - "x-ms-request-id" : "7e48d8d5-ecee-43e6-ad6c-f0a6e3fd8f45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202003170\"\r\n}", - "x-ms-client-request-id" : "2eee2378-6ae9-4150-a832-02409ac744a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c69a4f32-defb-4667-957c-1389ddbaea1a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce18c51b-69f8-44fd-8930-3b1899592b57", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11824,Microsoft.Compute/GetVMImageFromLocation30Min;72824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:ce18c51b-69f8-44fd-8930-3b1899592b57", - "Expires" : "-1", - "x-ms-request-id" : "af440203-19dc-4aa1-a025-2c9e612cb3b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201911130\"\r\n}", - "x-ms-client-request-id" : "c69a4f32-defb-4667-957c-1389ddbaea1a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202001230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "268d71a4-d4e7-47aa-96b3-a7b6911711de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cfe37bf-2a66-495f-9aa1-6e5e61e859f1", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11819,Microsoft.Compute/GetVMImageFromLocation30Min;72819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:5cfe37bf-2a66-495f-9aa1-6e5e61e859f1", - "Expires" : "-1", - "x-ms-request-id" : "fc30bd92-a508-4262-ac96-fd80a7467776", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202001230\"\r\n}", - "x-ms-client-request-id" : "268d71a4-d4e7-47aa-96b3-a7b6911711de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.201911080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfe454f1-589f-4abd-8645-d95b5c21949c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01d70bd4-6abf-45ad-91bb-087b048a194f", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11820,Microsoft.Compute/GetVMImageFromLocation30Min;72820", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:01d70bd4-6abf-45ad-91bb-087b048a194f", - "Expires" : "-1", - "x-ms-request-id" : "cd3ff1b8-66d0-4400-96b8-1a929a7ccee4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201911080\"\r\n}", - "x-ms-client-request-id" : "bfe454f1-589f-4abd-8645-d95b5c21949c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202005080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2789ce91-607a-43dc-ae2e-a32a8532beff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b86f479-c64e-459e-bef2-beae5ae8398c", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11821,Microsoft.Compute/GetVMImageFromLocation30Min;72821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:7b86f479-c64e-459e-bef2-beae5ae8398c", - "Expires" : "-1", - "x-ms-request-id" : "1ea79024-4a44-4c0d-93d9-c5e0febc1d7c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202005080\"\r\n}", - "x-ms-client-request-id" : "2789ce91-607a-43dc-ae2e-a32a8532beff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202002070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f553aca-8fd5-43ad-a809-784332314c30", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b77d2f35-b07b-4b1e-96c9-f4cae8ad927e", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11817,Microsoft.Compute/GetVMImageFromLocation30Min;72817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:b77d2f35-b07b-4b1e-96c9-f4cae8ad927e", - "Expires" : "-1", - "x-ms-request-id" : "9b37d896-9080-4163-ba98-fcc13e77b3e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202002070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202002070\"\r\n}", - "x-ms-client-request-id" : "4f553aca-8fd5-43ad-a809-784332314c30", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d937e99-dd78-4aa8-95f7-d3739b48ea3f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a539723f-fa65-4049-9143-2c9ed105b6e3", - "Date" : "Tue, 24 May 2022 13:01:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11816,Microsoft.Compute/GetVMImageFromLocation30Min;72816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:a539723f-fa65-4049-9143-2c9ed105b6e3", - "Expires" : "-1", - "x-ms-request-id" : "f0b3f421-e1a4-4b4f-a90a-9ce4dd79061c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202006100\"\r\n}", - "x-ms-client-request-id" : "8d937e99-dd78-4aa8-95f7-d3739b48ea3f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec98a898-e67c-48b5-9a62-8ad308556c58", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e1cbbbf-bdc7-4d89-a673-6a3458ca5e6f", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11818,Microsoft.Compute/GetVMImageFromLocation30Min;72818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:8e1cbbbf-bdc7-4d89-a673-6a3458ca5e6f", - "Expires" : "-1", - "x-ms-request-id" : "e3405c83-1cf3-409d-a5cf-c854d08354b8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.201912170\"\r\n}", - "x-ms-client-request-id" : "ec98a898-e67c-48b5-9a62-8ad308556c58", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10/versions/19.10.202005270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cdc7312-255c-49ba-8738-3ec693c1682d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58660b35-68a2-4401-b3a4-57bba46ed703", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11815,Microsoft.Compute/GetVMImageFromLocation30Min;72815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:58660b35-68a2-4401-b3a4-57bba46ed703", - "Expires" : "-1", - "x-ms-request-id" : "5bc63217-52ea-4000-b316-af88b1625783", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10/Versions/19.10.202005270\"\r\n}", - "x-ms-client-request-id" : "8cdc7312-255c-49ba-8738-3ec693c1682d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac9bff6f-7c56-4c2f-887c-a5e83bf24a97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3759", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aea4d21a-31ca-41fa-be55-6864e968cb3d", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15887,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:aea4d21a-31ca-41fa-be55-6864e968cb3d", - "Expires" : "-1", - "x-ms-request-id" : "1b180877-bc7e-4472-95e3-6c68296c2b1c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201910170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201910170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201911080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202001230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202001310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202002070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202002070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202003310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202005080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202005270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202006100\"\r\n }\r\n]", - "x-ms-client-request-id" : "ac9bff6f-7c56-4c2f-887c-a5e83bf24a97", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "504169bd-d0e0-4199-8cf5-fcc14f98849b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc3279aa-be52-4887-901a-b83ae55feaa8", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11814,Microsoft.Compute/GetVMImageFromLocation30Min;72814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:bc3279aa-be52-4887-901a-b83ae55feaa8", - "Expires" : "-1", - "x-ms-request-id" : "eaa2d8b2-0e13-479b-8d16-dbb4483c067d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202003170\"\r\n}", - "x-ms-client-request-id" : "504169bd-d0e0-4199-8cf5-fcc14f98849b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202005080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb816775-51ca-4ebb-abd4-21a3c09a58c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "024c0ed6-bf69-4445-ae36-596f1577d657", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11811,Microsoft.Compute/GetVMImageFromLocation30Min;72811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:024c0ed6-bf69-4445-ae36-596f1577d657", - "Expires" : "-1", - "x-ms-request-id" : "e53782b2-2b38-405a-a6cb-629339238b09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202005080\"\r\n}", - "x-ms-client-request-id" : "eb816775-51ca-4ebb-abd4-21a3c09a58c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.201911080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dc2e509-7bfd-4705-9db2-dff82b45c825", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7f7c851-1b22-4e5d-9e2a-73d70f885a23", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11810,Microsoft.Compute/GetVMImageFromLocation30Min;72810", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:c7f7c851-1b22-4e5d-9e2a-73d70f885a23", - "Expires" : "-1", - "x-ms-request-id" : "b9e7c475-86c4-41fc-b597-1db4204f1c01", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201911080\"\r\n}", - "x-ms-client-request-id" : "3dc2e509-7bfd-4705-9db2-dff82b45c825", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202005270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "106a6435-2795-47fd-99e2-1598e9eb5d41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f394db7b-e076-4ba1-8f7b-4438b65e5b50", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11809,Microsoft.Compute/GetVMImageFromLocation30Min;72809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:f394db7b-e076-4ba1-8f7b-4438b65e5b50", - "Expires" : "-1", - "x-ms-request-id" : "6ca32e8f-b85d-419f-b8af-10e1431ff8a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202005270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202005270\"\r\n}", - "x-ms-client-request-id" : "106a6435-2795-47fd-99e2-1598e9eb5d41", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0504f56d-c6a8-450b-97ec-5c1763a810f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "971d5c8d-7a3f-4880-aac0-16341fb9deb7", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11807,Microsoft.Compute/GetVMImageFromLocation30Min;72807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:971d5c8d-7a3f-4880-aac0-16341fb9deb7", - "Expires" : "-1", - "x-ms-request-id" : "9894b26f-3052-46fd-99dd-58df1c698a5e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202006100\"\r\n}", - "x-ms-client-request-id" : "0504f56d-c6a8-450b-97ec-5c1763a810f7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f3fbe89-9db3-4868-871b-6ca94ca399fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "235b718b-9718-41eb-aa1f-89e396b4fdd0", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11808,Microsoft.Compute/GetVMImageFromLocation30Min;72808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:235b718b-9718-41eb-aa1f-89e396b4fdd0", - "Expires" : "-1", - "x-ms-request-id" : "e0a02c0f-1632-4fd1-a654-26fd18bc7772", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201912170\"\r\n}", - "x-ms-client-request-id" : "4f3fbe89-9db3-4868-871b-6ca94ca399fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202002070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "974f924e-9eea-4918-bc38-58be731a094f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b13a1694-3bb0-43e7-99c7-d8ffbca662f9", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11812,Microsoft.Compute/GetVMImageFromLocation30Min;72812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:b13a1694-3bb0-43e7-99c7-d8ffbca662f9", - "Expires" : "-1", - "x-ms-request-id" : "4928c27e-1f99-421b-832f-111913dc6033", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202002070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202002070\"\r\n}", - "x-ms-client-request-id" : "974f924e-9eea-4918-bc38-58be731a094f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202003310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "def3d8f5-b856-4aa4-89cc-abba0e7b277e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe2364ab-a9e3-4020-920c-d2a2661d906c", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11813,Microsoft.Compute/GetVMImageFromLocation30Min;72813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:fe2364ab-a9e3-4020-920c-d2a2661d906c", - "Expires" : "-1", - "x-ms-request-id" : "1085feac-0077-4990-aed0-20e1447c28c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202003310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202003310\"\r\n}", - "x-ms-client-request-id" : "def3d8f5-b856-4aa4-89cc-abba0e7b277e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb4957a6-f754-4c5c-9441-fbba395e8302", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9abb3da-4721-4cf9-a24f-d169723ed7eb", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11805,Microsoft.Compute/GetVMImageFromLocation30Min;72805", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:c9abb3da-4721-4cf9-a24f-d169723ed7eb", - "Expires" : "-1", - "x-ms-request-id" : "33488ede-d7bc-4460-a667-52a52bd5f6b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201911130\"\r\n}", - "x-ms-client-request-id" : "fb4957a6-f754-4c5c-9441-fbba395e8302", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.201910170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8e2d46d-bed6-4fdb-9b1e-484454c17fce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83d0b977-41f0-45ec-9a21-28f575249561", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11806,Microsoft.Compute/GetVMImageFromLocation30Min;72806", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:83d0b977-41f0-45ec-9a21-28f575249561", - "Expires" : "-1", - "x-ms-request-id" : "10aa4039-7efd-4af6-9ea8-5a2ee8c8e229", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201910170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.201910170\"\r\n}", - "x-ms-client-request-id" : "d8e2d46d-bed6-4fdb-9b1e-484454c17fce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202001230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb5b4d1f-9cf9-4e51-914f-be7a1d28feb4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a90c69a8-26aa-44f3-b47b-2d154c372b45", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11804,Microsoft.Compute/GetVMImageFromLocation30Min;72804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130142Z:a90c69a8-26aa-44f3-b47b-2d154c372b45", - "Expires" : "-1", - "x-ms-request-id" : "6fd91b3f-aea3-4c7e-bd5b-79c2787a8e6c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202001230\"\r\n}", - "x-ms-client-request-id" : "cb5b4d1f-9cf9-4e51-914f-be7a1d28feb4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-eoan/skus/19_10-gen2/versions/19.10.202001310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2486390d-c25a-47aa-aed6-449c9ee8086e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "569b3555-77a6-40ff-8137-d0d8dcf3c35f", - "Date" : "Tue, 24 May 2022 13:01:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11803,Microsoft.Compute/GetVMImageFromLocation30Min;72803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:569b3555-77a6-40ff-8137-d0d8dcf3c35f", - "Expires" : "-1", - "x-ms-request-id" : "a550e707-9117-4aaa-aa13-01016862b521", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202001310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-eoan/Skus/19_10-gen2/Versions/19.10.202001310\"\r\n}", - "x-ms-client-request-id" : "2486390d-c25a-47aa-aed6-449c9ee8086e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2d4c370-b3e9-4abe-82b7-8b96f2e00c56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "827", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03bdc3dc-6571-46ae-97d5-aae1d007d9bd", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9965,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:03bdc3dc-6571-46ae-97d5-aae1d007d9bd", - "Expires" : "-1", - "x-ms-request-id" : "fa0d2c02-9eef-45dc-b419-fa78b208ff15", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "b2d4c370-b3e9-4abe-82b7-8b96f2e00c56", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18d4ead5-364e-454a-94a3-5d447bdc5660", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "19409", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2df9c7d-e809-4705-bd3a-0d66c9887485", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15886,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:f2df9c7d-e809-4705-bd3a-0d66c9887485", - "Expires" : "-1", - "x-ms-request-id" : "b091d880-6783-40db-b4a3-f8a20a77b77f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202004230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202004230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202005010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202005130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202005250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202006270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202008140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202008140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202009030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202009070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009211\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202009211\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202010260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202012110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202102010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202102220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202103150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202103230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202104130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202105030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202105130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202106030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202106140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202109070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202109080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202111290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202112020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202204040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202205100\"\r\n }\r\n]", - "x-ms-client-request-id" : "18d4ead5-364e-454a-94a3-5d447bdc5660", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "980d5c79-f3dc-41d5-883a-2caa9e9569ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a659d49d-0fc4-4fb5-9a58-d7852f085b39", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11790,Microsoft.Compute/GetVMImageFromLocation30Min;72790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:a659d49d-0fc4-4fb5-9a58-d7852f085b39", - "Expires" : "-1", - "x-ms-request-id" : "3d36fb49-20f3-4f4c-a360-568a88f34de2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202010140\"\r\n}", - "x-ms-client-request-id" : "980d5c79-f3dc-41d5-883a-2caa9e9569ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202101050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ffc7916-3b61-468c-a84f-336e7e747257", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee643afe-1908-44f7-9fca-5359e58003f4", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11795,Microsoft.Compute/GetVMImageFromLocation30Min;72795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:ee643afe-1908-44f7-9fca-5359e58003f4", - "Expires" : "-1", - "x-ms-request-id" : "975bd648-f835-4875-80e8-94d88cfebe1d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101050\"\r\n}", - "x-ms-client-request-id" : "7ffc7916-3b61-468c-a84f-336e7e747257", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202004230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "30ccb72a-aa9c-476b-9a5b-cd309df98f20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9845951f-3e51-4436-857e-f320c74a0585", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11801,Microsoft.Compute/GetVMImageFromLocation30Min;72801", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:9845951f-3e51-4436-857e-f320c74a0585", - "Expires" : "-1", - "x-ms-request-id" : "16ea2b94-fc12-4400-aaa5-693d481c298c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202004230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202004230\"\r\n}", - "x-ms-client-request-id" : "30ccb72a-aa9c-476b-9a5b-cd309df98f20", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202010260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fe5b7cb-a51c-4219-8d4c-7215bbef5f8f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3a88bc2-6848-42ae-9d19-2c1153be619e", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11793,Microsoft.Compute/GetVMImageFromLocation30Min;72793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:d3a88bc2-6848-42ae-9d19-2c1153be619e", - "Expires" : "-1", - "x-ms-request-id" : "09d72122-b037-4a70-81ca-f64b04752a95", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202010260\"\r\n}", - "x-ms-client-request-id" : "7fe5b7cb-a51c-4219-8d4c-7215bbef5f8f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202009030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6863a26-312f-41b6-949a-ed3b90e0a9c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be4a943d-f38e-4c5c-b549-9115187c7260", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11789,Microsoft.Compute/GetVMImageFromLocation30Min;72789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:be4a943d-f38e-4c5c-b549-9115187c7260", - "Expires" : "-1", - "x-ms-request-id" : "d83c72b0-8335-4b5f-8745-9c8278c91b24", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202009030\"\r\n}", - "x-ms-client-request-id" : "a6863a26-312f-41b6-949a-ed3b90e0a9c6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202005130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4731bc26-7c45-4846-b864-d26ad0e7c4cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f15ff138-5f21-44ec-98f4-0956da89a424", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11802,Microsoft.Compute/GetVMImageFromLocation30Min;72802", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:f15ff138-5f21-44ec-98f4-0956da89a424", - "Expires" : "-1", - "x-ms-request-id" : "3df9bec9-ded0-4bda-bf7b-f59f1aee825d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202005130\"\r\n}", - "x-ms-client-request-id" : "4731bc26-7c45-4846-b864-d26ad0e7c4cf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202009211?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6003cea3-c618-4eae-a89d-0657a7fa0471", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01832953-4201-472f-85c1-2b275013a3cd", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11799,Microsoft.Compute/GetVMImageFromLocation30Min;72799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:01832953-4201-472f-85c1-2b275013a3cd", - "Expires" : "-1", - "x-ms-request-id" : "fcd2c234-a9f9-4d3c-8441-2a13d9f3a886", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009211\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202009211\"\r\n}", - "x-ms-client-request-id" : "6003cea3-c618-4eae-a89d-0657a7fa0471", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202101081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ec1fa32-7819-4341-a3f3-98cc27c51184", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba42d197-1150-4c88-9b31-8d9cfd932560", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11782,Microsoft.Compute/GetVMImageFromLocation30Min;72782", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:ba42d197-1150-4c88-9b31-8d9cfd932560", - "Expires" : "-1", - "x-ms-request-id" : "5314d0d3-0c53-4840-beba-cbbb206a2b0e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101081\"\r\n}", - "x-ms-client-request-id" : "6ec1fa32-7819-4341-a3f3-98cc27c51184", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5ee2c63-379c-4fd5-9cf8-8048cf53fa20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cbf4f47-2c90-48b7-ac66-19e046daf82b", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11788,Microsoft.Compute/GetVMImageFromLocation30Min;72788", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:6cbf4f47-2c90-48b7-ac66-19e046daf82b", - "Expires" : "-1", - "x-ms-request-id" : "a8e26758-fb1c-424e-b4a9-72b75f603618", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007080\"\r\n}", - "x-ms-client-request-id" : "b5ee2c63-379c-4fd5-9cf8-8048cf53fa20", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202105030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce529d8c-9d77-43c1-938d-32e8d38c58c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27835c06-6bca-469d-93f1-96c83af185e0", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11780,Microsoft.Compute/GetVMImageFromLocation30Min;72780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:27835c06-6bca-469d-93f1-96c83af185e0", - "Expires" : "-1", - "x-ms-request-id" : "1c1b15a5-0a51-4a6e-886d-05b527b46f7c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202105030\"\r\n}", - "x-ms-client-request-id" : "ce529d8c-9d77-43c1-938d-32e8d38c58c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202105130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbad5098-1863-4b4a-be34-7c84be458f80", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96afb00c-a73d-432c-8d1b-efeda60f35ee", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11783,Microsoft.Compute/GetVMImageFromLocation30Min;72783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:96afb00c-a73d-432c-8d1b-efeda60f35ee", - "Expires" : "-1", - "x-ms-request-id" : "cf4a842e-613c-4fdc-bb44-e31ed09e94ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202105130\"\r\n}", - "x-ms-client-request-id" : "cbad5098-1863-4b4a-be34-7c84be458f80", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9bf0e9c7-0532-4b17-8809-50d06a4650ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "349e782f-7162-4b6b-932c-4b2dc347f934", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11779,Microsoft.Compute/GetVMImageFromLocation30Min;72779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:349e782f-7162-4b6b-932c-4b2dc347f934", - "Expires" : "-1", - "x-ms-request-id" : "c58f53de-29f5-4d73-8667-f01954c1a726", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "9bf0e9c7-0532-4b17-8809-50d06a4650ed", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "663a3f12-52a7-443c-bd8d-4e72aeaa5023", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4cd23c31-26e6-4fbf-a22d-7be3a49f9931", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11778,Microsoft.Compute/GetVMImageFromLocation30Min;72778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:4cd23c31-26e6-4fbf-a22d-7be3a49f9931", - "Expires" : "-1", - "x-ms-request-id" : "ffb020ad-18dc-42ac-8a30-26bc8a9e5eba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202108250\"\r\n}", - "x-ms-client-request-id" : "663a3f12-52a7-443c-bd8d-4e72aeaa5023", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202009070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37f45d01-05a2-40f6-aad4-134190a4825f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f56d46ba-9857-4d6e-8fbd-2597f0ea76dd", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11792,Microsoft.Compute/GetVMImageFromLocation30Min;72792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:f56d46ba-9857-4d6e-8fbd-2597f0ea76dd", - "Expires" : "-1", - "x-ms-request-id" : "32e81517-3e93-4177-8ceb-5061471c45d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202009070\"\r\n}", - "x-ms-client-request-id" : "37f45d01-05a2-40f6-aad4-134190a4825f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202012110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fc63101-88a5-49d0-86a7-5cf4d0370235", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f6cfcf1-3f93-4bb0-a3de-5594aa8d39e6", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11791,Microsoft.Compute/GetVMImageFromLocation30Min;72791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:4f6cfcf1-3f93-4bb0-a3de-5594aa8d39e6", - "Expires" : "-1", - "x-ms-request-id" : "b4ddfa76-e0f1-48a7-a2be-7188cd1de403", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202012110\"\r\n}", - "x-ms-client-request-id" : "7fc63101-88a5-49d0-86a7-5cf4d0370235", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8da01b2-93de-49b8-aea7-a54d83359c0c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c762af0-de41-49f1-9f88-7570cf3bda15", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11777,Microsoft.Compute/GetVMImageFromLocation30Min;72777", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:9c762af0-de41-49f1-9f88-7570cf3bda15", - "Expires" : "-1", - "x-ms-request-id" : "c9054dbb-16ef-4d35-a200-d43e0f78354c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "c8da01b2-93de-49b8-aea7-a54d83359c0c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202005010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8511bf9d-9ea6-4afe-8a80-15ec01cd4595", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26957602-7fe4-4843-831a-0b52c7d7969f", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11800,Microsoft.Compute/GetVMImageFromLocation30Min;72800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:26957602-7fe4-4843-831a-0b52c7d7969f", - "Expires" : "-1", - "x-ms-request-id" : "18144ede-4824-44c2-a4ea-449f573f610e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202005010\"\r\n}", - "x-ms-client-request-id" : "8511bf9d-9ea6-4afe-8a80-15ec01cd4595", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202008140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a212376-bc02-4760-82f7-31fb9c5e99c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d8d6098-743c-4820-b0f6-0484ba7d4283", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11798,Microsoft.Compute/GetVMImageFromLocation30Min;72798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:5d8d6098-743c-4820-b0f6-0484ba7d4283", - "Expires" : "-1", - "x-ms-request-id" : "0cdfec56-7a1a-4bec-b6d1-a0ba185cfdc7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202008140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202008140\"\r\n}", - "x-ms-client-request-id" : "8a212376-bc02-4760-82f7-31fb9c5e99c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b1e22cc-38b2-4061-8810-54362df3a6c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1642e1c7-6422-4502-a558-2c8999aabd57", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11784,Microsoft.Compute/GetVMImageFromLocation30Min;72784", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:1642e1c7-6422-4502-a558-2c8999aabd57", - "Expires" : "-1", - "x-ms-request-id" : "4d9477cc-617e-4535-b7b4-fca4e29ab315", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "3b1e22cc-38b2-4061-8810-54362df3a6c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ec92421-f9a9-4e90-a167-86353c8c63b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c54970e-70c8-44c0-8b9a-e0000f5bd9f9", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11785,Microsoft.Compute/GetVMImageFromLocation30Min;72785", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:9c54970e-70c8-44c0-8b9a-e0000f5bd9f9", - "Expires" : "-1", - "x-ms-request-id" : "a1ca1780-c17f-4041-acef-8d549f7ecba2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101191\"\r\n}", - "x-ms-client-request-id" : "4ec92421-f9a9-4e90-a167-86353c8c63b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202101290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0fd1fc2-87e1-42ac-adba-bedc125e2746", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7cd52eff-2882-4ebe-82d3-e1e3fee506da", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11787,Microsoft.Compute/GetVMImageFromLocation30Min;72787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:7cd52eff-2882-4ebe-82d3-e1e3fee506da", - "Expires" : "-1", - "x-ms-request-id" : "3e307e86-7093-412a-90fd-fe5b6f425e02", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101290\"\r\n}", - "x-ms-client-request-id" : "e0fd1fc2-87e1-42ac-adba-bedc125e2746", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202103150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bb32462-3e24-469d-91d4-7dc3ba963f58", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2ae71e1-ce9d-433a-9d87-cc68dee5957a", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11786,Microsoft.Compute/GetVMImageFromLocation30Min;72786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:a2ae71e1-ce9d-433a-9d87-cc68dee5957a", - "Expires" : "-1", - "x-ms-request-id" : "8204ecf5-5c1e-4df8-8ad7-a2ab8d404669", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202103150\"\r\n}", - "x-ms-client-request-id" : "5bb32462-3e24-469d-91d4-7dc3ba963f58", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38372797-1f72-438b-a422-3db06437f497", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9963c7be-6722-492e-90fe-e7808e318931", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11776,Microsoft.Compute/GetVMImageFromLocation30Min;72776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:9963c7be-6722-492e-90fe-e7808e318931", - "Expires" : "-1", - "x-ms-request-id" : "40a34435-07fc-41e9-b1a9-a9040e753d77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202101120\"\r\n}", - "x-ms-client-request-id" : "38372797-1f72-438b-a422-3db06437f497", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33419ab8-fd6b-45da-a6b0-1867cfdd5d25", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b282cd94-0205-4af4-a754-ff04a23aebf8", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11772,Microsoft.Compute/GetVMImageFromLocation30Min;72772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:b282cd94-0205-4af4-a754-ff04a23aebf8", - "Expires" : "-1", - "x-ms-request-id" : "3e20c284-12aa-4798-92bd-5c42f1ce967b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202012010\"\r\n}", - "x-ms-client-request-id" : "33419ab8-fd6b-45da-a6b0-1867cfdd5d25", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202007160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c8a998b-3380-4fef-b891-a93336cda75e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec9b289f-29b2-48a3-a9af-edc359109509", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11773,Microsoft.Compute/GetVMImageFromLocation30Min;72773", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:ec9b289f-29b2-48a3-a9af-edc359109509", - "Expires" : "-1", - "x-ms-request-id" : "27642f2a-0991-41b1-ab87-f0687f4e3900", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007160\"\r\n}", - "x-ms-client-request-id" : "6c8a998b-3380-4fef-b891-a93336cda75e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8bebd68-b4cb-473e-879d-0d27f1f05d0f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14dd8c03-6cf2-4ad8-bc93-9d5cf1839b93", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11774,Microsoft.Compute/GetVMImageFromLocation30Min;72774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:14dd8c03-6cf2-4ad8-bc93-9d5cf1839b93", - "Expires" : "-1", - "x-ms-request-id" : "8cd79ff1-545b-471b-8ea6-a824688d31de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007290\"\r\n}", - "x-ms-client-request-id" : "b8bebd68-b4cb-473e-879d-0d27f1f05d0f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0b724f2-2e56-4a5b-8f85-7d4809f3821b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18fa72ba-c986-4489-b9d9-91517baaecdd", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11794,Microsoft.Compute/GetVMImageFromLocation30Min;72794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:18fa72ba-c986-4489-b9d9-91517baaecdd", - "Expires" : "-1", - "x-ms-request-id" : "cc7f9ee6-403d-4110-8d6f-5aea01dfd09b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202011230\"\r\n}", - "x-ms-client-request-id" : "e0b724f2-2e56-4a5b-8f85-7d4809f3821b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202109080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b1c76468-b8cb-4e6e-a23d-5157039fe7d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "267d3162-fc1f-40c2-93a2-beff6fe30772", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11770,Microsoft.Compute/GetVMImageFromLocation30Min;72770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:267d3162-fc1f-40c2-93a2-beff6fe30772", - "Expires" : "-1", - "x-ms-request-id" : "ceb8b88c-d1e3-44cd-9208-5b369a33d02b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202109080\"\r\n}", - "x-ms-client-request-id" : "b1c76468-b8cb-4e6e-a23d-5157039fe7d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202006270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5288c80-cdd9-4f41-b03a-341e4e4629dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48103c1d-5829-43f8-9bd6-8ea42de76c04", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11796,Microsoft.Compute/GetVMImageFromLocation30Min;72796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:48103c1d-5829-43f8-9bd6-8ea42de76c04", - "Expires" : "-1", - "x-ms-request-id" : "c11777dc-d847-4e3e-9bc2-9bb1c97dd32b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202006270\"\r\n}", - "x-ms-client-request-id" : "f5288c80-cdd9-4f41-b03a-341e4e4629dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202102220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3440505-6d74-4373-9a93-340c247e6d19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a8bc876-f5ae-4baf-b633-ba8253231604", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11767,Microsoft.Compute/GetVMImageFromLocation30Min;72767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:6a8bc876-f5ae-4baf-b633-ba8253231604", - "Expires" : "-1", - "x-ms-request-id" : "53b2701c-1481-4b14-a84b-7d8bbf50a157", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202102220\"\r\n}", - "x-ms-client-request-id" : "b3440505-6d74-4373-9a93-340c247e6d19", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4e32822-9929-4b11-9e10-912c6bc435bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c08b85a-5856-4965-a323-96dac70e0696", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11765,Microsoft.Compute/GetVMImageFromLocation30Min;72765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:8c08b85a-5856-4965-a323-96dac70e0696", - "Expires" : "-1", - "x-ms-request-id" : "f95ae238-973f-4ed2-9b6b-027889718881", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202110210\"\r\n}", - "x-ms-client-request-id" : "b4e32822-9929-4b11-9e10-912c6bc435bb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202109070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb78996e-ab33-41c8-b383-2585fa0d6a24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8547e850-24a3-4bf1-a305-9aac669e0e26", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11775,Microsoft.Compute/GetVMImageFromLocation30Min;72775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:8547e850-24a3-4bf1-a305-9aac669e0e26", - "Expires" : "-1", - "x-ms-request-id" : "6ca1213b-ccba-4d92-aa00-eba137b2c148", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202109070\"\r\n}", - "x-ms-client-request-id" : "cb78996e-ab33-41c8-b383-2585fa0d6a24", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8540d3f1-3227-4a25-aa37-0a8b289682e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7c74a05-6d70-4376-9f77-3837927ac8f3", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11764,Microsoft.Compute/GetVMImageFromLocation30Min;72764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:d7c74a05-6d70-4376-9f77-3837927ac8f3", - "Expires" : "-1", - "x-ms-request-id" : "d992f750-fe24-465f-844b-e86e193d1354", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "8540d3f1-3227-4a25-aa37-0a8b289682e7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e3b1d37-faa6-4f01-a732-267b2b5029ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "520f80eb-d369-4d27-86ea-86cafebe86ea", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11769,Microsoft.Compute/GetVMImageFromLocation30Min;72769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:520f80eb-d369-4d27-86ea-86cafebe86ea", - "Expires" : "-1", - "x-ms-request-id" : "5e5125bc-070f-4bde-b5bf-c38dd4b14843", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "5e3b1d37-faa6-4f01-a732-267b2b5029ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202106030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "020b52c8-46c3-43d2-a53e-8d465f2148fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd578d07-0c82-4c6d-b2a0-0a459cb1ccb4", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11771,Microsoft.Compute/GetVMImageFromLocation30Min;72771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:dd578d07-0c82-4c6d-b2a0-0a459cb1ccb4", - "Expires" : "-1", - "x-ms-request-id" : "7f761f9e-337e-49a3-98e8-0b68c92e1327", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202106030\"\r\n}", - "x-ms-client-request-id" : "020b52c8-46c3-43d2-a53e-8d465f2148fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202102010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "696c5b98-123b-4a23-92f1-07e2849fa28d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e692ae7-3224-4085-9295-92f992d376d9", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11763,Microsoft.Compute/GetVMImageFromLocation30Min;72763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:9e692ae7-3224-4085-9295-92f992d376d9", - "Expires" : "-1", - "x-ms-request-id" : "c3d4adb8-38e3-4473-8d22-d46b3f843fbe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202102010\"\r\n}", - "x-ms-client-request-id" : "696c5b98-123b-4a23-92f1-07e2849fa28d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9046778e-332a-489c-8c19-14124a980ad4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c65553e9-161c-4551-b8e6-cc6dfeb126fa", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11768,Microsoft.Compute/GetVMImageFromLocation30Min;72768", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:c65553e9-161c-4551-b8e6-cc6dfeb126fa", - "Expires" : "-1", - "x-ms-request-id" : "15093d8d-f709-4151-94a3-66210edb4fed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202012100\"\r\n}", - "x-ms-client-request-id" : "9046778e-332a-489c-8c19-14124a980ad4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202104130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc5abd16-81b5-4633-bd58-e359900b1c4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "321e0b62-6750-4b23-bbfa-7a453d9671ef", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11781,Microsoft.Compute/GetVMImageFromLocation30Min;72781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130143Z:321e0b62-6750-4b23-bbfa-7a453d9671ef", - "Expires" : "-1", - "x-ms-request-id" : "9c68d2c4-2d0b-4891-b9e8-dbf72b1afe41", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202104130\"\r\n}", - "x-ms-client-request-id" : "bc5abd16-81b5-4633-bd58-e359900b1c4e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ab814a7-de75-4ee2-8817-0bcdc7d1d6c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92833312-5171-495b-b164-de0d9366d3aa", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11797,Microsoft.Compute/GetVMImageFromLocation30Min;72797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:92833312-5171-495b-b164-de0d9366d3aa", - "Expires" : "-1", - "x-ms-request-id" : "2188c31f-2e7d-4506-93d8-9530b3a83cb2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202006100\"\r\n}", - "x-ms-client-request-id" : "0ab814a7-de75-4ee2-8817-0bcdc7d1d6c1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202005250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fa26f80-477a-4b8f-a154-55a686530e7b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39d6309e-6e33-4224-9a74-283c237d0aef", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11766,Microsoft.Compute/GetVMImageFromLocation30Min;72766", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:39d6309e-6e33-4224-9a74-283c237d0aef", - "Expires" : "-1", - "x-ms-request-id" : "e42744dc-3793-4b6c-82d6-c43d3e9861c0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202005250\"\r\n}", - "x-ms-client-request-id" : "3fa26f80-477a-4b8f-a154-55a686530e7b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202007060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fbf8afc-f7c8-449a-9332-8c1d75aae60d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42f5de96-5ee0-4c58-be20-b528d3b113b7", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11762,Microsoft.Compute/GetVMImageFromLocation30Min;72762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:42f5de96-5ee0-4c58-be20-b528d3b113b7", - "Expires" : "-1", - "x-ms-request-id" : "e7250c4f-3846-4b49-a524-777666ec0b41", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202007060\"\r\n}", - "x-ms-client-request-id" : "2fbf8afc-f7c8-449a-9332-8c1d75aae60d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202111290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ab8f957-09b2-4982-8a2e-c348929181ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "16fdc738-2c4c-49a2-88d1-44ebf3932f46", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11761,Microsoft.Compute/GetVMImageFromLocation30Min;72761", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:16fdc738-2c4c-49a2-88d1-44ebf3932f46", - "Expires" : "-1", - "x-ms-request-id" : "ce9dd172-6837-4ac9-ab20-a62b3501aca4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202111290\"\r\n}", - "x-ms-client-request-id" : "6ab8f957-09b2-4982-8a2e-c348929181ca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4eefa8a-9aa2-4fa8-bb87-454fd8a35b19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4cd2e04-9384-42aa-99d7-fd8b07be771f", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11760,Microsoft.Compute/GetVMImageFromLocation30Min;72760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:f4cd2e04-9384-42aa-99d7-fd8b07be771f", - "Expires" : "-1", - "x-ms-request-id" : "7248f431-f229-4ae5-9963-44873ef49cd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "f4eefa8a-9aa2-4fa8-bb87-454fd8a35b19", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72a313b2-cebe-4920-8b7e-49312110a6dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c281a43-fc40-4258-a35b-bf743c97e23f", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11755,Microsoft.Compute/GetVMImageFromLocation30Min;72755", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:8c281a43-fc40-4258-a35b-bf743c97e23f", - "Expires" : "-1", - "x-ms-request-id" : "d51321cb-0a13-421e-9b9a-1b5d303a65d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "72a313b2-cebe-4920-8b7e-49312110a6dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202112020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "462b82ab-da31-474a-ba74-10a2372d8d4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7244e025-920b-48f0-8c25-be245e14b67f", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11759,Microsoft.Compute/GetVMImageFromLocation30Min;72759", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:7244e025-920b-48f0-8c25-be245e14b67f", - "Expires" : "-1", - "x-ms-request-id" : "30f65cfd-3981-4942-8cb2-5acab1223bc9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202112020\"\r\n}", - "x-ms-client-request-id" : "462b82ab-da31-474a-ba74-10a2372d8d4a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202201260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45e8d126-d5d3-4e3b-a9da-e20f404dc8ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7c61954-ef9e-4d36-a1e3-61ee4991be40", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11757,Microsoft.Compute/GetVMImageFromLocation30Min;72757", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:c7c61954-ef9e-4d36-a1e3-61ee4991be40", - "Expires" : "-1", - "x-ms-request-id" : "8be6c735-d0e5-4d70-a43d-0b5c42063a2d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201260\"\r\n}", - "x-ms-client-request-id" : "45e8d126-d5d3-4e3b-a9da-e20f404dc8ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0eadfb91-4e80-4d98-bbbe-072c65489b88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "377d2880-a866-4a57-8327-69ee53f84be2", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11758,Microsoft.Compute/GetVMImageFromLocation30Min;72758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:377d2880-a866-4a57-8327-69ee53f84be2", - "Expires" : "-1", - "x-ms-request-id" : "e6bae89c-8af9-47d4-ac4e-a508f15b7628", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "0eadfb91-4e80-4d98-bbbe-072c65489b88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85a508ab-463e-4271-982a-d80454f52f49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "246ed8a4-bdd2-43aa-9c5c-36f8c1fd662a", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11756,Microsoft.Compute/GetVMImageFromLocation30Min;72756", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:246ed8a4-bdd2-43aa-9c5c-36f8c1fd662a", - "Expires" : "-1", - "x-ms-request-id" : "57ee672d-2f0f-4f95-af3b-f5a1377de3d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203020\"\r\n}", - "x-ms-client-request-id" : "85a508ab-463e-4271-982a-d80454f52f49", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04bdaf40-aa2f-48f4-adc1-d0b250988e43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1342f0e-4614-45de-a71f-a51ec84424b9", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11754,Microsoft.Compute/GetVMImageFromLocation30Min;72754", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:a1342f0e-4614-45de-a71f-a51ec84424b9", - "Expires" : "-1", - "x-ms-request-id" : "8c61c659-057d-4598-9f1d-5f83d9bead30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "04bdaf40-aa2f-48f4-adc1-d0b250988e43", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afcc4ea3-89ab-4e17-ad22-00bdf9b0ac9b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fbb1b94-2d46-482a-b95b-e12407474df1", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11751,Microsoft.Compute/GetVMImageFromLocation30Min;72751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:0fbb1b94-2d46-482a-b95b-e12407474df1", - "Expires" : "-1", - "x-ms-request-id" : "43894e0f-ff5b-4ffc-b5ca-96baedbba072", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202205100\"\r\n}", - "x-ms-client-request-id" : "afcc4ea3-89ab-4e17-ad22-00bdf9b0ac9b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cdec84b-ada3-416b-b07e-1ee6f5a4ff09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88dbe4ce-378a-48ad-a37d-c2b5e9c41209", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11753,Microsoft.Compute/GetVMImageFromLocation30Min;72753", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:88dbe4ce-378a-48ad-a37d-c2b5e9c41209", - "Expires" : "-1", - "x-ms-request-id" : "76c7374a-a3c1-4080-bdf9-cb0e68d154ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "8cdec84b-ada3-416b-b07e-1ee6f5a4ff09", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202204040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5b920a4-5ce5-4a72-9591-4e8abfd25845", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c77a86bf-eeed-4e7b-93c6-75f7655d92ac", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11752,Microsoft.Compute/GetVMImageFromLocation30Min;72752", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:c77a86bf-eeed-4e7b-93c6-75f7655d92ac", - "Expires" : "-1", - "x-ms-request-id" : "4e620dbc-2101-461c-8547-52ff024880b2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202204040\"\r\n}", - "x-ms-client-request-id" : "c5b920a4-5ce5-4a72-9591-4e8abfd25845", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26f47db4-842d-4ada-a2f9-a26b55352e63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7edf3f86-29f3-4324-9f69-e1e89917faa4", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11749,Microsoft.Compute/GetVMImageFromLocation30Min;72749", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:7edf3f86-29f3-4324-9f69-e1e89917faa4", - "Expires" : "-1", - "x-ms-request-id" : "88b2de4c-acc1-424e-ad83-bb8cba974c4b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "26f47db4-842d-4ada-a2f9-a26b55352e63", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202106140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e10232f4-1817-417b-a0e0-5df9882564ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "682346ea-3663-413e-94b6-21feef99e344", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11750,Microsoft.Compute/GetVMImageFromLocation30Min;72750", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:682346ea-3663-413e-94b6-21feef99e344", - "Expires" : "-1", - "x-ms-request-id" : "883b99de-617f-4511-bac0-7c7e45a9ffd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202106140\"\r\n}", - "x-ms-client-request-id" : "e10232f4-1817-417b-a0e0-5df9882564ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "928f0abe-160f-4558-8d38-1378bd8da56a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a300ea9-389a-408d-9c01-4b88202b94d7", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11748,Microsoft.Compute/GetVMImageFromLocation30Min;72748", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:5a300ea9-389a-408d-9c01-4b88202b94d7", - "Expires" : "-1", - "x-ms-request-id" : "85ebdf5a-1fe2-400a-8f84-b681bdb04bef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "928f0abe-160f-4558-8d38-1378bd8da56a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202103230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8d1435c-b026-483d-a654-da38f29fd8ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a16e6cc3-143a-4078-8f13-559bcf96937b", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11747,Microsoft.Compute/GetVMImageFromLocation30Min;72747", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:a16e6cc3-143a-4078-8f13-559bcf96937b", - "Expires" : "-1", - "x-ms-request-id" : "1de9f980-4d0b-4ea3-b785-5cf353002fef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202103230\"\r\n}", - "x-ms-client-request-id" : "b8d1435c-b026-483d-a654-da38f29fd8ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3222bb92-16e9-45f6-a385-d7c675e06308", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e3df23f-71c8-4ede-ac1f-4faca6dbaf8f", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11746,Microsoft.Compute/GetVMImageFromLocation30Min;72746", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:3e3df23f-71c8-4ede-ac1f-4faca6dbaf8f", - "Expires" : "-1", - "x-ms-request-id" : "7e9f4ff9-90d9-42e4-8ce4-c3fa4c8a5cbf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202111080\"\r\n}", - "x-ms-client-request-id" : "3222bb92-16e9-45f6-a385-d7c675e06308", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3f554cf-d591-466a-be12-0989c9828192", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54fc4147-1a51-49ec-8d51-954a6ecbf42f", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11745,Microsoft.Compute/GetVMImageFromLocation30Min;72745", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:54fc4147-1a51-49ec-8d51-954a6ecbf42f", - "Expires" : "-1", - "x-ms-request-id" : "2e516ea9-5eca-42bb-894b-0ff51dfc4871", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "f3f554cf-d591-466a-be12-0989c9828192", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cb8c951-83a3-4d95-b2d9-f95f86a355c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d49e1b4-5110-48da-820d-5c665f7ff444", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11744,Microsoft.Compute/GetVMImageFromLocation30Min;72744", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:9d49e1b4-5110-48da-820d-5c665f7ff444", - "Expires" : "-1", - "x-ms-request-id" : "2aa74bba-d020-4b76-b14c-ec5bef0c2eb6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "5cb8c951-83a3-4d95-b2d9-f95f86a355c4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df60db28-2ea2-4da8-b0d6-70fc5cbe1077", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13a7c0d0-fcb2-4de2-9037-daa442fb8cd7", - "Date" : "Tue, 24 May 2022 13:01:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11743,Microsoft.Compute/GetVMImageFromLocation30Min;72743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:13a7c0d0-fcb2-4de2-9037-daa442fb8cd7", - "Expires" : "-1", - "x-ms-request-id" : "9ec1d38a-67d2-44ac-a7ec-d27f840d6ecc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "df60db28-2ea2-4da8-b0d6-70fc5cbe1077", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202203310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "738e49c3-503f-4aea-8d2a-cf843d2267bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4874702d-8884-4ff6-a426-c8623a4df738", - "Date" : "Tue, 24 May 2022 13:01:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11742,Microsoft.Compute/GetVMImageFromLocation30Min;72742", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130144Z:4874702d-8884-4ff6-a426-c8623a4df738", - "Expires" : "-1", - "x-ms-request-id" : "520563f7-b56f-4595-9b8c-d38d30699e07", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203310\"\r\n}", - "x-ms-client-request-id" : "738e49c3-503f-4aea-8d2a-cf843d2267bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97f86d0e-ef3a-44e8-9f41-59a993fa29d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1074", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ac5d5f1-8226-40ab-aa28-41bfcef07147", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11741,Microsoft.Compute/GetVMImageFromLocation30Min;72741", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130145Z:5ac5d5f1-8226-40ab-aa28-41bfcef07147", - "Expires" : "-1", - "x-ms-request-id" : "5da1bd6e-5538-47c8-8cb7-50867f9fbb61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "97f86d0e-ef3a-44e8-9f41-59a993fa29d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a00bd7b-a2f2-48a8-b8b5-556b813d8878", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "19719", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d71b108a-d928-4ec2-8c8d-f7e957056463", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15885,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:d71b108a-d928-4ec2-8c8d-f7e957056463", - "Expires" : "-1", - "x-ms-request-id" : "6fbe2cdf-42c5-46d4-b27a-53f421f301ff", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202004230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202004230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202005010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202005130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202005250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202006270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202008140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202008140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202009030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202009070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009211\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202009211\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202010260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202012110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202102010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202102220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202102230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202103150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202103230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202104130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202105030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202105130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202106030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202106140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202109070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202109080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202109290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202110210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202110260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202111290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202112020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202204040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202205100\"\r\n }\r\n]", - "x-ms-client-request-id" : "8a00bd7b-a2f2-48a8-b8b5-556b813d8878", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202005250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4adfb84e-9bbd-466f-9cb5-1a16e5efcb7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adfaff90-9a43-4af1-8361-5a31bcaeb2b5", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11740,Microsoft.Compute/GetVMImageFromLocation30Min;72740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:adfaff90-9a43-4af1-8361-5a31bcaeb2b5", - "Expires" : "-1", - "x-ms-request-id" : "d8e1de3a-742a-4044-a9a6-38f16f36ddc2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202005250\"\r\n}", - "x-ms-client-request-id" : "4adfb84e-9bbd-466f-9cb5-1a16e5efcb7c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202004230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1165488c-b41b-4099-b518-f473da705fca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97f89a58-6689-4403-9a46-e8e95b04a455", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11739,Microsoft.Compute/GetVMImageFromLocation30Min;72739", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:97f89a58-6689-4403-9a46-e8e95b04a455", - "Expires" : "-1", - "x-ms-request-id" : "83bcfba4-05bd-4d50-a8eb-1ac6b0480924", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202004230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202004230\"\r\n}", - "x-ms-client-request-id" : "1165488c-b41b-4099-b518-f473da705fca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202005010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a804c483-df5d-49eb-98aa-5870a69088df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "672f987f-b978-4766-b179-70977419a5ef", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11737,Microsoft.Compute/GetVMImageFromLocation30Min;72737", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:672f987f-b978-4766-b179-70977419a5ef", - "Expires" : "-1", - "x-ms-request-id" : "6fe5221d-29e4-4947-966e-b5e05240bf72", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202005010\"\r\n}", - "x-ms-client-request-id" : "a804c483-df5d-49eb-98aa-5870a69088df", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202101081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9faa8dc-86bc-4749-a85b-20253f99d21a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b85819b1-8ae2-46fa-a937-97aac2d30ead", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11735,Microsoft.Compute/GetVMImageFromLocation30Min;72735", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:b85819b1-8ae2-46fa-a937-97aac2d30ead", - "Expires" : "-1", - "x-ms-request-id" : "ace343f4-85ab-4707-87c2-2c3af32b17f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101081\"\r\n}", - "x-ms-client-request-id" : "a9faa8dc-86bc-4749-a85b-20253f99d21a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc1de410-f4ab-4b73-abd7-1269e862f99b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2555f3e-2533-4af5-a7e9-1ce21ea50d53", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11736,Microsoft.Compute/GetVMImageFromLocation30Min;72736", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:a2555f3e-2533-4af5-a7e9-1ce21ea50d53", - "Expires" : "-1", - "x-ms-request-id" : "eae84660-35af-4abe-9045-9aa096e97439", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202006100\"\r\n}", - "x-ms-client-request-id" : "dc1de410-f4ab-4b73-abd7-1269e862f99b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202012110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68036d07-97b6-40b7-857a-5d64d6836934", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "334c393d-cd1c-46a3-a5d3-d1e3f0056a98", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11732,Microsoft.Compute/GetVMImageFromLocation30Min;72732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:334c393d-cd1c-46a3-a5d3-d1e3f0056a98", - "Expires" : "-1", - "x-ms-request-id" : "ae32eb9a-52c6-4f72-aefa-7115cc0b18b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202012110\"\r\n}", - "x-ms-client-request-id" : "68036d07-97b6-40b7-857a-5d64d6836934", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b3fcdef-9275-4a59-9172-4700f47cb759", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b89d88e-bc6c-4b30-aeca-b15904ea8da5", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11734,Microsoft.Compute/GetVMImageFromLocation30Min;72734", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:4b89d88e-bc6c-4b30-aeca-b15904ea8da5", - "Expires" : "-1", - "x-ms-request-id" : "2f6bd9b7-d993-4811-a2eb-efdb577759d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101191\"\r\n}", - "x-ms-client-request-id" : "8b3fcdef-9275-4a59-9172-4700f47cb759", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "63a507ce-6c7b-4aaf-abb3-fe53606e4b39", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ada1c85f-1364-4b78-832e-5b923a3472bb", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11730,Microsoft.Compute/GetVMImageFromLocation30Min;72730", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:ada1c85f-1364-4b78-832e-5b923a3472bb", - "Expires" : "-1", - "x-ms-request-id" : "0038a64d-bb10-4805-bd17-ba54a197d2b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202010140\"\r\n}", - "x-ms-client-request-id" : "63a507ce-6c7b-4aaf-abb3-fe53606e4b39", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "831142d0-6139-4c09-a417-62331d5c65ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4833ca54-e2a1-4eaf-9175-171f9961f5ca", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11733,Microsoft.Compute/GetVMImageFromLocation30Min;72733", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:4833ca54-e2a1-4eaf-9175-171f9961f5ca", - "Expires" : "-1", - "x-ms-request-id" : "a68f6489-3757-4a32-803e-f5735eb53b6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202012100\"\r\n}", - "x-ms-client-request-id" : "831142d0-6139-4c09-a417-62331d5c65ae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a32d48a-3360-429e-b62b-62fc090640e3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aeba3f81-2545-4ef4-92d4-8d5c5e6ae656", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11724,Microsoft.Compute/GetVMImageFromLocation30Min;72724", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:aeba3f81-2545-4ef4-92d4-8d5c5e6ae656", - "Expires" : "-1", - "x-ms-request-id" : "ab7d443f-37d6-4c61-a61d-5dc1ea95874d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101120\"\r\n}", - "x-ms-client-request-id" : "4a32d48a-3360-429e-b62b-62fc090640e3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202008140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8136868f-f332-4897-934c-173ac76d1d62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09cf6aaa-093b-4637-b295-db4f6d34bae6", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11727,Microsoft.Compute/GetVMImageFromLocation30Min;72727", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:09cf6aaa-093b-4637-b295-db4f6d34bae6", - "Expires" : "-1", - "x-ms-request-id" : "1f26f719-43cc-48c1-a0c6-153c6d3916b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202008140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202008140\"\r\n}", - "x-ms-client-request-id" : "8136868f-f332-4897-934c-173ac76d1d62", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202101050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "617a49fc-bc99-4595-b06a-0d6d077dee5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9bc5a75-a0f6-4d32-8472-baace3547a41", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11729,Microsoft.Compute/GetVMImageFromLocation30Min;72729", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:d9bc5a75-a0f6-4d32-8472-baace3547a41", - "Expires" : "-1", - "x-ms-request-id" : "9c0abddd-9751-4730-80a5-ff4753b17752", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101050\"\r\n}", - "x-ms-client-request-id" : "617a49fc-bc99-4595-b06a-0d6d077dee5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202010260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1048c2e-921c-454a-a311-5014e121fe17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c599b7b-7113-4ef4-842f-3f90435dfde1", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11720,Microsoft.Compute/GetVMImageFromLocation30Min;72720", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:6c599b7b-7113-4ef4-842f-3f90435dfde1", - "Expires" : "-1", - "x-ms-request-id" : "6ae06db1-2b69-40bf-b9d0-af49a0e744df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202010260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202010260\"\r\n}", - "x-ms-client-request-id" : "c1048c2e-921c-454a-a311-5014e121fe17", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202101290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aaca2c33-2409-462c-b68b-e9e7b5cd0624", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "62f927c3-33ad-4367-9ec1-c09ed82b9b1b", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11726,Microsoft.Compute/GetVMImageFromLocation30Min;72726", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:62f927c3-33ad-4367-9ec1-c09ed82b9b1b", - "Expires" : "-1", - "x-ms-request-id" : "b7cd9296-6a55-4161-922d-30c0862a99e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202101290\"\r\n}", - "x-ms-client-request-id" : "aaca2c33-2409-462c-b68b-e9e7b5cd0624", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202005130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "167fa880-6430-49c6-ba8c-2aa69b38d5a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61d5bd72-35dc-45e8-8097-1370cf2dfa0b", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11721,Microsoft.Compute/GetVMImageFromLocation30Min;72721", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:61d5bd72-35dc-45e8-8097-1370cf2dfa0b", - "Expires" : "-1", - "x-ms-request-id" : "2ba71267-e12d-49ee-832c-a297b43ee058", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202005130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202005130\"\r\n}", - "x-ms-client-request-id" : "167fa880-6430-49c6-ba8c-2aa69b38d5a5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202201260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ebf4ce6-f209-46a8-866d-9e46ee6c0790", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70409b38-5208-46b0-81b4-224387488fae", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11714,Microsoft.Compute/GetVMImageFromLocation30Min;72714", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:70409b38-5208-46b0-81b4-224387488fae", - "Expires" : "-1", - "x-ms-request-id" : "62da95d6-373c-4940-8027-677f6284cda1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201260\"\r\n}", - "x-ms-client-request-id" : "8ebf4ce6-f209-46a8-866d-9e46ee6c0790", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202009211?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ef2683a-2e79-45a7-87fd-06da6e3d7b45", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0334f281-a3a0-430e-99d7-1c5d7de77135", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11718,Microsoft.Compute/GetVMImageFromLocation30Min;72718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:0334f281-a3a0-430e-99d7-1c5d7de77135", - "Expires" : "-1", - "x-ms-request-id" : "60edc68b-9b02-4e93-a298-8dd7102bf003", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009211\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202009211\"\r\n}", - "x-ms-client-request-id" : "3ef2683a-2e79-45a7-87fd-06da6e3d7b45", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202109070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f68d015-365e-46a7-9a90-b719db2f4a3b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec31c984-6a07-4ef5-945b-a72be2020ffd", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11716,Microsoft.Compute/GetVMImageFromLocation30Min;72716", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:ec31c984-6a07-4ef5-945b-a72be2020ffd", - "Expires" : "-1", - "x-ms-request-id" : "9ae92ec8-2efd-40b8-8fcc-a08ccf97163e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202109070\"\r\n}", - "x-ms-client-request-id" : "1f68d015-365e-46a7-9a90-b719db2f4a3b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ab6fc3a-0935-4a6f-a44d-841c1788c4bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58a5df16-d65b-4008-a40e-4855241e9785", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11719,Microsoft.Compute/GetVMImageFromLocation30Min;72719", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:58a5df16-d65b-4008-a40e-4855241e9785", - "Expires" : "-1", - "x-ms-request-id" : "30731178-5e47-4fb8-a528-e0673f738610", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007290\"\r\n}", - "x-ms-client-request-id" : "5ab6fc3a-0935-4a6f-a44d-841c1788c4bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202201310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "599e9f76-31e9-422b-a73b-e4e6e8500254", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c772f666-88bf-4e56-a66c-7f284f4239d5", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11715,Microsoft.Compute/GetVMImageFromLocation30Min;72715", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:c772f666-88bf-4e56-a66c-7f284f4239d5", - "Expires" : "-1", - "x-ms-request-id" : "43f38c4e-f1ac-4011-b475-60b63383a4fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201310\"\r\n}", - "x-ms-client-request-id" : "599e9f76-31e9-422b-a73b-e4e6e8500254", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202102010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87bbbdb3-aaef-4e7b-b93d-a899f77c4235", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "959adfd4-710a-4598-9167-20be8e37b8fd", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11717,Microsoft.Compute/GetVMImageFromLocation30Min;72717", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:959adfd4-710a-4598-9167-20be8e37b8fd", - "Expires" : "-1", - "x-ms-request-id" : "468ef0af-03d3-4b0d-951a-82a0b15c30d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202102010\"\r\n}", - "x-ms-client-request-id" : "87bbbdb3-aaef-4e7b-b93d-a899f77c4235", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202006270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "550b53fb-6e44-4739-b2a1-5663127bf353", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "039ade3d-b9cc-41e0-b50d-3b67214c3b1e", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11723,Microsoft.Compute/GetVMImageFromLocation30Min;72723", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:039ade3d-b9cc-41e0-b50d-3b67214c3b1e", - "Expires" : "-1", - "x-ms-request-id" : "e508ffb4-5f09-42f5-b7e0-84c274653aa9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202006270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202006270\"\r\n}", - "x-ms-client-request-id" : "550b53fb-6e44-4739-b2a1-5663127bf353", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202102230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f932060d-4364-4434-bf79-236451f557d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d0149dc-74b2-42c9-b85f-240689295bbc", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11731,Microsoft.Compute/GetVMImageFromLocation30Min;72731", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:6d0149dc-74b2-42c9-b85f-240689295bbc", - "Expires" : "-1", - "x-ms-request-id" : "3d8f6d87-1df3-4b8f-bff6-09576e1b0907", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202102230\"\r\n}", - "x-ms-client-request-id" : "f932060d-4364-4434-bf79-236451f557d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f094bfc1-d2f4-459a-a05e-ab48fef5aa5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c0e5b6f-fd58-4d2d-a27f-b4dcbe41d074", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11713,Microsoft.Compute/GetVMImageFromLocation30Min;72713", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:5c0e5b6f-fd58-4d2d-a27f-b4dcbe41d074", - "Expires" : "-1", - "x-ms-request-id" : "f1dd3dab-53b8-45d0-a8c5-10b2fe44ce2d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202108250\"\r\n}", - "x-ms-client-request-id" : "f094bfc1-d2f4-459a-a05e-ab48fef5aa5a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202102220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b322425-6a60-4470-a003-2e80e1d94442", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "e657db5d-82b7-402a-a3fc-9a03d330e309", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11728,Microsoft.Compute/GetVMImageFromLocation30Min;72728", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:e657db5d-82b7-402a-a3fc-9a03d330e309", - "Expires" : "-1", - "x-ms-request-id" : "1277e949-2d0a-4e31-a3aa-80608f21e2c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202102220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202102220\"\r\n}", - "x-ms-client-request-id" : "2b322425-6a60-4470-a003-2e80e1d94442", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202103230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "465ec723-97df-4b31-9f45-fe259abd65c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08c5fb59-fc8e-4fbf-afb5-6765d7b0a424", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11712,Microsoft.Compute/GetVMImageFromLocation30Min;72712", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:08c5fb59-fc8e-4fbf-afb5-6765d7b0a424", - "Expires" : "-1", - "x-ms-request-id" : "b5fb9b6e-0610-4e7f-a922-9f01e402de5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202103230\"\r\n}", - "x-ms-client-request-id" : "465ec723-97df-4b31-9f45-fe259abd65c7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202106030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57d45f9d-1155-4271-8c86-df858082a428", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "505d5c30-b751-4264-bc1b-c0ab78c333b9", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11722,Microsoft.Compute/GetVMImageFromLocation30Min;72722", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:505d5c30-b751-4264-bc1b-c0ab78c333b9", - "Expires" : "-1", - "x-ms-request-id" : "5594f9d8-dd23-4560-87a0-b2c0e716216c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202106030\"\r\n}", - "x-ms-client-request-id" : "57d45f9d-1155-4271-8c86-df858082a428", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202105130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a2ce5ab-525e-49ff-be90-24c5309dff9b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6000c10b-c5ba-4c1e-acf0-68ec42ae1b89", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11709,Microsoft.Compute/GetVMImageFromLocation30Min;72709", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:6000c10b-c5ba-4c1e-acf0-68ec42ae1b89", - "Expires" : "-1", - "x-ms-request-id" : "81bf6783-4b0a-4777-ad49-efa3d0cd466b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202105130\"\r\n}", - "x-ms-client-request-id" : "6a2ce5ab-525e-49ff-be90-24c5309dff9b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202110210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80e856b0-388c-464a-a4ea-1430fefb39db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b59ea6b9-4360-4a82-a5ba-667a4eb0b5d8", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11708,Microsoft.Compute/GetVMImageFromLocation30Min;72708", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:b59ea6b9-4360-4a82-a5ba-667a4eb0b5d8", - "Expires" : "-1", - "x-ms-request-id" : "8804dba2-b54e-4a21-8407-831f1a586139", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202110210\"\r\n}", - "x-ms-client-request-id" : "80e856b0-388c-464a-a4ea-1430fefb39db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97231179-67d8-434c-8c5d-f7e3a87fbaa7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "891ff946-1862-46a3-a8b1-50570860162e", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11710,Microsoft.Compute/GetVMImageFromLocation30Min;72710", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:891ff946-1862-46a3-a8b1-50570860162e", - "Expires" : "-1", - "x-ms-request-id" : "b3a59026-a823-41f9-8c32-d081d2dc3534", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202204190\"\r\n}", - "x-ms-client-request-id" : "97231179-67d8-434c-8c5d-f7e3a87fbaa7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b52c0fac-3035-4e9f-a35d-54e70cdeed6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a2cb12a-e026-44f7-9187-f407085e34a1", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11707,Microsoft.Compute/GetVMImageFromLocation30Min;72707", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:8a2cb12a-e026-44f7-9187-f407085e34a1", - "Expires" : "-1", - "x-ms-request-id" : "19617feb-ee90-43d2-bdd2-d4a098542248", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202107200\"\r\n}", - "x-ms-client-request-id" : "b52c0fac-3035-4e9f-a35d-54e70cdeed6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202104130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90bcf428-f176-41f5-8d91-21213d9f8995", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ec6538e-019c-49f3-837f-60a51d957fd2", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11711,Microsoft.Compute/GetVMImageFromLocation30Min;72711", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:8ec6538e-019c-49f3-837f-60a51d957fd2", - "Expires" : "-1", - "x-ms-request-id" : "e1aacb94-7eb4-4388-beed-680b675a0c9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202104130\"\r\n}", - "x-ms-client-request-id" : "90bcf428-f176-41f5-8d91-21213d9f8995", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eee98188-5e5f-4467-962d-9a0437c976f0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35aa0b46-bc70-4241-8a9e-c56fbd394604", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11703,Microsoft.Compute/GetVMImageFromLocation30Min;72703", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:35aa0b46-bc70-4241-8a9e-c56fbd394604", - "Expires" : "-1", - "x-ms-request-id" : "4d638382-5674-4d69-99d5-bd939b860235", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202012010\"\r\n}", - "x-ms-client-request-id" : "eee98188-5e5f-4467-962d-9a0437c976f0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202204040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fead1e6-17f6-481c-b15c-dcd01e2c58f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95d98c5b-5c6c-47e0-ae5a-2c8c2b46d6a6", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11705,Microsoft.Compute/GetVMImageFromLocation30Min;72705", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:95d98c5b-5c6c-47e0-ae5a-2c8c2b46d6a6", - "Expires" : "-1", - "x-ms-request-id" : "aaed05c9-c5ff-46e9-8f4c-b990ef56981d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202204040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202204040\"\r\n}", - "x-ms-client-request-id" : "8fead1e6-17f6-481c-b15c-dcd01e2c58f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202109290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7061a327-0ef8-4dd5-a8a2-cc528dc2ba5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc8c6d82-1ed7-496f-a482-0f3d1facde6e", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11704,Microsoft.Compute/GetVMImageFromLocation30Min;72704", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:bc8c6d82-1ed7-496f-a482-0f3d1facde6e", - "Expires" : "-1", - "x-ms-request-id" : "ea3cc78d-734c-47e3-af07-33ea13c955f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202109290\"\r\n}", - "x-ms-client-request-id" : "7061a327-0ef8-4dd5-a8a2-cc528dc2ba5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202009070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c11b624-9510-48de-a7bb-ae85af0a9ff5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bc18e08-3733-47f8-b1f2-b41116058583", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11702,Microsoft.Compute/GetVMImageFromLocation30Min;72702", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:3bc18e08-3733-47f8-b1f2-b41116058583", - "Expires" : "-1", - "x-ms-request-id" : "187c5bea-e86f-4c27-9079-5cfa1bc7f023", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202009070\"\r\n}", - "x-ms-client-request-id" : "0c11b624-9510-48de-a7bb-ae85af0a9ff5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202009030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e531d46f-1eee-4b5b-ba3e-f65f6d626a0f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1933b0cf-ea60-40e9-9198-fa07e075d373", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11738,Microsoft.Compute/GetVMImageFromLocation30Min;72738", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:1933b0cf-ea60-40e9-9198-fa07e075d373", - "Expires" : "-1", - "x-ms-request-id" : "15ad070f-24df-4889-af1b-b28bceb95584", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202009030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202009030\"\r\n}", - "x-ms-client-request-id" : "e531d46f-1eee-4b5b-ba3e-f65f6d626a0f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202106140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac22ffa4-ec5a-47da-9f7d-3a2291ff6627", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79c6028e-782a-4b02-9359-141e22320a2f", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11700,Microsoft.Compute/GetVMImageFromLocation30Min;72700", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:79c6028e-782a-4b02-9359-141e22320a2f", - "Expires" : "-1", - "x-ms-request-id" : "ec1f3ef6-8773-4155-a80b-94677f206c67", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202106140\"\r\n}", - "x-ms-client-request-id" : "ac22ffa4-ec5a-47da-9f7d-3a2291ff6627", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36bcb11c-5338-4957-af54-4e7918354fcb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d55103a7-38f0-43c3-a28d-f97cd7b71d30", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11698,Microsoft.Compute/GetVMImageFromLocation30Min;72698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:d55103a7-38f0-43c3-a28d-f97cd7b71d30", - "Expires" : "-1", - "x-ms-request-id" : "893939b7-cad0-4bbc-aab3-f68196200f45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202106230\"\r\n}", - "x-ms-client-request-id" : "36bcb11c-5338-4957-af54-4e7918354fcb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202203310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c0a7319-9734-438d-b51b-c93f42397579", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a126c1be-fe2f-46bc-82ef-2bb44b20393f", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11699,Microsoft.Compute/GetVMImageFromLocation30Min;72699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:a126c1be-fe2f-46bc-82ef-2bb44b20393f", - "Expires" : "-1", - "x-ms-request-id" : "a2dcf291-a57c-4fc7-a9d9-812bf9b143fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203310\"\r\n}", - "x-ms-client-request-id" : "5c0a7319-9734-438d-b51b-c93f42397579", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "236964d3-f372-4eb2-8738-f00bd99578d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51689859-1c99-48b5-bd78-c55851b46b43", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11701,Microsoft.Compute/GetVMImageFromLocation30Min;72701", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:51689859-1c99-48b5-bd78-c55851b46b43", - "Expires" : "-1", - "x-ms-request-id" : "1fe53214-21fb-4001-9ae1-417f911238af", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "236964d3-f372-4eb2-8738-f00bd99578d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f69fc0cf-dba9-4685-b9d0-dc2fdb4183a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bb27518-3ca8-40d4-94b5-f46f7273a4cb", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11697,Microsoft.Compute/GetVMImageFromLocation30Min;72697", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:5bb27518-3ca8-40d4-94b5-f46f7273a4cb", - "Expires" : "-1", - "x-ms-request-id" : "9ad65692-19e6-42ac-9c18-6a75f03b3f19", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007080\"\r\n}", - "x-ms-client-request-id" : "f69fc0cf-dba9-4685-b9d0-dc2fdb4183a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202105030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3706a214-cb71-4206-8cc8-8d924766486a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee04d742-5c5a-4e70-9494-c19ee3bf49aa", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11725,Microsoft.Compute/GetVMImageFromLocation30Min;72725", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:ee04d742-5c5a-4e70-9494-c19ee3bf49aa", - "Expires" : "-1", - "x-ms-request-id" : "c0b3a336-8b20-45de-93a1-6f3b3d332b22", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202105030\"\r\n}", - "x-ms-client-request-id" : "3706a214-cb71-4206-8cc8-8d924766486a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55a650eb-f3d1-45d7-9b7a-edfdb89a3242", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce4255eb-77e9-4597-8466-2588f6f57a13", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11696,Microsoft.Compute/GetVMImageFromLocation30Min;72696", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:ce4255eb-77e9-4597-8466-2588f6f57a13", - "Expires" : "-1", - "x-ms-request-id" : "802421d0-1d3e-42d2-ac60-1f603d11576c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203020\"\r\n}", - "x-ms-client-request-id" : "55a650eb-f3d1-45d7-9b7a-edfdb89a3242", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202103150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e1b5090-05b7-4f6c-9e5b-1f8af86a7d4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8681c41-4927-4e62-b36c-442f99ea0f87", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11695,Microsoft.Compute/GetVMImageFromLocation30Min;72695", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:e8681c41-4927-4e62-b36c-442f99ea0f87", - "Expires" : "-1", - "x-ms-request-id" : "61bfb09f-0bc1-4c68-a13d-c70565a0c60a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202103150\"\r\n}", - "x-ms-client-request-id" : "1e1b5090-05b7-4f6c-9e5b-1f8af86a7d4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "066ef8c6-0ea9-4a0d-bc8f-8691dbef17c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9dd7fdf1-3c7f-4d5c-8a87-aff5b9b79534", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11693,Microsoft.Compute/GetVMImageFromLocation30Min;72693", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:9dd7fdf1-3c7f-4d5c-8a87-aff5b9b79534", - "Expires" : "-1", - "x-ms-request-id" : "88f2f670-ffee-409f-bb43-f88b36939e28", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202205100\"\r\n}", - "x-ms-client-request-id" : "066ef8c6-0ea9-4a0d-bc8f-8691dbef17c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202007160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92951e1b-1279-46fb-8cbc-6aec0ac5b927", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4538546c-814a-4ba9-96c4-d7a6bcbbfba4", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11694,Microsoft.Compute/GetVMImageFromLocation30Min;72694", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:4538546c-814a-4ba9-96c4-d7a6bcbbfba4", - "Expires" : "-1", - "x-ms-request-id" : "795b3e40-343b-4378-9ba3-7ad61eb52015", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007160\"\r\n}", - "x-ms-client-request-id" : "92951e1b-1279-46fb-8cbc-6aec0ac5b927", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202203220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "108e3274-3e7e-4aae-a899-73ef332dbc98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "69865748-aff3-43e9-a929-48a6d398599a", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11706,Microsoft.Compute/GetVMImageFromLocation30Min;72706", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:69865748-aff3-43e9-a929-48a6d398599a", - "Expires" : "-1", - "x-ms-request-id" : "217c54b6-bb8c-41b9-b08b-f4b1688ce7f7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203220\"\r\n}", - "x-ms-client-request-id" : "108e3274-3e7e-4aae-a899-73ef332dbc98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202007060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6667be2e-8fb5-47de-a7a1-22afbe954662", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "593bcf5d-f5ca-45ec-b90e-dbf8a65843a4", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11691,Microsoft.Compute/GetVMImageFromLocation30Min;72691", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:593bcf5d-f5ca-45ec-b90e-dbf8a65843a4", - "Expires" : "-1", - "x-ms-request-id" : "85301028-39a2-410a-ad7b-1a9e74aa8866", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202007060\"\r\n}", - "x-ms-client-request-id" : "6667be2e-8fb5-47de-a7a1-22afbe954662", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202201100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "facca1b5-e7d5-4354-a41f-58c0bb071dad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43908917-aac1-4f8b-b5aa-ed08f3b9e961", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11692,Microsoft.Compute/GetVMImageFromLocation30Min;72692", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:43908917-aac1-4f8b-b5aa-ed08f3b9e961", - "Expires" : "-1", - "x-ms-request-id" : "5fb634c6-232c-42f4-9590-10ecec0e392f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201100\"\r\n}", - "x-ms-client-request-id" : "facca1b5-e7d5-4354-a41f-58c0bb071dad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bc0a0d4-34d9-48d5-a102-f003c61e8e8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "813bbc40-eeff-4e1b-afea-e69afb269d97", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11690,Microsoft.Compute/GetVMImageFromLocation30Min;72690", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:813bbc40-eeff-4e1b-afea-e69afb269d97", - "Expires" : "-1", - "x-ms-request-id" : "4c17a5c3-9859-4516-b9fb-1f0ac0aafe49", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202104150\"\r\n}", - "x-ms-client-request-id" : "7bc0a0d4-34d9-48d5-a102-f003c61e8e8c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef484d5e-8187-4669-bf29-fb64535d21b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80b4ddf9-f31b-4a92-92f7-d0162a3a9b68", - "Date" : "Tue, 24 May 2022 13:01:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11689,Microsoft.Compute/GetVMImageFromLocation30Min;72689", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:80b4ddf9-f31b-4a92-92f7-d0162a3a9b68", - "Expires" : "-1", - "x-ms-request-id" : "43685cb4-c109-4d88-a3e6-ab8d443f84bd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202103250\"\r\n}", - "x-ms-client-request-id" : "ef484d5e-8187-4669-bf29-fb64535d21b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202110260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1d29290-2872-4bc7-af7d-4d67b06663e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0020e231-bfeb-433c-bde6-a9ff3b134823", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11684,Microsoft.Compute/GetVMImageFromLocation30Min;72684", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:0020e231-bfeb-433c-bde6-a9ff3b134823", - "Expires" : "-1", - "x-ms-request-id" : "87ed445c-ce31-4fb4-a824-c5ef2c48198a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202110260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202110260\"\r\n}", - "x-ms-client-request-id" : "e1d29290-2872-4bc7-af7d-4d67b06663e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0a4069c-92f4-4e16-bb93-5ce14bc4a15f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98b736e1-273d-49d1-a2f5-705cc5b2ecd9", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11686,Microsoft.Compute/GetVMImageFromLocation30Min;72686", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:98b736e1-273d-49d1-a2f5-705cc5b2ecd9", - "Expires" : "-1", - "x-ms-request-id" : "116bc55d-bcbb-45ee-bb94-4a7cf1adab73", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201180\"\r\n}", - "x-ms-client-request-id" : "b0a4069c-92f4-4e16-bb93-5ce14bc4a15f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202111290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba6f47ea-08bb-4307-a092-aeb6f7e39601", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bccdfec-f7c4-4e28-b326-7b151f7f84ed", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11685,Microsoft.Compute/GetVMImageFromLocation30Min;72685", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130146Z:1bccdfec-f7c4-4e28-b326-7b151f7f84ed", - "Expires" : "-1", - "x-ms-request-id" : "bc25b186-b573-4da3-983f-ec574bab75d7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202111290\"\r\n}", - "x-ms-client-request-id" : "ba6f47ea-08bb-4307-a092-aeb6f7e39601", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202112020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd1271e4-e3f5-485f-ae79-1a6eb63caf61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cfafb13-d51c-47d6-a35a-a272832950ac", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11687,Microsoft.Compute/GetVMImageFromLocation30Min;72687", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:5cfafb13-d51c-47d6-a35a-a272832950ac", - "Expires" : "-1", - "x-ms-request-id" : "794ba1ac-e998-4f5c-8458-7a5cf46e09a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202112020\"\r\n}", - "x-ms-client-request-id" : "bd1271e4-e3f5-485f-ae79-1a6eb63caf61", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c451561-90b6-4ae9-a095-febeb290cd74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4312af6a-5377-4c34-a1c1-6d7025524c04", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11688,Microsoft.Compute/GetVMImageFromLocation30Min;72688", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:4312af6a-5377-4c34-a1c1-6d7025524c04", - "Expires" : "-1", - "x-ms-request-id" : "ce9cf73d-8786-4d27-87cf-865f1ddf6b52", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202111210\"\r\n}", - "x-ms-client-request-id" : "5c451561-90b6-4ae9-a095-febeb290cd74", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202201040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3739397-6ddb-4f1d-9b52-0834266d15b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3014abaf-0544-4678-990f-c32d72249c5d", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11683,Microsoft.Compute/GetVMImageFromLocation30Min;72683", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:3014abaf-0544-4678-990f-c32d72249c5d", - "Expires" : "-1", - "x-ms-request-id" : "bc43e93e-356d-4511-8446-cd1634f43899", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202201040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202201040\"\r\n}", - "x-ms-client-request-id" : "c3739397-6ddb-4f1d-9b52-0834266d15b8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0f1601a-f8f5-4a96-9641-1726e53b2647", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d29ed2a8-61cc-4533-8661-a2835e67f23b", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11682,Microsoft.Compute/GetVMImageFromLocation30Min;72682", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:d29ed2a8-61cc-4533-8661-a2835e67f23b", - "Expires" : "-1", - "x-ms-request-id" : "176595bf-78ff-4021-addf-ac2c827205cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202011230\"\r\n}", - "x-ms-client-request-id" : "b0f1601a-f8f5-4a96-9641-1726e53b2647", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202109080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "350502a5-f776-48b4-a3a4-79be0fd68c76", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8b910f5-c5fe-48e1-af6d-8beac94da3e0", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11681,Microsoft.Compute/GetVMImageFromLocation30Min;72681", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:e8b910f5-c5fe-48e1-af6d-8beac94da3e0", - "Expires" : "-1", - "x-ms-request-id" : "0339d7f6-7e3d-4ec8-ac1d-aa619a70ce5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202109080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202109080\"\r\n}", - "x-ms-client-request-id" : "350502a5-f776-48b4-a3a4-79be0fd68c76", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f99b219a-a913-4aa7-aac2-13d3eff38343", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "894a74dc-b1ff-4e01-82b0-662c9503f66a", - "Date" : "Tue, 24 May 2022 13:01:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11680,Microsoft.Compute/GetVMImageFromLocation30Min;72680", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:894a74dc-b1ff-4e01-82b0-662c9503f66a", - "Expires" : "-1", - "x-ms-request-id" : "7af45aed-776c-4418-8e93-a2c5dbf3f12b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202111080\"\r\n}", - "x-ms-client-request-id" : "f99b219a-a913-4aa7-aac2-13d3eff38343", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts-gen2/versions/20.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f587e9f2-068a-48e7-87b1-15ef8aec4baa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f674682-e71e-4502-8b79-bb8c33655c9e", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11679,Microsoft.Compute/GetVMImageFromLocation30Min;72679", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:2f674682-e71e-4502-8b79-bb8c33655c9e", - "Expires" : "-1", - "x-ms-request-id" : "2f0e088a-1c4a-4f21-b22f-e7a2923f056a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts-gen2/Versions/20.04.202203080\"\r\n}", - "x-ms-client-request-id" : "f587e9f2-068a-48e7-87b1-15ef8aec4baa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "574c73d4-b3f9-4586-8423-46f43d684bc5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "863", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8da3d7fc-16c7-49ae-9b0a-163f89fefe4b", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9964,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:8da3d7fc-16c7-49ae-9b0a-163f89fefe4b", - "Expires" : "-1", - "x-ms-request-id" : "27fcdba0-a07d-451d-b4d0-a3aa59dd2ebd", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "574c73d4-b3f9-4586-8423-46f43d684bc5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3857510f-1dc1-4498-93ec-22489a06faf1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2603", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01e87b20-3292-464b-925f-238984ef4abf", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15884,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130147Z:01e87b20-3292-464b-925f-238984ef4abf", - "Expires" : "-1", - "x-ms-request-id" : "3969ac69-e98e-4f83-837c-585b11b44fc8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202105110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205180\"\r\n }\r\n]", - "x-ms-client-request-id" : "3857510f-1dc1-4498-93ec-22489a06faf1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72b7cb9f-6358-4acb-abfa-a4e41df6f03f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e14337ae-2772-47f9-a395-ca8ebf832b10", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11677,Microsoft.Compute/GetVMImageFromLocation30Min;72677", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:e14337ae-2772-47f9-a395-ca8ebf832b10", - "Expires" : "-1", - "x-ms-request-id" : "ce0a03d4-59ca-4b0f-8164-ce35a8cd2a17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205110\"\r\n}", - "x-ms-client-request-id" : "72b7cb9f-6358-4acb-abfa-a4e41df6f03f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5533f7e5-6f50-4166-a2dc-d9e18cd186f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5604ad8-e008-494a-a0e2-22c481a51c50", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11678,Microsoft.Compute/GetVMImageFromLocation30Min;72678", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:a5604ad8-e008-494a-a0e2-22c481a51c50", - "Expires" : "-1", - "x-ms-request-id" : "0eabce3d-d160-45db-8ddb-56d8b621755e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205170\"\r\n}", - "x-ms-client-request-id" : "5533f7e5-6f50-4166-a2dc-d9e18cd186f7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9365068d-42f9-4beb-83e5-d639c46ad066", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a6744bf-59ff-4749-9d6c-537e15e0db05", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11676,Microsoft.Compute/GetVMImageFromLocation30Min;72676", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:4a6744bf-59ff-4749-9d6c-537e15e0db05", - "Expires" : "-1", - "x-ms-request-id" : "e4267714-0fb3-4293-b3cd-616834e84c1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205100\"\r\n}", - "x-ms-client-request-id" : "9365068d-42f9-4beb-83e5-d639c46ad066", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf6c3b7f-6916-442b-893d-1739c76cc2f6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc31afd8-7103-4559-8c2f-452c209adb04", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11675,Microsoft.Compute/GetVMImageFromLocation30Min;72675", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:bc31afd8-7103-4559-8c2f-452c209adb04", - "Expires" : "-1", - "x-ms-request-id" : "1f1c2880-10e2-4e58-b73e-ce22da17b3f6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205180\"\r\n}", - "x-ms-client-request-id" : "bf6c3b7f-6916-442b-893d-1739c76cc2f6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e7aad4d-1717-41b4-8c41-9219dfdb29fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d25f20c-981c-47cf-a164-524bf71943be", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11673,Microsoft.Compute/GetVMImageFromLocation30Min;72673", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:8d25f20c-981c-47cf-a164-524bf71943be", - "Expires" : "-1", - "x-ms-request-id" : "9d023336-b378-4cb3-9a02-884e48ff5ae9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205160\"\r\n}", - "x-ms-client-request-id" : "0e7aad4d-1717-41b4-8c41-9219dfdb29fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6d2f5b9-1a55-4b05-8ce5-a057fc887d62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6862891-5a3d-4b83-a0f7-1881b661383b", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11674,Microsoft.Compute/GetVMImageFromLocation30Min;72674", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:e6862891-5a3d-4b83-a0f7-1881b661383b", - "Expires" : "-1", - "x-ms-request-id" : "9c499722-f460-4122-8c31-456ac9ce9bbd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "e6d2f5b9-1a55-4b05-8ce5-a057fc887d62", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "067eaabf-e530-4337-aa5f-a5e2925244fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a1ae09d-7b55-4e7b-8f17-90957c9381a2", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11672,Microsoft.Compute/GetVMImageFromLocation30Min;72672", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:5a1ae09d-7b55-4e7b-8f17-90957c9381a2", - "Expires" : "-1", - "x-ms-request-id" : "4f3b9812-e3f4-4e53-85a4-6c0f1a15c5d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202205090\"\r\n}", - "x-ms-client-request-id" : "067eaabf-e530-4337-aa5f-a5e2925244fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts/versions/20.04.202105110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3554449e-a9b1-4ba0-9e7f-1c048da5415f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28724f64-3737-4b2a-acac-c8e8f999ee30", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11671,Microsoft.Compute/GetVMImageFromLocation30Min;72671", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:28724f64-3737-4b2a-acac-c8e8f999ee30", - "Expires" : "-1", - "x-ms-request-id" : "054b348e-dee6-4b17-a948-4f29b98e7d75", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202105110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts/Versions/20.04.202105110\"\r\n}", - "x-ms-client-request-id" : "3554449e-a9b1-4ba0-9e7f-1c048da5415f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac53abab-5062-411f-974e-c74348c84a18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2313", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79ea311d-d814-4304-bd9d-ce0ab550956e", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15883,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:79ea311d-d814-4304-bd9d-ce0ab550956e", - "Expires" : "-1", - "x-ms-request-id" : "376c0c35-62d5-4f7c-bc62-dbf5e327db94", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205180\"\r\n }\r\n]", - "x-ms-client-request-id" : "ac53abab-5062-411f-974e-c74348c84a18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e458c86-4af7-43d4-8487-190b0b653764", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "105ee177-8a02-4eee-9ec4-cad8bb8d8619", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11669,Microsoft.Compute/GetVMImageFromLocation30Min;72669", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:105ee177-8a02-4eee-9ec4-cad8bb8d8619", - "Expires" : "-1", - "x-ms-request-id" : "f528cce2-299f-415d-a567-3437ce1ba0ea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205100\"\r\n}", - "x-ms-client-request-id" : "5e458c86-4af7-43d4-8487-190b0b653764", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19f4610f-816c-4dba-89ae-6ff397d0268b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2665b96c-7965-41e3-b2f4-25ad3c29a595", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11668,Microsoft.Compute/GetVMImageFromLocation30Min;72668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:2665b96c-7965-41e3-b2f4-25ad3c29a595", - "Expires" : "-1", - "x-ms-request-id" : "37f1676d-b949-45dd-b998-859214019f04", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205170\"\r\n}", - "x-ms-client-request-id" : "19f4610f-816c-4dba-89ae-6ff397d0268b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d957f87-7804-4b3a-86d3-97ede2d5c8b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6dc929af-2c99-40bc-a5d4-d20cbb79fc5c", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11670,Microsoft.Compute/GetVMImageFromLocation30Min;72670", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:6dc929af-2c99-40bc-a5d4-d20cbb79fc5c", - "Expires" : "-1", - "x-ms-request-id" : "d24e9c8c-03a1-4c96-8e1c-bcafcb4d8243", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205050\"\r\n}", - "x-ms-client-request-id" : "0d957f87-7804-4b3a-86d3-97ede2d5c8b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba2d5b24-8788-46d5-9b1b-bb9964bc83a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2298dd3-3d9d-4767-a089-702139d83dd8", - "Date" : "Tue, 24 May 2022 13:01:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11665,Microsoft.Compute/GetVMImageFromLocation30Min;72665", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:a2298dd3-3d9d-4767-a089-702139d83dd8", - "Expires" : "-1", - "x-ms-request-id" : "1e2844fd-19e0-40f4-9dd3-3a8fc1496a3e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205110\"\r\n}", - "x-ms-client-request-id" : "ba2d5b24-8788-46d5-9b1b-bb9964bc83a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "867b1d09-b4ab-4a4f-bc94-40ad67815472", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "101bbc4b-34b0-42c1-98d8-ccf52538d333", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11666,Microsoft.Compute/GetVMImageFromLocation30Min;72666", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:101bbc4b-34b0-42c1-98d8-ccf52538d333", - "Expires" : "-1", - "x-ms-request-id" : "3b152274-3b9b-4f5f-8624-e92f2a315cae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205090\"\r\n}", - "x-ms-client-request-id" : "867b1d09-b4ab-4a4f-bc94-40ad67815472", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f083b11-e42e-43e4-99db-3b47860c2980", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b971998-5ef6-4014-9c6d-1573b63d8a2d", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11667,Microsoft.Compute/GetVMImageFromLocation30Min;72667", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:9b971998-5ef6-4014-9c6d-1573b63d8a2d", - "Expires" : "-1", - "x-ms-request-id" : "2476967f-ca31-4501-8e7c-59963de80434", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205180\"\r\n}", - "x-ms-client-request-id" : "4f083b11-e42e-43e4-99db-3b47860c2980", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal-daily/skus/20_04-daily-lts-gen2/versions/20.04.202205160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19fc1fe2-83d4-4ff5-98e4-41922f76c20d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8649228-a6c4-471d-b9aa-cb079d48fec3", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11664,Microsoft.Compute/GetVMImageFromLocation30Min;72664", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130148Z:e8649228-a6c4-471d-b9aa-cb079d48fec3", - "Expires" : "-1", - "x-ms-request-id" : "a46ad906-0287-474b-af56-db8d49af9636", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.04.202205160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal-daily/Skus/20_04-daily-lts-gen2/Versions/20.04.202205160\"\r\n}", - "x-ms-client-request-id" : "19fc1fe2-83d4-4ff5-98e4-41922f76c20d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d9f2a96-8f02-4981-8fdd-256b9f5026ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "813", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7541a5f7-de55-43b5-a3c3-868750a6d103", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9963,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:7541a5f7-de55-43b5-a3c3-868750a6d103", - "Expires" : "-1", - "x-ms-request-id" : "c4cda959-df33-47c6-bde3-483f4fa7aeef", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_10-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "2d9f2a96-8f02-4981-8fdd-256b9f5026ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e4555b6-50bc-4114-886e-af35f6f2a8fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5d6c4d8-4c5a-47b4-b088-ea8a5cd9422e", - "Date" : "Tue, 24 May 2022 13:01:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15882,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:b5d6c4d8-4c5a-47b4-b088-ea8a5cd9422e", - "Expires" : "-1", - "x-ms-request-id" : "1dddf174-5260-4d59-84f1-4adc05bbcddd", - "Body" : "[]", - "x-ms-client-request-id" : "4e4555b6-50bc-4114-886e-af35f6f2a8fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d916f7ec-bffd-48f4-a662-517dc07dc870", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6933", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "506185a0-8637-49ff-b0df-26ba0dca7616", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15881,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:506185a0-8637-49ff-b0df-26ba0dca7616", - "Expires" : "-1", - "x-ms-request-id" : "ee42f6a5-bdfb-4b4f-8ed6-967c66d9e9b4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202010221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202010221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202010300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202010300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202011110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202011250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202012070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202012070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101121\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202102090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202102090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202102220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202102220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202102240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202102240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202103150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202103150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202103230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202104151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202104151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202105040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202105040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202105111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202105111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202106221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202107200\"\r\n }\r\n]", - "x-ms-client-request-id" : "d916f7ec-bffd-48f4-a662-517dc07dc870", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202010300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d58ac02-011c-44c5-91ea-5fdd9acee9f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10d7ac63-7a76-4c65-9d95-2d4076d5132d", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11662,Microsoft.Compute/GetVMImageFromLocation30Min;72662", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:10d7ac63-7a76-4c65-9d95-2d4076d5132d", - "Expires" : "-1", - "x-ms-request-id" : "c9331a10-2542-44e4-a73f-6168d7000955", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202010300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202010300\"\r\n}", - "x-ms-client-request-id" : "6d58ac02-011c-44c5-91ea-5fdd9acee9f3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202012070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e318e289-1b2e-4631-8893-55145e1f5e0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47a24838-d43b-4b81-a0e7-71b01017af13", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11661,Microsoft.Compute/GetVMImageFromLocation30Min;72661", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:47a24838-d43b-4b81-a0e7-71b01017af13", - "Expires" : "-1", - "x-ms-request-id" : "722793fc-bb04-4811-a939-94ffa4bfb1ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202012070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202012070\"\r\n}", - "x-ms-client-request-id" : "e318e289-1b2e-4631-8893-55145e1f5e0a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3fe7ebf-adaf-4b38-a4db-c7c8291c8a1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a81708e1-c6b7-4c98-9e19-242cb49f4678", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11660,Microsoft.Compute/GetVMImageFromLocation30Min;72660", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:a81708e1-c6b7-4c98-9e19-242cb49f4678", - "Expires" : "-1", - "x-ms-request-id" : "18133c22-d105-47fb-885b-ad9532aacf33", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202012100\"\r\n}", - "x-ms-client-request-id" : "f3fe7ebf-adaf-4b38-a4db-c7c8291c8a1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "092e00b0-fbbd-4e64-b635-9ccee38df037", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "16662eb7-f7a0-47af-9fff-6d868eb50f6d", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11658,Microsoft.Compute/GetVMImageFromLocation30Min;72658", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:16662eb7-f7a0-47af-9fff-6d868eb50f6d", - "Expires" : "-1", - "x-ms-request-id" : "64b7918e-674a-4387-afee-223ab629bd68", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101191\"\r\n}", - "x-ms-client-request-id" : "092e00b0-fbbd-4e64-b635-9ccee38df037", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202102090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88d4a16e-6680-40a9-9038-c94182731ba8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bfbc062d-483e-4d25-957e-007ddaf3b6e4", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11657,Microsoft.Compute/GetVMImageFromLocation30Min;72657", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:bfbc062d-483e-4d25-957e-007ddaf3b6e4", - "Expires" : "-1", - "x-ms-request-id" : "c4952ba6-d51b-4fc8-9696-4439ebc255cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202102090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202102090\"\r\n}", - "x-ms-client-request-id" : "88d4a16e-6680-40a9-9038-c94182731ba8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202101121?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "260d14aa-3c79-42ae-8d20-c02640e8d57e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "faab7f13-0950-4437-be4f-8463b98ccdc3", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11655,Microsoft.Compute/GetVMImageFromLocation30Min;72655", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:faab7f13-0950-4437-be4f-8463b98ccdc3", - "Expires" : "-1", - "x-ms-request-id" : "5a4e8cf3-a955-4922-b0ae-a4e303378c77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101121\"\r\n}", - "x-ms-client-request-id" : "260d14aa-3c79-42ae-8d20-c02640e8d57e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202010221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7a0a0ef-744d-48c1-ae45-6f163bf27e69", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c389b9ad-1ddc-4ec6-968f-ff82152ef489", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11663,Microsoft.Compute/GetVMImageFromLocation30Min;72663", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:c389b9ad-1ddc-4ec6-968f-ff82152ef489", - "Expires" : "-1", - "x-ms-request-id" : "7bec1155-6fbf-4f06-a83f-ef0102ebbc5a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202010221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202010221\"\r\n}", - "x-ms-client-request-id" : "b7a0a0ef-744d-48c1-ae45-6f163bf27e69", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202105111?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aa6d82c-ca23-47e5-bf26-1be0e1fdb801", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d431b83f-0df7-41b8-8220-5ba96e29ec44", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11654,Microsoft.Compute/GetVMImageFromLocation30Min;72654", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:d431b83f-0df7-41b8-8220-5ba96e29ec44", - "Expires" : "-1", - "x-ms-request-id" : "a6680437-b1e1-4dac-9a11-097b0087964e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202105111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202105111\"\r\n}", - "x-ms-client-request-id" : "6aa6d82c-ca23-47e5-bf26-1be0e1fdb801", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202106221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b2dfaae-cefa-46c7-bf57-ba4357865714", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "353595eb-6c21-4034-86fb-957794841bc1", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11653,Microsoft.Compute/GetVMImageFromLocation30Min;72653", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:353595eb-6c21-4034-86fb-957794841bc1", - "Expires" : "-1", - "x-ms-request-id" : "e937212d-b2b9-4bd4-8bcd-f3d8fd9dba30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202106221\"\r\n}", - "x-ms-client-request-id" : "9b2dfaae-cefa-46c7-bf57-ba4357865714", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202103150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45a5123f-abf2-434b-94ac-c845af5e4674", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0fad5e7-0b11-420a-9003-000dcba5575f", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11651,Microsoft.Compute/GetVMImageFromLocation30Min;72651", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:c0fad5e7-0b11-420a-9003-000dcba5575f", - "Expires" : "-1", - "x-ms-request-id" : "2761d0db-9d6e-4707-b521-900caac078c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202103150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202103150\"\r\n}", - "x-ms-client-request-id" : "45a5123f-abf2-434b-94ac-c845af5e4674", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a54e370-40df-4535-8cc2-171976d6d3e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92042af2-6aef-41f4-8517-9b45487e5158", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11652,Microsoft.Compute/GetVMImageFromLocation30Min;72652", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:92042af2-6aef-41f4-8517-9b45487e5158", - "Expires" : "-1", - "x-ms-request-id" : "d9afff56-3cb4-4f5a-8feb-169795f71a8d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202107200\"\r\n}", - "x-ms-client-request-id" : "8a54e370-40df-4535-8cc2-171976d6d3e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202011110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca5abc8f-681d-4e22-ba4b-fa8fa0cfa3c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf26cb72-30dd-4b95-88e8-d847b3161c60", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11656,Microsoft.Compute/GetVMImageFromLocation30Min;72656", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:bf26cb72-30dd-4b95-88e8-d847b3161c60", - "Expires" : "-1", - "x-ms-request-id" : "f3864b5e-819f-48cb-bd99-921512e70e26", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202011110\"\r\n}", - "x-ms-client-request-id" : "ca5abc8f-681d-4e22-ba4b-fa8fa0cfa3c5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e0ba556-06af-4d6c-98fa-3835ac96a12f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f631b6af-36ad-423a-8d5c-d2ed7109e63d", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11649,Microsoft.Compute/GetVMImageFromLocation30Min;72649", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:f631b6af-36ad-423a-8d5c-d2ed7109e63d", - "Expires" : "-1", - "x-ms-request-id" : "1feb54a8-d311-46ca-897b-562cee30cc7c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202103250\"\r\n}", - "x-ms-client-request-id" : "1e0ba556-06af-4d6c-98fa-3835ac96a12f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202103230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e143ee97-ac58-419a-846d-235ff41617fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c58146e1-e860-4288-99b8-a7395ba103e2", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11648,Microsoft.Compute/GetVMImageFromLocation30Min;72648", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:c58146e1-e860-4288-99b8-a7395ba103e2", - "Expires" : "-1", - "x-ms-request-id" : "94373d30-4bce-4fcf-851f-5972e7d45239", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202103230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202103230\"\r\n}", - "x-ms-client-request-id" : "e143ee97-ac58-419a-846d-235ff41617fe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202101080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a992d85-9325-4de4-a1b3-b220bc5375c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9590f412-1378-4aef-ad2f-104837ba8946", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11659,Microsoft.Compute/GetVMImageFromLocation30Min;72659", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:9590f412-1378-4aef-ad2f-104837ba8946", - "Expires" : "-1", - "x-ms-request-id" : "3ac839f3-167b-4e0a-a86a-fa16844f3351", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101080\"\r\n}", - "x-ms-client-request-id" : "1a992d85-9325-4de4-a1b3-b220bc5375c0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202102240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff494f6e-6bee-4769-ab6e-1fafaf10c21b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71ae3d41-e856-4180-8380-5a74d7b2882e", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11647,Microsoft.Compute/GetVMImageFromLocation30Min;72647", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:71ae3d41-e856-4180-8380-5a74d7b2882e", - "Expires" : "-1", - "x-ms-request-id" : "69c6daba-e0cd-4c22-bb26-0aac903d5d71", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202102240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202102240\"\r\n}", - "x-ms-client-request-id" : "ff494f6e-6bee-4769-ab6e-1fafaf10c21b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202102220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a80a096a-a343-4c08-b83b-b3ae25ee23ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f590b01-dd02-4a1e-892d-d9c445b6ed71", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11650,Microsoft.Compute/GetVMImageFromLocation30Min;72650", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:9f590b01-dd02-4a1e-892d-d9c445b6ed71", - "Expires" : "-1", - "x-ms-request-id" : "731e6e5f-ba17-481e-9e4f-d9149ab69b7a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202102220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202102220\"\r\n}", - "x-ms-client-request-id" : "a80a096a-a343-4c08-b83b-b3ae25ee23ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202101300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bc98c9f-817d-4279-9d45-c3075d0d56d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d8e6dfa-a3a8-4abd-9f0e-def5535c03af", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11646,Microsoft.Compute/GetVMImageFromLocation30Min;72646", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:8d8e6dfa-a3a8-4abd-9f0e-def5535c03af", - "Expires" : "-1", - "x-ms-request-id" : "8df28683-9f3d-4629-9b47-4036879fee8f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202101300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202101300\"\r\n}", - "x-ms-client-request-id" : "0bc98c9f-817d-4279-9d45-c3075d0d56d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c261738e-ffe8-4669-985a-77b372af6c01", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "743379e5-cdf5-47af-a8b3-40ba2725b701", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11645,Microsoft.Compute/GetVMImageFromLocation30Min;72645", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130149Z:743379e5-cdf5-47af-a8b3-40ba2725b701", - "Expires" : "-1", - "x-ms-request-id" : "56683457-6a2d-4f0c-97c5-fcaf55bdadef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202104150\"\r\n}", - "x-ms-client-request-id" : "c261738e-ffe8-4669-985a-77b372af6c01", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202011250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f90fe85-98aa-489c-94e2-67ec4f22a8b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09af0bf3-a21f-458f-b669-3affccde1fe6", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11642,Microsoft.Compute/GetVMImageFromLocation30Min;72642", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130150Z:09af0bf3-a21f-458f-b669-3affccde1fe6", - "Expires" : "-1", - "x-ms-request-id" : "fee3f326-c5d1-4215-afe7-82d2d4590f1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202011250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202011250\"\r\n}", - "x-ms-client-request-id" : "0f90fe85-98aa-489c-94e2-67ec4f22a8b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202104151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bb1fdb0-85d4-463c-bd54-bf6a54ee8be9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "100b82be-72d3-4a3c-af7f-91d4dc136d70", - "Date" : "Tue, 24 May 2022 13:01:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11643,Microsoft.Compute/GetVMImageFromLocation30Min;72643", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130150Z:100b82be-72d3-4a3c-af7f-91d4dc136d70", - "Expires" : "-1", - "x-ms-request-id" : "f7560010-1ac2-4f23-b899-2cd04fc7d329", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202104151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202104151\"\r\n}", - "x-ms-client-request-id" : "0bb1fdb0-85d4-463c-bd54-bf6a54ee8be9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy/skus/20_10-gen2/versions/20.10.202105040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7ad0a35-c9f1-494d-8a89-53ccaad6b559", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "779", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9fda4dda-cd02-41b6-a5af-623039e72d2d", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11644,Microsoft.Compute/GetVMImageFromLocation30Min;72644", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130150Z:9fda4dda-cd02-41b6-a5af-623039e72d2d", - "Expires" : "-1", - "x-ms-request-id" : "046c2935-7a01-4fa5-a549-f42ce848f947", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202105040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy/Skus/20_10-gen2/Versions/20.10.202105040\"\r\n}", - "x-ms-client-request-id" : "d7ad0a35-c9f1-494d-8a89-53ccaad6b559", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d667b36-d415-4cd2-aa62-8736499d62c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "431", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99fe0b02-ea79-4e4a-986c-4dd06b1ccad0", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9962,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130150Z:99fe0b02-ea79-4e4a-986c-4dd06b1ccad0", - "Expires" : "-1", - "x-ms-request-id" : "900d9a93-ea8c-47ab-a3b0-3b6fc887e074", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "3d667b36-d415-4cd2-aa62-8736499d62c7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6422022f-8a74-4348-b69f-a328f7d4158d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2292", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94faab2d-f9a5-4e96-9167-80a6998373e6", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15880,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130150Z:94faab2d-f9a5-4e96-9167-80a6998373e6", - "Expires" : "-1", - "x-ms-request-id" : "f7941125-2036-4927-b43b-2f5974bfb5ce", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202106221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202106250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202106300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107200\"\r\n }\r\n]", - "x-ms-client-request-id" : "6422022f-8a74-4348-b69f-a328f7d4158d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202106221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7aa583e6-2991-4bee-a63b-bf877c8b077e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28b5a9aa-1381-43b6-8f39-aff7f49cb40d", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11641,Microsoft.Compute/GetVMImageFromLocation30Min;72641", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:28b5a9aa-1381-43b6-8f39-aff7f49cb40d", - "Expires" : "-1", - "x-ms-request-id" : "2aa91bca-5feb-44cd-9ebf-d8c1362cf813", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202106221\"\r\n}", - "x-ms-client-request-id" : "7aa583e6-2991-4bee-a63b-bf877c8b077e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202106300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90270d11-2719-40da-add3-7f2b00db9b39", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e388c50-e384-47dc-88d4-09f1924cb182", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11640,Microsoft.Compute/GetVMImageFromLocation30Min;72640", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:7e388c50-e384-47dc-88d4-09f1924cb182", - "Expires" : "-1", - "x-ms-request-id" : "fddbcb32-19e0-4374-8556-246f7c422d97", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202106300\"\r\n}", - "x-ms-client-request-id" : "90270d11-2719-40da-add3-7f2b00db9b39", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31de9f41-a744-4180-8fae-ab7207886054", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5774b42-1690-4ab2-a78c-f4748b37ce36", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11639,Microsoft.Compute/GetVMImageFromLocation30Min;72639", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:c5774b42-1690-4ab2-a78c-f4748b37ce36", - "Expires" : "-1", - "x-ms-request-id" : "8cbc677f-1bbf-4086-ac0d-1945646883a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107200\"\r\n}", - "x-ms-client-request-id" : "31de9f41-a744-4180-8fae-ab7207886054", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202106250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7269e25b-ebb4-4a17-b237-678b9a639cc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3cfc902-2c0d-4854-9ee9-429c58b06be4", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11638,Microsoft.Compute/GetVMImageFromLocation30Min;72638", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:b3cfc902-2c0d-4854-9ee9-429c58b06be4", - "Expires" : "-1", - "x-ms-request-id" : "b3cca2fa-d0fd-4a08-98db-d2939f19d149", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202106250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202106250\"\r\n}", - "x-ms-client-request-id" : "7269e25b-ebb4-4a17-b237-678b9a639cc0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202107130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8021b3c5-ecbf-4b52-aa69-c4c79c3a23de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7d45a6e-6653-4360-9c46-6b75a65ddf68", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11636,Microsoft.Compute/GetVMImageFromLocation30Min;72636", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:a7d45a6e-6653-4360-9c46-6b75a65ddf68", - "Expires" : "-1", - "x-ms-request-id" : "92efad3c-acf9-49b3-9cfb-82a9a939f2e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107130\"\r\n}", - "x-ms-client-request-id" : "8021b3c5-ecbf-4b52-aa69-c4c79c3a23de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202107070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7da4b153-94e8-4182-b1c4-1771827f01fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b14d853-9873-4f4f-90dc-d0144988e54b", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11635,Microsoft.Compute/GetVMImageFromLocation30Min;72635", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:6b14d853-9873-4f4f-90dc-d0144988e54b", - "Expires" : "-1", - "x-ms-request-id" : "d6c314da-c88b-4320-aa52-d949531966a6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107070\"\r\n}", - "x-ms-client-request-id" : "7da4b153-94e8-4182-b1c4-1771827f01fb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-groovy-daily/skus/20_10-daily-gen2/versions/20.10.202107090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11313178-0759-430b-a0db-cfb47f77700a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbfd3966-53b8-497c-a95b-4ac66214c7ce", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11637,Microsoft.Compute/GetVMImageFromLocation30Min;72637", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:cbfd3966-53b8-497c-a95b-4ac66214c7ce", - "Expires" : "-1", - "x-ms-request-id" : "c3cf6edc-d395-4c42-bc38-bdfbc8c5cfab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"20.10.202107090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-groovy-daily/Skus/20_10-daily-gen2/Versions/20.10.202107090\"\r\n}", - "x-ms-client-request-id" : "11313178-0759-430b-a0db-cfb47f77700a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "850b67d2-a3fd-414e-8327-ed726ec6d1d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "815", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa50c08a-6b48-4a1e-860a-84e84c5112ff", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9961,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:fa50c08a-6b48-4a1e-860a-84e84c5112ff", - "Expires" : "-1", - "x-ms-request-id" : "e2eff230-7ac1-4b90-b282-4566fc930560", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "850b67d2-a3fd-414e-8327-ed726ec6d1d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81114ed7-bd9e-454d-98fd-031d96a6192b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4357", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "752d4ef2-c1c8-4cb6-838d-69b366e86c1b", - "Date" : "Tue, 24 May 2022 13:01:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15879,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:752d4ef2-c1c8-4cb6-838d-69b366e86c1b", - "Expires" : "-1", - "x-ms-request-id" : "e4f8ba36-6584-4d89-b9a3-a4eecdb1cc8a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202104220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202104220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202105111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202105111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202106221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202108310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202108310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202109240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202110250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202111100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202111300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202201180\"\r\n }\r\n]", - "x-ms-client-request-id" : "81114ed7-bd9e-454d-98fd-031d96a6192b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202109240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbde34ac-fe5d-4fa6-941e-dab1da5bfef9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63b4e80d-19bd-4050-b664-e389d20bf4bb", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11632,Microsoft.Compute/GetVMImageFromLocation30Min;72632", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:63b4e80d-19bd-4050-b664-e389d20bf4bb", - "Expires" : "-1", - "x-ms-request-id" : "80114e57-0654-4649-9d28-c4eb11550ed9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202109240\"\r\n}", - "x-ms-client-request-id" : "dbde34ac-fe5d-4fa6-941e-dab1da5bfef9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202111300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25dd5e55-7168-4fac-9ea9-65255b4a9f61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b6ffd21-74ea-48ea-bd02-ae2bae1245df", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11630,Microsoft.Compute/GetVMImageFromLocation30Min;72630", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:0b6ffd21-74ea-48ea-bd02-ae2bae1245df", - "Expires" : "-1", - "x-ms-request-id" : "b1b13bbf-3c63-44e1-b60c-168869fde22f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202111300\"\r\n}", - "x-ms-client-request-id" : "25dd5e55-7168-4fac-9ea9-65255b4a9f61", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202111100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "040a7e12-ac90-4695-9a80-226c86a0c382", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7501c35f-d403-4e65-bdf7-7e8ed79e22fb", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11631,Microsoft.Compute/GetVMImageFromLocation30Min;72631", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:7501c35f-d403-4e65-bdf7-7e8ed79e22fb", - "Expires" : "-1", - "x-ms-request-id" : "df2c610b-b87d-4020-8333-e1ae7a033090", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202111100\"\r\n}", - "x-ms-client-request-id" : "040a7e12-ac90-4695-9a80-226c86a0c382", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eea871c5-525a-45c2-bbab-74b90b02ae7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e2f5959-2e7e-4d1f-9344-07a34620bc7d", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11627,Microsoft.Compute/GetVMImageFromLocation30Min;72627", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:2e2f5959-2e7e-4d1f-9344-07a34620bc7d", - "Expires" : "-1", - "x-ms-request-id" : "9461abab-b201-4fef-ba99-f0891029e033", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202201060\"\r\n}", - "x-ms-client-request-id" : "eea871c5-525a-45c2-bbab-74b90b02ae7a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fb4b870-8743-41c7-9809-9967acac3360", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49c6b241-6e5a-4c29-a1f3-04571404b752", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11628,Microsoft.Compute/GetVMImageFromLocation30Min;72628", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:49c6b241-6e5a-4c29-a1f3-04571404b752", - "Expires" : "-1", - "x-ms-request-id" : "66e41e1f-5603-4e88-8be8-e7861f63b5c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202201180\"\r\n}", - "x-ms-client-request-id" : "9fb4b870-8743-41c7-9809-9967acac3360", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202108310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da8074ae-4074-4abe-b4eb-482bb93db5b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4863467-3efc-4793-8e9b-0f24ca71ba55", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11629,Microsoft.Compute/GetVMImageFromLocation30Min;72629", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:f4863467-3efc-4793-8e9b-0f24ca71ba55", - "Expires" : "-1", - "x-ms-request-id" : "832e6b5e-3080-4f5a-86e0-63b229052986", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202108310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202108310\"\r\n}", - "x-ms-client-request-id" : "da8074ae-4074-4abe-b4eb-482bb93db5b8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202105111?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9813de6d-6f60-42bc-991f-aba311472819", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c9537df-58aa-4df0-beee-b5400362d64d", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11634,Microsoft.Compute/GetVMImageFromLocation30Min;72634", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:2c9537df-58aa-4df0-beee-b5400362d64d", - "Expires" : "-1", - "x-ms-request-id" : "117d6ed1-a299-4353-b2ae-9c1fef962487", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202105111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202105111\"\r\n}", - "x-ms-client-request-id" : "9813de6d-6f60-42bc-991f-aba311472819", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202106221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5e2caf6-984c-4168-a68a-2508b3375358", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a83eee7-61d6-4592-81a4-b9b2d704c130", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11626,Microsoft.Compute/GetVMImageFromLocation30Min;72626", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:4a83eee7-61d6-4592-81a4-b9b2d704c130", - "Expires" : "-1", - "x-ms-request-id" : "3d67c559-b495-4836-9b23-c530ac94aa19", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202106221\"\r\n}", - "x-ms-client-request-id" : "f5e2caf6-984c-4168-a68a-2508b3375358", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e611f98-a7e6-441d-9d56-1a523956cda8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7c5125f-1af7-4e5d-b63c-04fbac842d84", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11633,Microsoft.Compute/GetVMImageFromLocation30Min;72633", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:c7c5125f-1af7-4e5d-b63c-04fbac842d84", - "Expires" : "-1", - "x-ms-request-id" : "eef0ddb2-54ba-4ef3-a83c-a4b2be7c5f93", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202107200\"\r\n}", - "x-ms-client-request-id" : "4e611f98-a7e6-441d-9d56-1a523956cda8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67627e11-2278-466d-84e7-d4acb430004e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3feca33c-d780-4895-a60e-5b7d2319e4d0", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11625,Microsoft.Compute/GetVMImageFromLocation30Min;72625", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:3feca33c-d780-4895-a60e-5b7d2319e4d0", - "Expires" : "-1", - "x-ms-request-id" : "21058697-3aba-44e5-aeb0-9363285111bc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202109280\"\r\n}", - "x-ms-client-request-id" : "67627e11-2278-466d-84e7-d4acb430004e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202110250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d92ce797-d639-4190-9af0-33ceadcfa662", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ceb1354f-6e0f-41df-bf38-ce0609b94a87", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11622,Microsoft.Compute/GetVMImageFromLocation30Min;72622", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:ceb1354f-6e0f-41df-bf38-ce0609b94a87", - "Expires" : "-1", - "x-ms-request-id" : "45f88678-860c-41ac-b30b-69fd30f19d94", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202110250\"\r\n}", - "x-ms-client-request-id" : "d92ce797-d639-4190-9af0-33ceadcfa662", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202104220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c098ad89-c96a-445b-8911-ba0598c692a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61ef839c-29cf-4e8a-b288-d25afc59a264", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11623,Microsoft.Compute/GetVMImageFromLocation30Min;72623", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:61ef839c-29cf-4e8a-b288-d25afc59a264", - "Expires" : "-1", - "x-ms-request-id" : "588bba92-b17d-40fa-9d72-010e730d7882", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202104220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202104220\"\r\n}", - "x-ms-client-request-id" : "c098ad89-c96a-445b-8911-ba0598c692a7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36a5dcf3-5f0c-4d00-8526-50a5de8f86c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34921617-8ea4-4538-8bae-bdd7194f8706", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11624,Microsoft.Compute/GetVMImageFromLocation30Min;72624", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:34921617-8ea4-4538-8bae-bdd7194f8706", - "Expires" : "-1", - "x-ms-request-id" : "bd301c8e-bd2d-4733-aa85-4d983985fdf7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202111210\"\r\n}", - "x-ms-client-request-id" : "36a5dcf3-5f0c-4d00-8526-50a5de8f86c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04/versions/21.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "782dcbcd-a3a2-4f0c-876d-2106b0d6d30c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "782", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "347014d5-74bd-45ce-a02b-8db729eb6b5b", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11621,Microsoft.Compute/GetVMImageFromLocation30Min;72621", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130151Z:347014d5-74bd-45ce-a02b-8db729eb6b5b", - "Expires" : "-1", - "x-ms-request-id" : "b9e1fe3f-685d-46bd-a6b4-53d2676b9663", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04/Versions/21.04.202201110\"\r\n}", - "x-ms-client-request-id" : "782dcbcd-a3a2-4f0c-876d-2106b0d6d30c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "66ba2175-2f73-43a1-a598-bb6d82307a9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4427", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9500c8ee-ee7a-4cd0-864e-b57fb63dae71", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15878,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:9500c8ee-ee7a-4cd0-864e-b57fb63dae71", - "Expires" : "-1", - "x-ms-request-id" : "65eb6883-50dc-4f28-a148-f2bb37148c79", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202104220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202104220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202105111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202105111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202106221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202108310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202108310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202109240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202110250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202111100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202111210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202111300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202201180\"\r\n }\r\n]", - "x-ms-client-request-id" : "66ba2175-2f73-43a1-a598-bb6d82307a9f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c6eb31a-e248-44f8-aa10-6509b5415256", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2cce805c-b9a7-478f-b3c0-8428fcbbe661", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11618,Microsoft.Compute/GetVMImageFromLocation30Min;72618", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:2cce805c-b9a7-478f-b3c0-8428fcbbe661", - "Expires" : "-1", - "x-ms-request-id" : "b6390aa1-4c9b-4753-b92c-80a1667dd2a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202107200\"\r\n}", - "x-ms-client-request-id" : "7c6eb31a-e248-44f8-aa10-6509b5415256", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202105111?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "688f80d9-6ba6-4d02-9970-660f71579b41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3f4d295-a050-47fd-a197-1ee9ec875a3b", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11620,Microsoft.Compute/GetVMImageFromLocation30Min;72620", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:b3f4d295-a050-47fd-a197-1ee9ec875a3b", - "Expires" : "-1", - "x-ms-request-id" : "6debfbac-e89f-4cbd-b1e0-3f1d254fac17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202105111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202105111\"\r\n}", - "x-ms-client-request-id" : "688f80d9-6ba6-4d02-9970-660f71579b41", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202109240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0307e79-126e-4e0f-a7c3-5129a00769a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9728afb2-e22e-4511-8bd6-43ad6c8935c7", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11616,Microsoft.Compute/GetVMImageFromLocation30Min;72616", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:9728afb2-e22e-4511-8bd6-43ad6c8935c7", - "Expires" : "-1", - "x-ms-request-id" : "7db6a135-e5f9-40fa-aac5-a41521f98329", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202109240\"\r\n}", - "x-ms-client-request-id" : "a0307e79-126e-4e0f-a7c3-5129a00769a7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ce0c4e8-b69d-4b2a-ac97-60f663aeaef9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0384c180-efaa-46c5-b4c4-1105e3db256a", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11615,Microsoft.Compute/GetVMImageFromLocation30Min;72615", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:0384c180-efaa-46c5-b4c4-1105e3db256a", - "Expires" : "-1", - "x-ms-request-id" : "f79f1657-bf88-4f07-9966-03655b67002b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202201180\"\r\n}", - "x-ms-client-request-id" : "6ce0c4e8-b69d-4b2a-ac97-60f663aeaef9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202110250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2790d38-9c8c-4741-8e5a-b025fc33081f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "721231a1-3e7c-4fd6-be6c-32048dffcfd1", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11617,Microsoft.Compute/GetVMImageFromLocation30Min;72617", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:721231a1-3e7c-4fd6-be6c-32048dffcfd1", - "Expires" : "-1", - "x-ms-request-id" : "dc44db10-d6a6-4e7d-afa7-c2db07db7014", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202110250\"\r\n}", - "x-ms-client-request-id" : "d2790d38-9c8c-4741-8e5a-b025fc33081f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e99956f-f583-4770-b235-7304c24fa5b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a702416-d933-44bf-a891-34c57a840f5d", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11614,Microsoft.Compute/GetVMImageFromLocation30Min;72614", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:5a702416-d933-44bf-a891-34c57a840f5d", - "Expires" : "-1", - "x-ms-request-id" : "91150928-c899-4b48-8281-a72e3ecc8bc0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202201110\"\r\n}", - "x-ms-client-request-id" : "3e99956f-f583-4770-b235-7304c24fa5b5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202111300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e04c6aeb-ff19-4432-ac0e-7c4f2f81ada8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "289a891d-2674-4ef0-b050-159fb3ee9cf6", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11612,Microsoft.Compute/GetVMImageFromLocation30Min;72612", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:289a891d-2674-4ef0-b050-159fb3ee9cf6", - "Expires" : "-1", - "x-ms-request-id" : "a6b4aeb7-c55a-40c4-aa14-4e1819c93800", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202111300\"\r\n}", - "x-ms-client-request-id" : "e04c6aeb-ff19-4432-ac0e-7c4f2f81ada8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202111210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d077374c-8615-4fec-9ade-339130c08078", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8941929-3145-4982-9d59-cc598418c60f", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11613,Microsoft.Compute/GetVMImageFromLocation30Min;72613", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:d8941929-3145-4982-9d59-cc598418c60f", - "Expires" : "-1", - "x-ms-request-id" : "fec3ad76-33d7-4717-b02a-b59c994a0c6d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202111210\"\r\n}", - "x-ms-client-request-id" : "d077374c-8615-4fec-9ade-339130c08078", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202111100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c19dfad9-3ed3-4b89-9c3f-1a9e65077f73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1f07b16-3058-4223-bce9-2b09d1446d3a", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11610,Microsoft.Compute/GetVMImageFromLocation30Min;72610", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:c1f07b16-3058-4223-bce9-2b09d1446d3a", - "Expires" : "-1", - "x-ms-request-id" : "e099a142-2cff-4d3b-a909-4f5868a45bee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202111100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202111100\"\r\n}", - "x-ms-client-request-id" : "c19dfad9-3ed3-4b89-9c3f-1a9e65077f73", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202104220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c8247f3-d5f0-4202-8985-9cec3ac74e28", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80378919-8480-4941-95e5-8fe68d60914d", - "Date" : "Tue, 24 May 2022 13:01:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11619,Microsoft.Compute/GetVMImageFromLocation30Min;72619", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:80378919-8480-4941-95e5-8fe68d60914d", - "Expires" : "-1", - "x-ms-request-id" : "1241116c-83a3-410f-9698-8b3b00ac1d3b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202104220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202104220\"\r\n}", - "x-ms-client-request-id" : "1c8247f3-d5f0-4202-8985-9cec3ac74e28", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d123ba04-c3e9-4bf1-b75a-51892d3a9db6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "813b25d9-4630-47b7-a0a9-9640c5e4d91b", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11611,Microsoft.Compute/GetVMImageFromLocation30Min;72611", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:813b25d9-4630-47b7-a0a9-9640c5e4d91b", - "Expires" : "-1", - "x-ms-request-id" : "f2885087-0d98-4f12-ad74-789c4f366efb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202201060\"\r\n}", - "x-ms-client-request-id" : "d123ba04-c3e9-4bf1-b75a-51892d3a9db6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202106221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f708350d-f96f-42fa-a6a3-326da9ade564", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84ca9e25-c6e8-4b8d-8a6f-7ae71a2a7819", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11609,Microsoft.Compute/GetVMImageFromLocation30Min;72609", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:84ca9e25-c6e8-4b8d-8a6f-7ae71a2a7819", - "Expires" : "-1", - "x-ms-request-id" : "3b521f1c-8550-418c-9abe-26d1b5d42c66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202106221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202106221\"\r\n}", - "x-ms-client-request-id" : "f708350d-f96f-42fa-a6a3-326da9ade564", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e1ac29d-fee6-45cb-b4b5-1c4e2ed7d81d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28fc1165-ca4a-41e0-9e59-6d4d9869a33e", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11608,Microsoft.Compute/GetVMImageFromLocation30Min;72608", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:28fc1165-ca4a-41e0-9e59-6d4d9869a33e", - "Expires" : "-1", - "x-ms-request-id" : "5fceb253-f2cd-4681-a656-47acaa71fd00", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202109280\"\r\n}", - "x-ms-client-request-id" : "8e1ac29d-fee6-45cb-b4b5-1c4e2ed7d81d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute/skus/21_04-gen2/versions/21.04.202108310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9d33981-d3d7-4ae6-9621-3c6a480b6fac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b2b7bb8-a232-4309-adcc-23bd49f536dd", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11607,Microsoft.Compute/GetVMImageFromLocation30Min;72607", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:9b2b7bb8-a232-4309-adcc-23bd49f536dd", - "Expires" : "-1", - "x-ms-request-id" : "9b5a1c03-4e79-4f21-842f-232e9eaa63a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202108310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute/Skus/21_04-gen2/Versions/21.04.202108310\"\r\n}", - "x-ms-client-request-id" : "c9d33981-d3d7-4ae6-9621-3c6a480b6fac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3da71063-de81-45c3-9f7d-1cbd604bd969", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "851", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "896486c3-8436-4db3-9a95-5965d9dc5241", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9960,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130152Z:896486c3-8436-4db3-9a95-5965d9dc5241", - "Expires" : "-1", - "x-ms-request-id" : "4466e4dc-4bba-40a5-9cfc-0063d50310a7", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_04-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_04-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "3da71063-de81-45c3-9f7d-1cbd604bd969", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df4f2315-177f-40ea-b172-5b362c29fa43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2264", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf985ffd-e6f9-4308-8a96-ed1f5d18314f", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15877,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:bf985ffd-e6f9-4308-8a96-ed1f5d18314f", - "Expires" : "-1", - "x-ms-request-id" : "b879bbfb-5287-47c8-8b16-4eba9f21cdc2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202112180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201180\"\r\n }\r\n]", - "x-ms-client-request-id" : "df4f2315-177f-40ea-b172-5b362c29fa43", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51363582-0139-4871-8329-3785dc3cc520", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0aec6c01-0910-4a4f-96cd-b6c22143979d", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11606,Microsoft.Compute/GetVMImageFromLocation30Min;72606", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:0aec6c01-0910-4a4f-96cd-b6c22143979d", - "Expires" : "-1", - "x-ms-request-id" : "6846dfce-94c9-4b7b-97a4-7c93649e03b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201060\"\r\n}", - "x-ms-client-request-id" : "51363582-0139-4871-8329-3785dc3cc520", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f90f2f7-d702-4df0-b5fa-5ecc285fa88e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05a3a1ca-718a-4ad6-b8cd-6e2bbf31c611", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11603,Microsoft.Compute/GetVMImageFromLocation30Min;72603", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:05a3a1ca-718a-4ad6-b8cd-6e2bbf31c611", - "Expires" : "-1", - "x-ms-request-id" : "86946a62-d562-4ad5-8917-962578c13054", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201070\"\r\n}", - "x-ms-client-request-id" : "9f90f2f7-d702-4df0-b5fa-5ecc285fa88e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202201150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb571101-0156-4937-b103-b9dee85d5043", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "85ce50a4-9f38-4e4f-b112-c4bfa5fe0383", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11604,Microsoft.Compute/GetVMImageFromLocation30Min;72604", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:85ce50a4-9f38-4e4f-b112-c4bfa5fe0383", - "Expires" : "-1", - "x-ms-request-id" : "73561efe-d3a3-407f-8456-0f72179b7258", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201150\"\r\n}", - "x-ms-client-request-id" : "cb571101-0156-4937-b103-b9dee85d5043", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ec429f8-fc72-4a06-8222-d086501979c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b62e6244-b34e-401d-a519-24e4cfaed353", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11602,Microsoft.Compute/GetVMImageFromLocation30Min;72602", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:b62e6244-b34e-401d-a519-24e4cfaed353", - "Expires" : "-1", - "x-ms-request-id" : "ce8f9994-470d-4830-9bd0-e8745fb71f8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201180\"\r\n}", - "x-ms-client-request-id" : "7ec429f8-fc72-4a06-8222-d086501979c1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf3ad2b8-f5bd-45cb-828f-ea65ea3c76d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b216531-f44f-483f-b3fb-e0f52fd725a5", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11601,Microsoft.Compute/GetVMImageFromLocation30Min;72601", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:4b216531-f44f-483f-b3fb-e0f52fd725a5", - "Expires" : "-1", - "x-ms-request-id" : "d01d87d7-8c7b-4b3a-b437-e50aa40cf383", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201110\"\r\n}", - "x-ms-client-request-id" : "bf3ad2b8-f5bd-45cb-828f-ea65ea3c76d7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202112180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8d0974c-aa8a-4b89-b46c-644a296f9dac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c138755-82b8-494d-916e-e16409f7f0c8", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11600,Microsoft.Compute/GetVMImageFromLocation30Min;72600", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:5c138755-82b8-494d-916e-e16409f7f0c8", - "Expires" : "-1", - "x-ms-request-id" : "015d5646-28b1-4560-a236-5e8e76b2c10d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202112180\"\r\n}", - "x-ms-client-request-id" : "e8d0974c-aa8a-4b89-b46c-644a296f9dac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily/versions/21.04.202201130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "403ea019-1d0f-4368-a3e7-34a2cfc91fbf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad1ca893-f431-4877-8aab-3eabde98ec70", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11605,Microsoft.Compute/GetVMImageFromLocation30Min;72605", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:ad1ca893-f431-4877-8aab-3eabde98ec70", - "Expires" : "-1", - "x-ms-request-id" : "76d91763-d80a-4dbb-a577-b4ce12f83464", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily/Versions/21.04.202201130\"\r\n}", - "x-ms-client-request-id" : "403ea019-1d0f-4368-a3e7-34a2cfc91fbf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5385b99e-cc39-4da8-8b5e-5db32bad8bf0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2484614-b5bd-4578-aa1b-bedcbe474c8d", - "Date" : "Tue, 24 May 2022 13:01:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15876,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130153Z:f2484614-b5bd-4578-aa1b-bedcbe474c8d", - "Expires" : "-1", - "x-ms-request-id" : "fb11f219-3e17-44c6-9e2a-e79959127c8e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202112180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201180\"\r\n }\r\n]", - "x-ms-client-request-id" : "5385b99e-cc39-4da8-8b5e-5db32bad8bf0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45794435-3dd6-4906-a37e-1acbbccc9df4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c9cf3fe-e1a8-4a72-9858-c76d52f1938b", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11595,Microsoft.Compute/GetVMImageFromLocation30Min;72595", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:5c9cf3fe-e1a8-4a72-9858-c76d52f1938b", - "Expires" : "-1", - "x-ms-request-id" : "238449e8-cc3b-42c1-b4c0-0c12b0865a7f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201110\"\r\n}", - "x-ms-client-request-id" : "45794435-3dd6-4906-a37e-1acbbccc9df4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b52feaa0-4377-4338-93fd-0bb9e8bac792", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40b6ef09-1831-431e-a9b4-792c3704358d", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11598,Microsoft.Compute/GetVMImageFromLocation30Min;72598", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:40b6ef09-1831-431e-a9b4-792c3704358d", - "Expires" : "-1", - "x-ms-request-id" : "c7489a40-67ee-4240-9758-9d041ba75578", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201060\"\r\n}", - "x-ms-client-request-id" : "b52feaa0-4377-4338-93fd-0bb9e8bac792", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8b8a08a-1deb-4b6f-b7fd-889427b885ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5022634-eb06-428b-9a5d-d989eaea898e", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11596,Microsoft.Compute/GetVMImageFromLocation30Min;72596", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:b5022634-eb06-428b-9a5d-d989eaea898e", - "Expires" : "-1", - "x-ms-request-id" : "1b85a1b6-cdf6-451c-b81a-9beaaa893bee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201180\"\r\n}", - "x-ms-client-request-id" : "b8b8a08a-1deb-4b6f-b7fd-889427b885ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202112180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5cebffd-2804-45e1-a640-8c549ea4ebb3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f049a145-da16-48cc-a87a-c78efb660eb0", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11594,Microsoft.Compute/GetVMImageFromLocation30Min;72594", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:f049a145-da16-48cc-a87a-c78efb660eb0", - "Expires" : "-1", - "x-ms-request-id" : "7db0c18c-711b-4b3f-8245-9935dff22f1f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202112180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202112180\"\r\n}", - "x-ms-client-request-id" : "f5cebffd-2804-45e1-a640-8c549ea4ebb3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202201150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1b144a9-d6cf-4637-b0e1-8e7524b257be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ec65135-ebbf-4e3e-ac1f-fb5b6633e9ec", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11599,Microsoft.Compute/GetVMImageFromLocation30Min;72599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:7ec65135-ebbf-4e3e-ac1f-fb5b6633e9ec", - "Expires" : "-1", - "x-ms-request-id" : "c35a8358-cdd8-4362-8933-456146bdb8f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201150\"\r\n}", - "x-ms-client-request-id" : "e1b144a9-d6cf-4637-b0e1-8e7524b257be", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202201130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1528577a-40a4-413b-923a-15e65b76486f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b979b34-b4fb-475b-8977-26d2579c7cba", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11597,Microsoft.Compute/GetVMImageFromLocation30Min;72597", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:6b979b34-b4fb-475b-8977-26d2579c7cba", - "Expires" : "-1", - "x-ms-request-id" : "3038cf13-d808-4a0b-8466-c89a150fd2de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201130\"\r\n}", - "x-ms-client-request-id" : "1528577a-40a4-413b-923a-15e65b76486f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-hirsute-daily/skus/21_04-daily-gen2/versions/21.04.202201070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "825b5a94-d2f4-477c-bbc0-64c3dde6b1bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "792", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5167ffdb-2cb9-4fa1-80a1-21a7e906000d", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11593,Microsoft.Compute/GetVMImageFromLocation30Min;72593", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:5167ffdb-2cb9-4fa1-80a1-21a7e906000d", - "Expires" : "-1", - "x-ms-request-id" : "84512b7e-d064-4394-a4e5-1aa702690adc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.04.202201070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-hirsute-daily/Skus/21_04-daily-gen2/Versions/21.04.202201070\"\r\n}", - "x-ms-client-request-id" : "825b5a94-d2f4-477c-bbc0-64c3dde6b1bb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7acbfbfd-1844-4da5-a136-20f5f9e5fdf2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "813", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3451bf9c-e5e7-4d64-a472-55364d915456", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9959,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:3451bf9c-e5e7-4d64-a472-55364d915456", - "Expires" : "-1", - "x-ms-request-id" : "4632a429-bfa1-44d5-a99f-62651acfe4dd", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_10-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "7acbfbfd-1844-4da5-a136-20f5f9e5fdf2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68c38532-e457-4134-9895-af0828e97a10", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3413", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a633f8e9-e4dc-451d-bb43-c9f975ad0c81", - "Date" : "Tue, 24 May 2022 13:01:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15875,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:a633f8e9-e4dc-451d-bb43-c9f975ad0c81", - "Expires" : "-1", - "x-ms-request-id" : "499950cf-3323-4467-b129-5fc2dca31210", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202110140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202110140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202112081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202112110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202202010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202202010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202203090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202204130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202205050\"\r\n }\r\n]", - "x-ms-client-request-id" : "68c38532-e457-4134-9895-af0828e97a10", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f398714b-6dbd-456f-8b2d-9a21d8a8093f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ecccf06-4003-424f-a648-3b8782ebca08", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11588,Microsoft.Compute/GetVMImageFromLocation30Min;72588", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:8ecccf06-4003-424f-a648-3b8782ebca08", - "Expires" : "-1", - "x-ms-request-id" : "62daed86-4994-43a7-939b-ccd739cc9076", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202201180\"\r\n}", - "x-ms-client-request-id" : "f398714b-6dbd-456f-8b2d-9a21d8a8093f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202202010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "617dbfcd-073e-48fc-8fc7-4a3e069984f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7430ffd7-7573-429a-8ae3-829ea3514b9c", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11590,Microsoft.Compute/GetVMImageFromLocation30Min;72590", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:7430ffd7-7573-429a-8ae3-829ea3514b9c", - "Expires" : "-1", - "x-ms-request-id" : "1ea7e434-8d95-41ab-9edb-a1d279d359b4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202202010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202202010\"\r\n}", - "x-ms-client-request-id" : "617dbfcd-073e-48fc-8fc7-4a3e069984f8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96bc9513-96fd-4b1f-88a7-0764fccf3012", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8211ac4d-1dd5-408a-9d59-45cebabbd077", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11582,Microsoft.Compute/GetVMImageFromLocation30Min;72582", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:8211ac4d-1dd5-408a-9d59-45cebabbd077", - "Expires" : "-1", - "x-ms-request-id" : "f1ccd470-d4a0-4d3a-8513-375b7e4eb301", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202203090\"\r\n}", - "x-ms-client-request-id" : "96bc9513-96fd-4b1f-88a7-0764fccf3012", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202110140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "307dc367-e32f-425b-bf23-b85d5d2f71d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e32aa39-db3b-4fbb-96ad-063348c2e95a", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11589,Microsoft.Compute/GetVMImageFromLocation30Min;72589", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:1e32aa39-db3b-4fbb-96ad-063348c2e95a", - "Expires" : "-1", - "x-ms-request-id" : "14f29f16-b6ee-4e73-872b-fe0a768ef4ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202110140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202110140\"\r\n}", - "x-ms-client-request-id" : "307dc367-e32f-425b-bf23-b85d5d2f71d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202204130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8277cb31-f59d-4995-8df3-811ce673a507", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bf4eb2d-4ddf-438c-a3b7-1f0dd2c58add", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11584,Microsoft.Compute/GetVMImageFromLocation30Min;72584", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:3bf4eb2d-4ddf-438c-a3b7-1f0dd2c58add", - "Expires" : "-1", - "x-ms-request-id" : "4d527261-a49f-44a8-ab78-fc877a5eab79", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202204130\"\r\n}", - "x-ms-client-request-id" : "8277cb31-f59d-4995-8df3-811ce673a507", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "805f63ad-8989-442d-b43d-5eb7fc3a9c68", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a53440a9-ca60-4adf-bfee-3cfdf859ca43", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11587,Microsoft.Compute/GetVMImageFromLocation30Min;72587", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:a53440a9-ca60-4adf-bfee-3cfdf859ca43", - "Expires" : "-1", - "x-ms-request-id" : "9dfb5bba-c55d-44f6-a04c-6bd74825c83d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202201110\"\r\n}", - "x-ms-client-request-id" : "805f63ad-8989-442d-b43d-5eb7fc3a9c68", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202112081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "937e2743-38b6-438c-a7fc-191816c26ad4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd1039c4-e3ce-4161-86e6-20b4db657ed5", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11586,Microsoft.Compute/GetVMImageFromLocation30Min;72586", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:cd1039c4-e3ce-4161-86e6-20b4db657ed5", - "Expires" : "-1", - "x-ms-request-id" : "cf5fcbf7-a74f-4400-bb06-61300ef4699f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202112081\"\r\n}", - "x-ms-client-request-id" : "937e2743-38b6-438c-a7fc-191816c26ad4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6dc4ad2-50b9-47c0-9820-6baaa53b61a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "65d91777-b14a-4341-ab2f-7833f84f0b20", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11592,Microsoft.Compute/GetVMImageFromLocation30Min;72592", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:65d91777-b14a-4341-ab2f-7833f84f0b20", - "Expires" : "-1", - "x-ms-request-id" : "89483438-de15-4c2a-9cf6-4f453e6715c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202201060\"\r\n}", - "x-ms-client-request-id" : "e6dc4ad2-50b9-47c0-9820-6baaa53b61a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77869cd8-d8de-4f33-a131-1648c6fc2068", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42b395f2-a9c6-4e1f-9a80-5660e052292f", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11583,Microsoft.Compute/GetVMImageFromLocation30Min;72583", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:42b395f2-a9c6-4e1f-9a80-5660e052292f", - "Expires" : "-1", - "x-ms-request-id" : "4fddee67-9880-4af2-889c-1625382804a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202205050\"\r\n}", - "x-ms-client-request-id" : "77869cd8-d8de-4f33-a131-1648c6fc2068", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60b5a814-9d9e-40e5-b400-6b48bb047fa9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "657652e7-b926-47bb-850b-926e0575c226", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11585,Microsoft.Compute/GetVMImageFromLocation30Min;72585", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:657652e7-b926-47bb-850b-926e0575c226", - "Expires" : "-1", - "x-ms-request-id" : "21f82beb-3b07-4e96-b7f0-ac28b75e7b7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202204290\"\r\n}", - "x-ms-client-request-id" : "60b5a814-9d9e-40e5-b400-6b48bb047fa9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10/versions/21.10.202112110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "626d88d4-6060-4da1-a0d1-f12501dbfc0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "901", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fd5ee14-7174-4ae1-b9cf-91dba18acd4d", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11591,Microsoft.Compute/GetVMImageFromLocation30Min;72591", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130154Z:0fd5ee14-7174-4ae1-b9cf-91dba18acd4d", - "Expires" : "-1", - "x-ms-request-id" : "517bff4d-bec6-485e-895d-f70acf9c64b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10/Versions/21.10.202112110\"\r\n}", - "x-ms-client-request-id" : "626d88d4-6060-4da1-a0d1-f12501dbfc0b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fb7d1b9-688f-4a57-9b53-21e25040c8c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3468", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5fc2fdf5-91e3-46a7-b062-dc6cf0b0d748", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15874,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:5fc2fdf5-91e3-46a7-b062-dc6cf0b0d748", - "Expires" : "-1", - "x-ms-request-id" : "05b7b519-d0c5-47b6-9691-40a9dd35f194", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202110140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202110140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202112081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202112110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202202010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202202010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202203090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202204130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202205050\"\r\n }\r\n]", - "x-ms-client-request-id" : "1fb7d1b9-688f-4a57-9b53-21e25040c8c6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6620f92d-a908-43f2-82c2-bfe6096a4709", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7d1f415-c478-4b3e-8567-2c8b2aa16342", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11577,Microsoft.Compute/GetVMImageFromLocation30Min;72577", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:d7d1f415-c478-4b3e-8567-2c8b2aa16342", - "Expires" : "-1", - "x-ms-request-id" : "0499758b-a9ff-448b-9ac3-03c0907f82d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202201110\"\r\n}", - "x-ms-client-request-id" : "6620f92d-a908-43f2-82c2-bfe6096a4709", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202204130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "460412ba-135b-4a66-8a16-4945136f741f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa294996-9139-4da3-b314-80502211098e", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11578,Microsoft.Compute/GetVMImageFromLocation30Min;72578", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:aa294996-9139-4da3-b314-80502211098e", - "Expires" : "-1", - "x-ms-request-id" : "9cb8dbbb-a88e-4284-8e00-7ff7ee9c9cd9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202204130\"\r\n}", - "x-ms-client-request-id" : "460412ba-135b-4a66-8a16-4945136f741f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e14a100b-fb12-4a43-aa29-6f4ea01e2ac7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5e9ce3b-092c-44d3-83a3-241214fb3c95", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11579,Microsoft.Compute/GetVMImageFromLocation30Min;72579", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:a5e9ce3b-092c-44d3-83a3-241214fb3c95", - "Expires" : "-1", - "x-ms-request-id" : "81573ba3-7e17-4f11-8b64-981cad748db5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202201060\"\r\n}", - "x-ms-client-request-id" : "e14a100b-fb12-4a43-aa29-6f4ea01e2ac7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202110140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14646c4f-da88-4056-8182-9159e9af11e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d15047e9-fca8-4ef6-ac8d-59c83cf26de4", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11574,Microsoft.Compute/GetVMImageFromLocation30Min;72574", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:d15047e9-fca8-4ef6-ac8d-59c83cf26de4", - "Expires" : "-1", - "x-ms-request-id" : "d72236bc-bc52-4194-91c7-2a3678d180d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202110140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202110140\"\r\n}", - "x-ms-client-request-id" : "14646c4f-da88-4056-8182-9159e9af11e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202202010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a76d3e1b-760f-422d-8752-0bf81fa9402a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce1d9081-04dc-4172-97f3-521dc13d071d", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11576,Microsoft.Compute/GetVMImageFromLocation30Min;72576", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:ce1d9081-04dc-4172-97f3-521dc13d071d", - "Expires" : "-1", - "x-ms-request-id" : "9b362f5a-83a3-443a-a769-e98fa7d9fb2c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202202010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202202010\"\r\n}", - "x-ms-client-request-id" : "a76d3e1b-760f-422d-8752-0bf81fa9402a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202112110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e35d07a8-9213-42d1-b27b-69c1377c30de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0c09c6e-da8c-4aaf-b1cd-2227b72447c9", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11575,Microsoft.Compute/GetVMImageFromLocation30Min;72575", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:d0c09c6e-da8c-4aaf-b1cd-2227b72447c9", - "Expires" : "-1", - "x-ms-request-id" : "23efb88d-25d6-4897-81aa-6bbdcd464536", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202112110\"\r\n}", - "x-ms-client-request-id" : "e35d07a8-9213-42d1-b27b-69c1377c30de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202203090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbcb11bc-f0de-4b20-b69d-5f2415cb5e86", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "effada53-5ddb-4821-8d1b-4e7c0e2aebaa", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11572,Microsoft.Compute/GetVMImageFromLocation30Min;72572", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:effada53-5ddb-4821-8d1b-4e7c0e2aebaa", - "Expires" : "-1", - "x-ms-request-id" : "76a2095e-5ce3-434d-91a1-dba4cf8ca63d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202203090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202203090\"\r\n}", - "x-ms-client-request-id" : "cbcb11bc-f0de-4b20-b69d-5f2415cb5e86", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202112081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88fad1d6-3e7c-4b08-b0b1-9e8fd1175297", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4873a613-dd51-48ae-a029-0637f3a62b33", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11573,Microsoft.Compute/GetVMImageFromLocation30Min;72573", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:4873a613-dd51-48ae-a029-0637f3a62b33", - "Expires" : "-1", - "x-ms-request-id" : "1263a39a-97b4-46e5-97ab-148684c6fa77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202112081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202112081\"\r\n}", - "x-ms-client-request-id" : "88fad1d6-3e7c-4b08-b0b1-9e8fd1175297", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8969e625-d5e5-4a84-bba0-844619dcb37a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "edf486a3-7951-4062-b8bb-a4e83e81b794", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11580,Microsoft.Compute/GetVMImageFromLocation30Min;72580", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:edf486a3-7951-4062-b8bb-a4e83e81b794", - "Expires" : "-1", - "x-ms-request-id" : "6743bb8f-5303-4e05-a327-4229ea676b24", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202201180\"\r\n}", - "x-ms-client-request-id" : "8969e625-d5e5-4a84-bba0-844619dcb37a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43e6f160-24d0-4cde-b5ba-79b239313224", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb339e8a-6adf-409d-a6aa-952a90cc7176", - "Date" : "Tue, 24 May 2022 13:01:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11581,Microsoft.Compute/GetVMImageFromLocation30Min;72581", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:bb339e8a-6adf-409d-a6aa-952a90cc7176", - "Expires" : "-1", - "x-ms-request-id" : "6d1d2c40-2ab9-4488-8e8d-7918b62f82e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202204290\"\r\n}", - "x-ms-client-request-id" : "43e6f160-24d0-4cde-b5ba-79b239313224", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish/skus/21_10-gen2/versions/21.10.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53b2b161-8abb-47e1-8abb-668b1b395008", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d21313f-ffed-4367-8c91-98b8d4f4a05f", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11571,Microsoft.Compute/GetVMImageFromLocation30Min;72571", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130155Z:4d21313f-ffed-4367-8c91-98b8d4f4a05f", - "Expires" : "-1", - "x-ms-request-id" : "9c8bdca7-8dc5-475f-b14b-eccaad37e986", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish/Skus/21_10-gen2/Versions/21.10.202205050\"\r\n}", - "x-ms-client-request-id" : "53b2b161-8abb-47e1-8abb-668b1b395008", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "039bfcf7-11e0-41a4-838b-b7c66fa943da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "849", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e734317-831c-42c1-ade5-43de82b48257", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9958,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:2e734317-831c-42c1-ade5-43de82b48257", - "Expires" : "-1", - "x-ms-request-id" : "ba77905d-f4d0-4a4c-9d13-c3f0e5d6446a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_10-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "039bfcf7-11e0-41a4-838b-b7c66fa943da", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5fbef904-142c-4543-ab35-3c5d456faf0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2257", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e77c10a7-3091-430c-85a9-b93c34bdd637", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15873,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:e77c10a7-3091-430c-85a9-b93c34bdd637", - "Expires" : "-1", - "x-ms-request-id" : "cecf31dd-99eb-4240-84db-92d171c09748", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202205200\"\r\n }\r\n]", - "x-ms-client-request-id" : "5fbef904-142c-4543-ab35-3c5d456faf0a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202204150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5002fa4a-7f81-4055-a27d-d286d44eea5f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e69fec56-0dc1-486c-b6e4-2d59d2651d38", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11570,Microsoft.Compute/GetVMImageFromLocation30Min;72570", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:e69fec56-0dc1-486c-b6e4-2d59d2651d38", - "Expires" : "-1", - "x-ms-request-id" : "d4c0d677-f695-4528-94ba-0d4983402d46", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204150\"\r\n}", - "x-ms-client-request-id" : "5002fa4a-7f81-4055-a27d-d286d44eea5f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e09a1373-a84d-4da5-9fa3-7ed424616052", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a26ee0c-a429-4f9c-9b63-a19ce4bdcc05", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11566,Microsoft.Compute/GetVMImageFromLocation30Min;72566", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:8a26ee0c-a429-4f9c-9b63-a19ce4bdcc05", - "Expires" : "-1", - "x-ms-request-id" : "7f808afc-414a-483d-8833-a03b0497dd8d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202205060\"\r\n}", - "x-ms-client-request-id" : "e09a1373-a84d-4da5-9fa3-7ed424616052", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202205200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09c312ac-7e4e-4bfa-a424-fd9d715911d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f521f9d-16cb-4949-ac49-87b135bca07b", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11567,Microsoft.Compute/GetVMImageFromLocation30Min;72567", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:2f521f9d-16cb-4949-ac49-87b135bca07b", - "Expires" : "-1", - "x-ms-request-id" : "9b664bd9-60ea-44cc-91a0-a41e03472b09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202205200\"\r\n}", - "x-ms-client-request-id" : "09c312ac-7e4e-4bfa-a424-fd9d715911d4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "096cfb85-dfb6-473c-b18a-c5e0934034f6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef692f86-6490-43ef-a7de-eb5130203057", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11568,Microsoft.Compute/GetVMImageFromLocation30Min;72568", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:ef692f86-6490-43ef-a7de-eb5130203057", - "Expires" : "-1", - "x-ms-request-id" : "e1199748-8289-478f-a99c-7056f30b4f3f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204290\"\r\n}", - "x-ms-client-request-id" : "096cfb85-dfb6-473c-b18a-c5e0934034f6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9cdb0f1-b3b8-4db3-8272-852f44eebf24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d06986e4-59f8-4781-a0f5-35a7bcad456c", - "Date" : "Tue, 24 May 2022 13:01:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11569,Microsoft.Compute/GetVMImageFromLocation30Min;72569", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:d06986e4-59f8-4781-a0f5-35a7bcad456c", - "Expires" : "-1", - "x-ms-request-id" : "1f554379-7f5d-4fc0-b85b-a82117c2a19d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202205050\"\r\n}", - "x-ms-client-request-id" : "e9cdb0f1-b3b8-4db3-8272-852f44eebf24", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "839abbca-bb7c-4ea1-9c7a-423f8d4da210", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61e51665-a2bb-44c7-84e3-be8042aec73f", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11565,Microsoft.Compute/GetVMImageFromLocation30Min;72565", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:61e51665-a2bb-44c7-84e3-be8042aec73f", - "Expires" : "-1", - "x-ms-request-id" : "875514cd-2f60-449b-8fa0-f5f84121a375", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204190\"\r\n}", - "x-ms-client-request-id" : "839abbca-bb7c-4ea1-9c7a-423f8d4da210", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily/versions/21.10.202204130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96526db5-c207-4fcd-af2e-152c07027b71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1083", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30902c1a-1be9-4205-8eb9-069eeb750a56", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11564,Microsoft.Compute/GetVMImageFromLocation30Min;72564", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:30902c1a-1be9-4205-8eb9-069eeb750a56", - "Expires" : "-1", - "x-ms-request-id" : "01bb35fe-0c3d-4067-b39c-02b971d2f2a5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily/Versions/21.10.202204130\"\r\n}", - "x-ms-client-request-id" : "96526db5-c207-4fcd-af2e-152c07027b71", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cc348c1-0cf1-455b-8179-949197df2df6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2292", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76d65fe8-7a91-4cb9-bf55-0a05ce1e2259", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15872,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130156Z:76d65fe8-7a91-4cb9-bf55-0a05ce1e2259", - "Expires" : "-1", - "x-ms-request-id" : "74f79f3b-7b67-4345-b784-d9ab1511c1c0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202205200\"\r\n }\r\n]", - "x-ms-client-request-id" : "8cc348c1-0cf1-455b-8179-949197df2df6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202204150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39490e4e-66ff-4862-b6a3-089676d12d94", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83fc918e-0606-4447-91ad-f0839435a396", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11563,Microsoft.Compute/GetVMImageFromLocation30Min;72563", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:83fc918e-0606-4447-91ad-f0839435a396", - "Expires" : "-1", - "x-ms-request-id" : "5be438f1-51bd-4d02-a447-a908a1fd2f2f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204150\"\r\n}", - "x-ms-client-request-id" : "39490e4e-66ff-4862-b6a3-089676d12d94", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac6d19f1-c6db-44a0-9483-16aec41da4bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37a49c5b-d280-443e-8074-7880ef0189cf", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11562,Microsoft.Compute/GetVMImageFromLocation30Min;72562", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:37a49c5b-d280-443e-8074-7880ef0189cf", - "Expires" : "-1", - "x-ms-request-id" : "0da8b0ec-f9f0-44dd-9e52-365dfefe0694", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204290\"\r\n}", - "x-ms-client-request-id" : "ac6d19f1-c6db-44a0-9483-16aec41da4bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b59dc5fc-73aa-439a-acc4-ea4f3eaa4d7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "628d785b-b107-4989-aaac-05ffbd1ce872", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11560,Microsoft.Compute/GetVMImageFromLocation30Min;72560", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:628d785b-b107-4989-aaac-05ffbd1ce872", - "Expires" : "-1", - "x-ms-request-id" : "54b49209-a04e-4e76-bbb6-09733d9a8f30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202205050\"\r\n}", - "x-ms-client-request-id" : "b59dc5fc-73aa-439a-acc4-ea4f3eaa4d7d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202205200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5792074a-9752-4d41-a3c1-ba3c92ed9321", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "139646ab-685d-4eb1-b005-4f96cdf85068", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11559,Microsoft.Compute/GetVMImageFromLocation30Min;72559", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:139646ab-685d-4eb1-b005-4f96cdf85068", - "Expires" : "-1", - "x-ms-request-id" : "280f9ba1-787c-4923-85fa-9e15c62b83d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202205200\"\r\n}", - "x-ms-client-request-id" : "5792074a-9752-4d41-a3c1-ba3c92ed9321", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202204130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f3b6dd6-8e4c-4985-8179-6917e17e2061", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25b15d6c-ddd1-46a3-8c43-a54a30ee16fc", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11558,Microsoft.Compute/GetVMImageFromLocation30Min;72558", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:25b15d6c-ddd1-46a3-8c43-a54a30ee16fc", - "Expires" : "-1", - "x-ms-request-id" : "7f501085-dd93-40a9-b9e5-fc8dbbbdd8b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204130\"\r\n}", - "x-ms-client-request-id" : "6f3b6dd6-8e4c-4985-8179-6917e17e2061", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81a5ac81-e911-45f8-aa7b-71223f3eb055", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6a6891c-3e49-48b7-aabc-b6c048244b72", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11557,Microsoft.Compute/GetVMImageFromLocation30Min;72557", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:d6a6891c-3e49-48b7-aabc-b6c048244b72", - "Expires" : "-1", - "x-ms-request-id" : "7de84f11-bf29-4950-a032-5f4429783887", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202205060\"\r\n}", - "x-ms-client-request-id" : "81a5ac81-e911-45f8-aa7b-71223f3eb055", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-impish-daily/skus/21_10-daily-gen2/versions/21.10.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c1e0e2e-9bc7-4201-a0a2-1fb10822e811", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1081", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01e1e5a1-2dfb-46b1-a4a6-df419ae39066", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11561,Microsoft.Compute/GetVMImageFromLocation30Min;72561", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:01e1e5a1-2dfb-46b1-a4a6-df419ae39066", - "Expires" : "-1", - "x-ms-request-id" : "c027b56e-e6b7-4c0b-910f-f250c5cac1a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"21.10.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-impish-daily/Skus/21_10-daily-gen2/Versions/21.10.202204190\"\r\n}", - "x-ms-client-request-id" : "5c1e0e2e-9bc7-4201-a0a2-1fb10822e811", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2044cf7b-2357-4ab5-a796-d37eb673fb4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "827", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14780558-ef69-4bf9-95cc-1dd5893897bf", - "Date" : "Tue, 24 May 2022 13:01:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9957,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:14780558-ef69-4bf9-95cc-1dd5893897bf", - "Expires" : "-1", - "x-ms-request-id" : "e85e77a6-18ea-4756-8724-fea5afba34ee", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "2044cf7b-2357-4ab5-a796-d37eb673fb4e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "737ce26b-c620-4368-b674-3fcec79dc50a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "629", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "840eda3a-eec4-49fc-b831-eea5e9d7602f", - "Date" : "Tue, 24 May 2022 13:01:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15871,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130157Z:840eda3a-eec4-49fc-b831-eea5e9d7602f", - "Expires" : "-1", - "x-ms-request-id" : "fcbffcea-e855-4cbb-8b54-7697fd699f35", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts/Versions/22.04.202205060\"\r\n }\r\n]", - "x-ms-client-request-id" : "737ce26b-c620-4368-b674-3fcec79dc50a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac1b5b64-5a89-49fa-ad48-9cbed689c9b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "683f6910-672a-4938-997b-659bed327e15", - "Date" : "Tue, 24 May 2022 13:01:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11556,Microsoft.Compute/GetVMImageFromLocation30Min;72556", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130158Z:683f6910-672a-4938-997b-659bed327e15", - "Expires" : "-1", - "x-ms-request-id" : "e2e480b8-ce3c-494b-94d7-19546e796c8b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "ac1b5b64-5a89-49fa-ad48-9cbed689c9b1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "baa49dbb-dec5-40dc-8df4-007cc634ac56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1079", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c48b1db-e41d-4af3-b7f4-311feec05abf", - "Date" : "Tue, 24 May 2022 13:01:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11555,Microsoft.Compute/GetVMImageFromLocation30Min;72555", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130158Z:3c48b1db-e41d-4af3-b7f4-311feec05abf", - "Expires" : "-1", - "x-ms-request-id" : "c454e53f-5fd0-469d-bb1c-5c3eaebec557", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "baa49dbb-dec5-40dc-8df4-007cc634ac56", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8435baa-321a-4e50-9f47-42fa6dfd1bfe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "639", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8e6be46-3de4-4914-a02d-c85e8e7af8df", - "Date" : "Tue, 24 May 2022 13:01:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15870,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130158Z:a8e6be46-3de4-4914-a02d-c85e8e7af8df", - "Expires" : "-1", - "x-ms-request-id" : "cff49178-e2ad-4b19-99e6-36a682f6cc93", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202205060\"\r\n }\r\n]", - "x-ms-client-request-id" : "e8435baa-321a-4e50-9f47-42fa6dfd1bfe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7812b430-e4dd-4b88-8694-620be510e85f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae0b1d07-2f12-49d0-b0be-c8d27bbac1d2", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11554,Microsoft.Compute/GetVMImageFromLocation30Min;72554", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130158Z:ae0b1d07-2f12-49d0-b0be-c8d27bbac1d2", - "Expires" : "-1", - "x-ms-request-id" : "2e5c7e9c-35bb-4a90-b020-387db234c0ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "7812b430-e4dd-4b88-8694-620be510e85f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy/skus/22_04-lts-gen2/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de304a0e-a0d6-4169-8478-66545e50f464", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a978ae4-1331-4d57-81a5-0f71a4fa37b1", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11553,Microsoft.Compute/GetVMImageFromLocation30Min;72553", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130158Z:3a978ae4-1331-4d57-81a5-0f71a4fa37b1", - "Expires" : "-1", - "x-ms-request-id" : "29bd723b-bd52-4c6d-bef6-ef23cb65f81f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy/Skus/22_04-lts-gen2/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "de304a0e-a0d6-4169-8478-66545e50f464", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a66df623-25ea-4595-b7f1-a9a27b07b541", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "863", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bdf7289e-df30-42b7-9ec5-eb310420650c", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9956,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130158Z:bdf7289e-df30-42b7-9ec5-eb310420650c", - "Expires" : "-1", - "x-ms-request-id" : "9573e885-0d9e-4171-a536-f92cee333760", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "a66df623-25ea-4595-b7f1-a9a27b07b541", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc9aa694-8b72-40a0-96b8-864d9990056f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2278", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0a4c659-e168-4bd6-8cc9-d2973d23d5d9", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15869,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:d0a4c659-e168-4bd6-8cc9-d2973d23d5d9", - "Expires" : "-1", - "x-ms-request-id" : "992546d4-de4e-475b-8002-813252e8855b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202205130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202205170\"\r\n }\r\n]", - "x-ms-client-request-id" : "bc9aa694-8b72-40a0-96b8-864d9990056f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202204180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88d7356c-3d31-4686-87ff-de2f624d19d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8329b87c-cf73-4932-894c-25709ab33212", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11552,Microsoft.Compute/GetVMImageFromLocation30Min;72552", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:8329b87c-cf73-4932-894c-25709ab33212", - "Expires" : "-1", - "x-ms-request-id" : "10049410-af59-469d-9ed4-e7ad1368948d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204180\"\r\n}", - "x-ms-client-request-id" : "88d7356c-3d31-4686-87ff-de2f624d19d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202205130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98ad5659-02e2-48c3-9bd2-70b6c5bab524", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "578017e2-3df9-4e18-9729-b18221e61be7", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11551,Microsoft.Compute/GetVMImageFromLocation30Min;72551", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:578017e2-3df9-4e18-9729-b18221e61be7", - "Expires" : "-1", - "x-ms-request-id" : "f74a30c9-de9b-4320-a015-0e467e3d5341", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202205130\"\r\n}", - "x-ms-client-request-id" : "98ad5659-02e2-48c3-9bd2-70b6c5bab524", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c5b304a-0970-4d8a-81c2-e3645c14dad5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "91101251-bc1e-4223-bc44-bca5335803fe", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11549,Microsoft.Compute/GetVMImageFromLocation30Min;72549", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:91101251-bc1e-4223-bc44-bca5335803fe", - "Expires" : "-1", - "x-ms-request-id" : "00b6c459-0890-42a4-88f2-2c6762e1d84f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204190\"\r\n}", - "x-ms-client-request-id" : "4c5b304a-0970-4d8a-81c2-e3645c14dad5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f576d458-6a60-43fe-a888-9aeee906a268", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60b967ec-1d51-4028-8a57-06d7c703a927", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11548,Microsoft.Compute/GetVMImageFromLocation30Min;72548", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:60b967ec-1d51-4028-8a57-06d7c703a927", - "Expires" : "-1", - "x-ms-request-id" : "11426b19-7f17-4b31-9c8b-9667ed5b872d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "f576d458-6a60-43fe-a888-9aeee906a268", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d16f460-1d00-4742-8ca6-da4215a341b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1acaabac-5297-4386-bc42-3a7ac0db3a92", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11550,Microsoft.Compute/GetVMImageFromLocation30Min;72550", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:1acaabac-5297-4386-bc42-3a7ac0db3a92", - "Expires" : "-1", - "x-ms-request-id" : "b9ee5615-79ef-4741-a415-541e41c03ef3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "9d16f460-1d00-4742-8ca6-da4215a341b5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202205170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6327f7ce-f30b-4bbb-b83f-9e454e224113", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9885f2a-b85c-4b04-9d12-6e4abf3bc08e", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11546,Microsoft.Compute/GetVMImageFromLocation30Min;72546", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:a9885f2a-b85c-4b04-9d12-6e4abf3bc08e", - "Expires" : "-1", - "x-ms-request-id" : "44e6bcf8-f2af-450e-bb49-e7b567e2a189", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202205170\"\r\n}", - "x-ms-client-request-id" : "6327f7ce-f30b-4bbb-b83f-9e454e224113", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts/versions/22.04.202204230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8ba08cc-6f7e-4528-ade3-63ba58f9727e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6662398-c237-40c3-b353-e800f01462f9", - "Date" : "Tue, 24 May 2022 13:01:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11547,Microsoft.Compute/GetVMImageFromLocation30Min;72547", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:e6662398-c237-40c3-b353-e800f01462f9", - "Expires" : "-1", - "x-ms-request-id" : "30681ae0-2d7e-4de1-a34f-0ee8979a4a17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts/Versions/22.04.202204230\"\r\n}", - "x-ms-client-request-id" : "a8ba08cc-6f7e-4528-ade3-63ba58f9727e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3081d49f-3c47-4a40-9ae4-872a9d8783ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2313", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8128cb7-0a50-41e7-a528-eb2aae318d78", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15868,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130159Z:a8128cb7-0a50-41e7-a528-eb2aae318d78", - "Expires" : "-1", - "x-ms-request-id" : "6102be20-f698-490e-86fa-3936e0bdc13c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202205130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202205170\"\r\n }\r\n]", - "x-ms-client-request-id" : "3081d49f-3c47-4a40-9ae4-872a9d8783ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202205130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ebc914f-e592-430b-b953-ea25b79e9db3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f2889e5-52a4-4697-8e86-7efffbd9f385", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11544,Microsoft.Compute/GetVMImageFromLocation30Min;72544", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:7f2889e5-52a4-4697-8e86-7efffbd9f385", - "Expires" : "-1", - "x-ms-request-id" : "a959fbd5-2eff-4c5b-9756-3cbb39a9aa2f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202205130\"\r\n}", - "x-ms-client-request-id" : "8ebc914f-e592-430b-b953-ea25b79e9db3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202204200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c772f87-748b-4c53-96ff-4ccb35cf194a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "572c4f1e-d4e5-4ebf-80dc-40e92fc924d9", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11540,Microsoft.Compute/GetVMImageFromLocation30Min;72540", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:572c4f1e-d4e5-4ebf-80dc-40e92fc924d9", - "Expires" : "-1", - "x-ms-request-id" : "168a77d3-625d-4204-bc9e-b668a4f61a8d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204200\"\r\n}", - "x-ms-client-request-id" : "4c772f87-748b-4c53-96ff-4ccb35cf194a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202204230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9575ea3d-be10-44fe-b6d4-cedce1f45af7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b981e783-7068-465f-b9cc-a7731cfb9a7c", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11545,Microsoft.Compute/GetVMImageFromLocation30Min;72545", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:b981e783-7068-465f-b9cc-a7731cfb9a7c", - "Expires" : "-1", - "x-ms-request-id" : "7706a941-8388-480f-9e4b-51b8424b0ed6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204230\"\r\n}", - "x-ms-client-request-id" : "9575ea3d-be10-44fe-b6d4-cedce1f45af7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42d2547b-3e1a-4224-9788-9bfb82d2bd6f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2e1d4d0-0942-4c79-b565-b183d9053000", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11543,Microsoft.Compute/GetVMImageFromLocation30Min;72543", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:c2e1d4d0-0942-4c79-b565-b183d9053000", - "Expires" : "-1", - "x-ms-request-id" : "93082150-97bf-4187-8ee6-580721c9228d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204190\"\r\n}", - "x-ms-client-request-id" : "42d2547b-3e1a-4224-9788-9bfb82d2bd6f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202204180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7eaf23f-32ae-4d1e-9fc2-238308efde4c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97bc370d-0b45-4df4-8e21-77ea2dcd6af8", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11542,Microsoft.Compute/GetVMImageFromLocation30Min;72542", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:97bc370d-0b45-4df4-8e21-77ea2dcd6af8", - "Expires" : "-1", - "x-ms-request-id" : "cf29d082-9ca5-4e90-b270-2b1646ad393c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202204180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202204180\"\r\n}", - "x-ms-client-request-id" : "a7eaf23f-32ae-4d1e-9fc2-238308efde4c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202205170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2576e938-3a2c-4551-909a-be4120e5cdf2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01654072-1a05-403d-87c4-f2e63404ee9d", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11541,Microsoft.Compute/GetVMImageFromLocation30Min;72541", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:01654072-1a05-403d-87c4-f2e63404ee9d", - "Expires" : "-1", - "x-ms-request-id" : "8b1b9685-e364-4e6b-9468-c22bd86d5521", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202205170\"\r\n}", - "x-ms-client-request-id" : "2576e938-3a2c-4551-909a-be4120e5cdf2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-jammy-daily/skus/22_04-daily-lts-gen2/versions/22.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e73503a1-6a89-4ecc-80a7-fb6fefc2a477", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1084", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ab830b2-97f5-4d21-bb2a-1921b448499d", - "Date" : "Tue, 24 May 2022 13:01:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11539,Microsoft.Compute/GetVMImageFromLocation30Min;72539", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:1ab830b2-97f5-4d21-bb2a-1921b448499d", - "Expires" : "-1", - "x-ms-request-id" : "dca30007-a31b-45ca-a087-1e1368762a0a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-jammy-daily/Skus/22_04-daily-lts-gen2/Versions/22.04.202205060\"\r\n}", - "x-ms-client-request-id" : "e73503a1-6a89-4ecc-80a7-fb6fefc2a477", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31fb4f45-f278-471f-816c-8c5e7e089a4c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "851", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eaf14956-027f-4227-9fb3-dad8f1c9851f", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9955,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:eaf14956-027f-4227-9fb3-dad8f1c9851f", - "Expires" : "-1", - "x-ms-request-id" : "f323b5c2-68ce-4b9e-ab20-772ce1c329ea", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_10-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "31fb4f45-f278-471f-816c-8c5e7e089a4c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1afe6701-2d1c-41f5-b203-56d8b17599eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1941", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "890d5b72-6ddd-4a34-84fb-e84c52470680", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15867,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:890d5b72-6ddd-4a34-84fb-e84c52470680", - "Expires" : "-1", - "x-ms-request-id" : "1139d021-78b6-4626-b53a-db89545bcc8e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205201\"\r\n }\r\n]", - "x-ms-client-request-id" : "1afe6701-2d1c-41f5-b203-56d8b17599eb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions/22.10.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67c7ec6a-423a-4d3a-af66-214728bb2938", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1089", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5846c612-8b3d-44e7-8a07-9a37a8f7550f", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11537,Microsoft.Compute/GetVMImageFromLocation30Min;72537", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:5846c612-8b3d-44e7-8a07-9a37a8f7550f", - "Expires" : "-1", - "x-ms-request-id" : "d9bf422a-2ce1-44cf-a2c2-c148d4b24611", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205100\"\r\n}", - "x-ms-client-request-id" : "67c7ec6a-423a-4d3a-af66-214728bb2938", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions/22.10.202205080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88d27db9-7363-48dc-acff-d8c209bf3216", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1089", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01aba214-17cc-4424-bee4-793a5f8684f8", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11538,Microsoft.Compute/GetVMImageFromLocation30Min;72538", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:01aba214-17cc-4424-bee4-793a5f8684f8", - "Expires" : "-1", - "x-ms-request-id" : "8cc2b78c-c6ef-4eb6-9b79-337867d0615e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205080\"\r\n}", - "x-ms-client-request-id" : "88d27db9-7363-48dc-acff-d8c209bf3216", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions/22.10.202205201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3b901ef-a641-4f2a-8872-3de9faafb65b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1089", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4db107eb-1aaa-419e-8c6a-1e1d468beced", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11536,Microsoft.Compute/GetVMImageFromLocation30Min;72536", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:4db107eb-1aaa-419e-8c6a-1e1d468beced", - "Expires" : "-1", - "x-ms-request-id" : "07cb3a3c-19fd-4edf-80f1-024e19136c4d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205201\"\r\n}", - "x-ms-client-request-id" : "d3b901ef-a641-4f2a-8872-3de9faafb65b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions/22.10.202205150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3f21db9-d956-4a55-8608-576c86f50571", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1089", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc210c5b-de35-48e6-aed8-9fc4c0a8d015", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11535,Microsoft.Compute/GetVMImageFromLocation30Min;72535", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:bc210c5b-de35-48e6-aed8-9fc4c0a8d015", - "Expires" : "-1", - "x-ms-request-id" : "25d3c5aa-6d54-4946-9b88-f0ef2c0aac65", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205150\"\r\n}", - "x-ms-client-request-id" : "a3f21db9-d956-4a55-8608-576c86f50571", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions/22.10.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9adac033-54dd-49a8-8b7a-787dcc5e9ba8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1089", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01bb6cc4-582f-4e4b-9c45-e445cc027136", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11534,Microsoft.Compute/GetVMImageFromLocation30Min;72534", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:01bb6cc4-582f-4e4b-9c45-e445cc027136", - "Expires" : "-1", - "x-ms-request-id" : "ea33fd62-ce76-4a4d-81a6-11da4bd2cfb9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205110\"\r\n}", - "x-ms-client-request-id" : "9adac033-54dd-49a8-8b7a-787dcc5e9ba8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily/versions/22.10.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01eef349-83aa-4c7e-a48d-05c848ccc406", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1089", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9929b93-c1de-4807-bb72-10aba82d7b13", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11533,Microsoft.Compute/GetVMImageFromLocation30Min;72533", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130200Z:d9929b93-c1de-4807-bb72-10aba82d7b13", - "Expires" : "-1", - "x-ms-request-id" : "f8abcc62-f1b8-47fc-bea0-135630a9f66c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily/Versions/22.10.202205180\"\r\n}", - "x-ms-client-request-id" : "01eef349-83aa-4c7e-a48d-05c848ccc406", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19be138f-fffb-4756-b830-dc3c05259f39", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1971", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a16c004-ffe3-43ea-a152-8d350b6ae9f6", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15866,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:0a16c004-ffe3-43ea-a152-8d350b6ae9f6", - "Expires" : "-1", - "x-ms-request-id" : "2cb866ed-7886-4109-a0cd-8ce9ca309f31", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205201\"\r\n }\r\n]", - "x-ms-client-request-id" : "19be138f-fffb-4756-b830-dc3c05259f39", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions/22.10.202205201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ea52dc1-a46b-4a49-9961-f9a22843e204", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2c278b2-d772-4914-a0ca-71b208b36214", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11532,Microsoft.Compute/GetVMImageFromLocation30Min;72532", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:a2c278b2-d772-4914-a0ca-71b208b36214", - "Expires" : "-1", - "x-ms-request-id" : "208f8b80-d849-41ca-8a86-fe0ada95cbe7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205201\"\r\n}", - "x-ms-client-request-id" : "0ea52dc1-a46b-4a49-9961-f9a22843e204", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions/22.10.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "920d87dc-9fd7-4e5b-bd73-4b7c0612d552", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1de33826-5c35-48f2-b1eb-e81a4b0e2318", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11531,Microsoft.Compute/GetVMImageFromLocation30Min;72531", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:1de33826-5c35-48f2-b1eb-e81a4b0e2318", - "Expires" : "-1", - "x-ms-request-id" : "139422ac-70e6-4c43-87df-d486e946b245", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205180\"\r\n}", - "x-ms-client-request-id" : "920d87dc-9fd7-4e5b-bd73-4b7c0612d552", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions/22.10.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ee8edca-a448-4fc3-bcf8-027109ab90f6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b3550f3-5014-421f-ad67-44c76ac2b895", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11529,Microsoft.Compute/GetVMImageFromLocation30Min;72529", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:8b3550f3-5014-421f-ad67-44c76ac2b895", - "Expires" : "-1", - "x-ms-request-id" : "6e2707db-68ab-429e-ad20-4dbd41614da3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205100\"\r\n}", - "x-ms-client-request-id" : "2ee8edca-a448-4fc3-bcf8-027109ab90f6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions/22.10.202205150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "334f22bf-c246-4608-b25d-0af19f66c604", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e50645ff-4315-4a11-993d-a41d5aa39849", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11530,Microsoft.Compute/GetVMImageFromLocation30Min;72530", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:e50645ff-4315-4a11-993d-a41d5aa39849", - "Expires" : "-1", - "x-ms-request-id" : "ea3988cb-d606-424b-ad04-261facbec503", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205150\"\r\n}", - "x-ms-client-request-id" : "334f22bf-c246-4608-b25d-0af19f66c604", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions/22.10.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b71af020-14e5-4333-b28a-38995fc1c284", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0f36d27-766e-43de-95ba-df635cf18135", - "Date" : "Tue, 24 May 2022 13:02:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11528,Microsoft.Compute/GetVMImageFromLocation30Min;72528", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:a0f36d27-766e-43de-95ba-df635cf18135", - "Expires" : "-1", - "x-ms-request-id" : "8ed54e3c-43c9-4318-8fb4-0db7b90a23cc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205110\"\r\n}", - "x-ms-client-request-id" : "b71af020-14e5-4333-b28a-38995fc1c284", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-kinetic-daily/skus/22_10-daily-gen2/versions/22.10.202205080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9d588aa-85fd-4b5f-a215-93eb19606ce2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "064fe9b6-b83e-4897-9c09-c6b419275837", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11527,Microsoft.Compute/GetVMImageFromLocation30Min;72527", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:064fe9b6-b83e-4897-9c09-c6b419275837", - "Expires" : "-1", - "x-ms-request-id" : "af568e17-b7be-480a-8b28-e9a7d514a67c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"22.10.202205080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-kinetic-daily/Skus/22_10-daily-gen2/Versions/22.10.202205080\"\r\n}", - "x-ms-client-request-id" : "e9d588aa-85fd-4b5f-a215-93eb19606ce2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb2ff318-8957-4233-9d9c-ed450535b29d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "899", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daca5b92-f6f0-4b7c-91cb-1b3a95b84387", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9954,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130201Z:daca5b92-f6f0-4b7c-91cb-1b3a95b84387", - "Expires" : "-1", - "x-ms-request-id" : "4cef5509-db91-4cf9-8695-11c2f6fd8a73", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-18_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-18_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "eb2ff318-8957-4233-9d9c-ed450535b29d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "253310d9-bfea-4a82-90ee-62f732adb217", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2348", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e91da44-d839-4744-bc90-5a6132200dea", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15865,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:9e91da44-d839-4744-bc90-5a6132200dea", - "Expires" : "-1", - "x-ms-request-id" : "b99601ca-5f4f-4bb1-8554-ffc613b26ae3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202204270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202204280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205120\"\r\n }\r\n]", - "x-ms-client-request-id" : "253310d9-bfea-4a82-90ee-62f732adb217", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "032d3335-810b-437a-991d-9fa974b3d11a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f044886-8445-4cea-8663-a22e4f890b1c", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11523,Microsoft.Compute/GetVMImageFromLocation30Min;72523", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:4f044886-8445-4cea-8663-a22e4f890b1c", - "Expires" : "-1", - "x-ms-request-id" : "85a0af7f-59d0-4d56-a363-933f4715311e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202204290\"\r\n}", - "x-ms-client-request-id" : "032d3335-810b-437a-991d-9fa974b3d11a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202205120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37cb4b02-83b9-4ee9-96cc-118bfe18ffbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9066af7a-b430-4c5f-be7c-e72d4a899312", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11525,Microsoft.Compute/GetVMImageFromLocation30Min;72525", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:9066af7a-b430-4c5f-be7c-e72d4a899312", - "Expires" : "-1", - "x-ms-request-id" : "48bf3020-b2fd-4575-816a-b4da34d11e4e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205120\"\r\n}", - "x-ms-client-request-id" : "37cb4b02-83b9-4ee9-96cc-118bfe18ffbb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "832c766e-5e15-47b9-aaa5-303d529cf8ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "871b0f2a-6c12-4b24-85af-d3f39a9c8163", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11524,Microsoft.Compute/GetVMImageFromLocation30Min;72524", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:871b0f2a-6c12-4b24-85af-d3f39a9c8163", - "Expires" : "-1", - "x-ms-request-id" : "06438d15-6d0e-4f1b-a644-9d9a554c3680", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205060\"\r\n}", - "x-ms-client-request-id" : "832c766e-5e15-47b9-aaa5-303d529cf8ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "79ebf20d-526e-44b2-baa4-5618dbe2e0fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd79b711-c82c-473c-911e-689896e5f421", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11526,Microsoft.Compute/GetVMImageFromLocation30Min;72526", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:fd79b711-c82c-473c-911e-689896e5f421", - "Expires" : "-1", - "x-ms-request-id" : "9bab8fae-fe4a-49a1-ab15-48dd858244c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205050\"\r\n}", - "x-ms-client-request-id" : "79ebf20d-526e-44b2-baa4-5618dbe2e0fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9c02acb-3cfd-4ef4-affc-5745017778f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d109e9c-06cf-40ac-ac85-43a8404e11e6", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11522,Microsoft.Compute/GetVMImageFromLocation30Min;72522", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:8d109e9c-06cf-40ac-ac85-43a8404e11e6", - "Expires" : "-1", - "x-ms-request-id" : "65cc9eed-b1de-4208-a948-ffbe1663ba40", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202205110\"\r\n}", - "x-ms-client-request-id" : "d9c02acb-3cfd-4ef4-affc-5745017778f8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202204280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "10a1fb4b-e37e-49a9-a196-1f1a2f716b77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d32816e-0b04-4aa9-a090-a899018c0d71", - "Date" : "Tue, 24 May 2022 13:02:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11521,Microsoft.Compute/GetVMImageFromLocation30Min;72521", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:0d32816e-0b04-4aa9-a090-a899018c0d71", - "Expires" : "-1", - "x-ms-request-id" : "6c83766f-37ff-4d11-b772-4b4855bdf4fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202204280\"\r\n}", - "x-ms-client-request-id" : "10a1fb4b-e37e-49a9-a196-1f1a2f716b77", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts/versions/18.04.202204270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b15f19e9-a4ed-4ad2-afec-f900dd58f1fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f9d59eb-04ab-44a7-a391-2321debbc768", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11520,Microsoft.Compute/GetVMImageFromLocation30Min;72520", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130202Z:2f9d59eb-04ab-44a7-a391-2321debbc768", - "Expires" : "-1", - "x-ms-request-id" : "fc55e732-0010-4eff-8c5c-4ce5230e0bfd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts/Versions/18.04.202204270\"\r\n}", - "x-ms-client-request-id" : "b15f19e9-a4ed-4ad2-afec-f900dd58f1fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2497ff8a-90f6-4c3e-8edd-dbb7f368c896", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2383", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be52153e-6b58-4da6-880c-c5ffeffcca7b", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15864,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:be52153e-6b58-4da6-880c-c5ffeffcca7b", - "Expires" : "-1", - "x-ms-request-id" : "ff25d366-e9c4-4090-9c4a-e208b9af367d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202204270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202204280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205120\"\r\n }\r\n]", - "x-ms-client-request-id" : "2497ff8a-90f6-4c3e-8edd-dbb7f368c896", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e379a5b-a8f6-467d-b3a8-3ccedecaf679", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8c41c70-baa3-49fc-ac77-824c3e67240d", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11518,Microsoft.Compute/GetVMImageFromLocation30Min;72518", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:f8c41c70-baa3-49fc-ac77-824c3e67240d", - "Expires" : "-1", - "x-ms-request-id" : "0b564188-fa5a-433d-b499-0b71da8dc2df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202204290\"\r\n}", - "x-ms-client-request-id" : "4e379a5b-a8f6-467d-b3a8-3ccedecaf679", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202205120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57ebaad0-aca3-4f0d-b175-30a2fa5f235b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61ca4856-c6e7-4b42-9a5c-fa111432eeef", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11517,Microsoft.Compute/GetVMImageFromLocation30Min;72517", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:61ca4856-c6e7-4b42-9a5c-fa111432eeef", - "Expires" : "-1", - "x-ms-request-id" : "49e58669-b605-4cb0-bafb-94228f68c671", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205120\"\r\n}", - "x-ms-client-request-id" : "57ebaad0-aca3-4f0d-b175-30a2fa5f235b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "071ad1f1-a741-41a3-a2b4-84c72054bba1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cca0fbd0-2716-4852-a7e9-9125c6e5c9de", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11519,Microsoft.Compute/GetVMImageFromLocation30Min;72519", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:cca0fbd0-2716-4852-a7e9-9125c6e5c9de", - "Expires" : "-1", - "x-ms-request-id" : "b2f519cf-cc81-4b77-a6ad-4ba31127ddf2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205050\"\r\n}", - "x-ms-client-request-id" : "071ad1f1-a741-41a3-a2b4-84c72054bba1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202204280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "746ac2c0-4109-499f-b31e-0c9aea16c1cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3753ed0a-f65a-402f-8066-1ecb0de0f6d4", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11515,Microsoft.Compute/GetVMImageFromLocation30Min;72515", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:3753ed0a-f65a-402f-8066-1ecb0de0f6d4", - "Expires" : "-1", - "x-ms-request-id" : "fa9dc102-b014-4e01-b354-d44d915b3ab0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202204280\"\r\n}", - "x-ms-client-request-id" : "746ac2c0-4109-499f-b31e-0c9aea16c1cb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202205110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9763851b-e5bf-452a-bd22-a733c7239d4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9dfeb903-d806-422e-94b3-31e14288d6b9", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11514,Microsoft.Compute/GetVMImageFromLocation30Min;72514", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:9dfeb903-d806-422e-94b3-31e14288d6b9", - "Expires" : "-1", - "x-ms-request-id" : "4b3a0793-565c-454c-8819-51d05fcc974f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205110\"\r\n}", - "x-ms-client-request-id" : "9763851b-e5bf-452a-bd22-a733c7239d4e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202204270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd4b147a-91d8-4b3b-9be2-75158dabce1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3ca4005-eef3-4016-8ea8-e2932196e518", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11513,Microsoft.Compute/GetVMImageFromLocation30Min;72513", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:d3ca4005-eef3-4016-8ea8-e2932196e518", - "Expires" : "-1", - "x-ms-request-id" : "f23998cd-3ae3-43f2-811c-7757e5e3909b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202204270\"\r\n}", - "x-ms-client-request-id" : "bd4b147a-91d8-4b3b-9be2-75158dabce1f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-bionic-daily/skus/minimal-18_04-daily-lts-gen2/versions/18.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80ea5ab3-ae2e-45b5-9630-2ba6c3a6b440", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1094", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5616d48a-da34-461a-abd4-c9a0096401ab", - "Date" : "Tue, 24 May 2022 13:02:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11516,Microsoft.Compute/GetVMImageFromLocation30Min;72516", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:5616d48a-da34-461a-abd4-c9a0096401ab", - "Expires" : "-1", - "x-ms-request-id" : "0e3bf776-2039-4de5-bee9-ce6a130ac57c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-bionic-daily/Skus/minimal-18_04-daily-lts-gen2/Versions/18.04.202205060\"\r\n}", - "x-ms-client-request-id" : "80ea5ab3-ae2e-45b5-9630-2ba6c3a6b440", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "095f3fec-bbc8-497f-bf6a-7c2edf7579fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "447", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2af3c80d-5c5a-4ca8-83ae-e2790b2bd9f6", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9953,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:2af3c80d-5c5a-4ca8-83ae-e2790b2bd9f6", - "Expires" : "-1", - "x-ms-request-id" : "3466ebdf-8ed0-4afb-8d17-0c17a56d1d71", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-19_04-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "095f3fec-bbc8-497f-bf6a-7c2edf7579fe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0da5713a-16bd-4d15-bfde-3b59ccf09813", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2013", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6316f26b-51e8-417a-b42c-cd205185bc6c", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15863,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130203Z:6316f26b-51e8-417a-b42c-cd205185bc6c", - "Expires" : "-1", - "x-ms-request-id" : "09f51c38-e1d0-4157-b78e-e15b7ede21af", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.201912130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001220\"\r\n }\r\n]", - "x-ms-client-request-id" : "0da5713a-16bd-4d15-bfde-3b59ccf09813", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions/19.04.202001210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14c27335-0f65-4a8e-9034-2fc2fbb2b3c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "799", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "972e2b62-37ac-4064-ba34-8b802c5d8c93", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11512,Microsoft.Compute/GetVMImageFromLocation30Min;72512", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:972e2b62-37ac-4064-ba34-8b802c5d8c93", - "Expires" : "-1", - "x-ms-request-id" : "ee782424-a4f8-4658-8092-2b8e6aaa9de3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001210\"\r\n}", - "x-ms-client-request-id" : "14c27335-0f65-4a8e-9034-2fc2fbb2b3c0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions/19.04.202001080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77e4342c-2cdd-4ae2-b9bb-e6f0a15a771f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "799", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c46620a5-540c-41b8-a833-de980f016fc0", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11511,Microsoft.Compute/GetVMImageFromLocation30Min;72511", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:c46620a5-540c-41b8-a833-de980f016fc0", - "Expires" : "-1", - "x-ms-request-id" : "9f3ec783-e5ac-4d20-af55-70b89c809803", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001080\"\r\n}", - "x-ms-client-request-id" : "77e4342c-2cdd-4ae2-b9bb-e6f0a15a771f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions/19.04.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc347a6b-a34b-4c08-a457-668ed870a996", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "799", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "353bee0c-7433-4b46-abac-8b420a3b2c91", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11510,Microsoft.Compute/GetVMImageFromLocation30Min;72510", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:353bee0c-7433-4b46-abac-8b420a3b2c91", - "Expires" : "-1", - "x-ms-request-id" : "964c6820-1957-4aba-9753-e5d909630193", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.201912170\"\r\n}", - "x-ms-client-request-id" : "fc347a6b-a34b-4c08-a457-668ed870a996", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions/19.04.202001140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d64128fb-bf75-4723-b4b8-0f32565cc029", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "799", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01c9df47-76ca-4c00-a7ef-812b2070d315", - "Date" : "Tue, 24 May 2022 13:02:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11509,Microsoft.Compute/GetVMImageFromLocation30Min;72509", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:01c9df47-76ca-4c00-a7ef-812b2070d315", - "Expires" : "-1", - "x-ms-request-id" : "8adadd45-3a2a-4083-98e6-885a3623c608", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001140\"\r\n}", - "x-ms-client-request-id" : "d64128fb-bf75-4723-b4b8-0f32565cc029", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions/19.04.201912130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3326a46-1bac-4c05-a711-7a897d402825", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "799", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2f6d962-1e42-4844-953b-c0018e928a81", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11508,Microsoft.Compute/GetVMImageFromLocation30Min;72508", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:c2f6d962-1e42-4844-953b-c0018e928a81", - "Expires" : "-1", - "x-ms-request-id" : "87fcd7b1-f515-44b4-b4bd-ff86f7315eb1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.201912130\"\r\n}", - "x-ms-client-request-id" : "c3326a46-1bac-4c05-a711-7a897d402825", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-disco-daily/skus/minimal-19_04-daily-gen2/versions/19.04.202001220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1da0a095-2853-479b-9c6c-3c4d2f48a801", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "799", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f5e770d-cd06-4e30-b828-36f94f853b8a", - "Date" : "Tue, 24 May 2022 13:02:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11507,Microsoft.Compute/GetVMImageFromLocation30Min;72507", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:5f5e770d-cd06-4e30-b828-36f94f853b8a", - "Expires" : "-1", - "x-ms-request-id" : "66f1dea7-aefe-48b6-87bd-2ab3a316a5d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-disco-daily/Skus/minimal-19_04-daily-gen2/Versions/19.04.202001220\"\r\n}", - "x-ms-client-request-id" : "1da0a095-2853-479b-9c6c-3c4d2f48a801", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-focal-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca2bfcf8-2a70-4005-b6b4-a9377730b9e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "897", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ad540c9-4be3-4fbb-a961-82283dff9310", - "Date" : "Tue, 24 May 2022 13:02:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9952,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:0ad540c9-4be3-4fbb-a961-82283dff9310", - "Expires" : "-1", - "x-ms-request-id" : "cd5ee77b-0cef-4d46-9fbc-f07d1dcf565e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-20_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-20_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-focal-daily/Skus/minimal-20_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "ca2bfcf8-2a70-4005-b6b4-a9377730b9e6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef4b7ea2-b2d1-486d-81b8-4befaad122c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "52df42bf-f732-4b8d-8859-df3e604a6b8c", - "Date" : "Tue, 24 May 2022 13:02:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15862,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130204Z:52df42bf-f732-4b8d-8859-df3e604a6b8c", - "Expires" : "-1", - "x-ms-request-id" : "7dbf3fd5-9934-4d81-a1c4-49696b03be2e", - "Body" : "[]", - "x-ms-client-request-id" : "ef4b7ea2-b2d1-486d-81b8-4befaad122c3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-focal-daily/skus/minimal-20_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b5211ce-2275-4294-afbd-999c9d2572fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99cbdcff-35b4-40a8-9314-47a749d96e1e", - "Date" : "Tue, 24 May 2022 13:02:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15861,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:99cbdcff-35b4-40a8-9314-47a749d96e1e", - "Expires" : "-1", - "x-ms-request-id" : "4679e630-b659-4b66-8837-4a3a8d16536a", - "Body" : "[]", - "x-ms-client-request-id" : "2b5211ce-2275-4294-afbd-999c9d2572fb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c7d1802-bedc-4160-9e57-168b281ca475", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "899", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3524158a-7e16-459c-b027-70a846335613", - "Date" : "Tue, 24 May 2022 13:02:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9951,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:3524158a-7e16-459c-b027-70a846335613", - "Expires" : "-1", - "x-ms-request-id" : "0a0aea07-9d15-4a5e-8cd1-c868c0ad5fb1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-16_04-daily-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-16_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "9c7d1802-bedc-4160-9e57-168b281ca475", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37cf4d6e-cc2f-49a1-af2f-bfd3c49992d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2348", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b943f713-ec18-45e5-a151-503139173bd7", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15860,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:b943f713-ec18-45e5-a151-503139173bd7", - "Expires" : "-1", - "x-ms-request-id" : "ccd1994f-5096-44e3-bdd0-7049e28bfe51", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202012030\"\r\n }\r\n]", - "x-ms-client-request-id" : "37cf4d6e-cc2f-49a1-af2f-bfd3c49992d7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202011110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32e1a670-3333-427e-a6aa-06eb5faff1e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a254b2c9-0598-4c34-b586-c7bf9b5a3967", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11505,Microsoft.Compute/GetVMImageFromLocation30Min;72505", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:a254b2c9-0598-4c34-b586-c7bf9b5a3967", - "Expires" : "-1", - "x-ms-request-id" : "9143549b-6e4e-4cbd-8a2b-a1bc17d524a5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011110\"\r\n}", - "x-ms-client-request-id" : "32e1a670-3333-427e-a6aa-06eb5faff1e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202011140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba5b6d61-93df-40be-8c3c-01fd0a2dae1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ae76a16-749e-4022-bba9-eb25c4eb3af8", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11506,Microsoft.Compute/GetVMImageFromLocation30Min;72506", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:7ae76a16-749e-4022-bba9-eb25c4eb3af8", - "Expires" : "-1", - "x-ms-request-id" : "c9349faa-c746-479d-aad0-2f86546210f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011140\"\r\n}", - "x-ms-client-request-id" : "ba5b6d61-93df-40be-8c3c-01fd0a2dae1c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2421b04-302e-473d-ae9a-60b51cb8d6b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "040dcf23-26b8-43ff-968c-6fe6777751e6", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11503,Microsoft.Compute/GetVMImageFromLocation30Min;72503", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:040dcf23-26b8-43ff-968c-6fe6777751e6", - "Expires" : "-1", - "x-ms-request-id" : "a313178c-5815-49a3-8726-405bd8e15f7a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202012010\"\r\n}", - "x-ms-client-request-id" : "e2421b04-302e-473d-ae9a-60b51cb8d6b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202012030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a5cf9f8-fde4-49af-a1f6-7a3dcd0216ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75c796f6-8e6e-4bcd-93f3-4fce27bba6c5", - "Date" : "Tue, 24 May 2022 13:02:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11504,Microsoft.Compute/GetVMImageFromLocation30Min;72504", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:75c796f6-8e6e-4bcd-93f3-4fce27bba6c5", - "Expires" : "-1", - "x-ms-request-id" : "c15eaec7-1102-4bd0-abe3-649318cb0e57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202012030\"\r\n}", - "x-ms-client-request-id" : "4a5cf9f8-fde4-49af-a1f6-7a3dcd0216ba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202011300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a5a18d3-554b-4546-841e-892f82aeb6d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35733199-1e40-47d6-b972-1bcdabca68e9", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11502,Microsoft.Compute/GetVMImageFromLocation30Min;72502", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:35733199-1e40-47d6-b972-1bcdabca68e9", - "Expires" : "-1", - "x-ms-request-id" : "a79ee6cc-d7a4-4ca5-8896-7e843032684e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011300\"\r\n}", - "x-ms-client-request-id" : "1a5a18d3-554b-4546-841e-892f82aeb6d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202011160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39fdd71e-66a4-4a8e-9982-e73f6cc8283a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0eb8d879-b16d-4863-b650-60e7ba811134", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11500,Microsoft.Compute/GetVMImageFromLocation30Min;72500", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:0eb8d879-b16d-4863-b650-60e7ba811134", - "Expires" : "-1", - "x-ms-request-id" : "6c2c08f4-9a5e-4a85-811d-58d247089077", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011160\"\r\n}", - "x-ms-client-request-id" : "39fdd71e-66a4-4a8e-9982-e73f6cc8283a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts/versions/16.04.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb24ee75-3a36-42f6-814c-11e846709df6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "806", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66e8251f-e560-4bde-87b6-5399cb792a1a", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11501,Microsoft.Compute/GetVMImageFromLocation30Min;72501", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130205Z:66e8251f-e560-4bde-87b6-5399cb792a1a", - "Expires" : "-1", - "x-ms-request-id" : "b09fb6e2-f688-4174-82d8-bfc6f302c377", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts/Versions/16.04.202011230\"\r\n}", - "x-ms-client-request-id" : "cb24ee75-3a36-42f6-814c-11e846709df6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38703fe6-f1a1-47f5-b23c-0ee534c97875", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2043", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0ba4f5a-b036-4dd7-9285-b01f9dcaa052", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15859,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:d0ba4f5a-b036-4dd7-9285-b01f9dcaa052", - "Expires" : "-1", - "x-ms-request-id" : "ffd3bd87-47a7-47c6-b1b2-89a31a112de9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202012030\"\r\n }\r\n]", - "x-ms-client-request-id" : "38703fe6-f1a1-47f5-b23c-0ee534c97875", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions/16.04.202012030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d98075cb-810d-4e1e-a14b-ece8b399ec6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "804", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "def7cf4f-352a-480f-903d-2dd2b65f02f6", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11499,Microsoft.Compute/GetVMImageFromLocation30Min;72499", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:def7cf4f-352a-480f-903d-2dd2b65f02f6", - "Expires" : "-1", - "x-ms-request-id" : "c3a654e6-de28-46fb-8d41-29e15f52545d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202012030\"\r\n}", - "x-ms-client-request-id" : "d98075cb-810d-4e1e-a14b-ece8b399ec6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions/16.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a53d36c8-e7c9-47d9-bc71-f816fdf9c8a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "804", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f1fc958-497d-4dba-ac0e-3b38a15dba8e", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11498,Microsoft.Compute/GetVMImageFromLocation30Min;72498", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:1f1fc958-497d-4dba-ac0e-3b38a15dba8e", - "Expires" : "-1", - "x-ms-request-id" : "6563d2b0-6eec-46a1-9ac5-3792bc1172ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202012010\"\r\n}", - "x-ms-client-request-id" : "a53d36c8-e7c9-47d9-bc71-f816fdf9c8a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions/16.04.202011300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13e78a5b-a71d-4919-9ec5-a77843b934a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "804", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e28cd7cb-2382-4937-b626-9bda0515ccef", - "Date" : "Tue, 24 May 2022 13:02:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11497,Microsoft.Compute/GetVMImageFromLocation30Min;72497", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:e28cd7cb-2382-4937-b626-9bda0515ccef", - "Expires" : "-1", - "x-ms-request-id" : "34e0f4f8-2cc1-42f0-a33d-9e2bbdf07a9c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011300\"\r\n}", - "x-ms-client-request-id" : "13e78a5b-a71d-4919-9ec5-a77843b934a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions/16.04.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50127a7a-e5cb-43e1-851d-103795405fab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "804", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "099231a6-8760-437e-90cf-4c8ad240ddcf", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11495,Microsoft.Compute/GetVMImageFromLocation30Min;72495", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:099231a6-8760-437e-90cf-4c8ad240ddcf", - "Expires" : "-1", - "x-ms-request-id" : "7d198c3c-1ff7-4299-acaf-6947cfd9e644", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011230\"\r\n}", - "x-ms-client-request-id" : "50127a7a-e5cb-43e1-851d-103795405fab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions/16.04.202011110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8b2b84a-2c8d-4c3a-93e5-5ce36e0e762c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "804", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d969207-e4c3-4207-bd88-67ffa35a515c", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11494,Microsoft.Compute/GetVMImageFromLocation30Min;72494", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:0d969207-e4c3-4207-bd88-67ffa35a515c", - "Expires" : "-1", - "x-ms-request-id" : "730b818d-7466-4893-87ff-9c30d7747fde", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011110\"\r\n}", - "x-ms-client-request-id" : "a8b2b84a-2c8d-4c3a-93e5-5ce36e0e762c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-minimal-xenial-daily/skus/minimal-16_04-daily-lts-gen2/versions/16.04.202011140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "393936e2-5a84-4056-9a86-8b8fdf7a4c8b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "804", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fae16a6e-2e07-4c89-9e16-3920e6c5169f", - "Date" : "Tue, 24 May 2022 13:02:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11496,Microsoft.Compute/GetVMImageFromLocation30Min;72496", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:fae16a6e-2e07-4c89-9e16-3920e6c5169f", - "Expires" : "-1", - "x-ms-request-id" : "164213f9-489f-44c4-b43a-dcce52d1f4c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-minimal-xenial-daily/Skus/minimal-16_04-daily-lts-gen2/Versions/16.04.202011140\"\r\n}", - "x-ms-client-request-id" : "393936e2-5a84-4056-9a86-8b8fdf7a4c8b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-server-arm-preview-bionic/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "170e2bda-63ae-4fd4-8a27-377ac7d2f077", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "423", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3fe9319d-5bf9-48b2-ac3c-39431d6094c3", - "Date" : "Tue, 24 May 2022 13:02:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9950,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130206Z:3fe9319d-5bf9-48b2-ac3c-39431d6094c3", - "Expires" : "-1", - "x-ms-request-id" : "51a44153-a525-4a9b-845b-5ca8a0b18aa3", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-lts\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-server-arm-preview-bionic/Skus/18_04-lts\"\r\n }\r\n]", - "x-ms-client-request-id" : "170e2bda-63ae-4fd4-8a27-377ac7d2f077", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-server-arm-preview-bionic/skus/18_04-lts/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26529193-522b-4ca2-96f8-ff899a9ef318", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "655", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c664a7b9-f27e-4fcc-838e-b6fbca913954", - "Date" : "Tue, 24 May 2022 13:02:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15858,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130207Z:c664a7b9-f27e-4fcc-838e-b6fbca913954", - "Expires" : "-1", - "x-ms-request-id" : "9702cf4a-044b-4646-81bf-fd7abbe391ef", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-server-arm-preview-bionic/Skus/18_04-lts/Versions/18.04.202204240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-server-arm-preview-bionic/Skus/18_04-lts/Versions/18.04.202205020\"\r\n }\r\n]", - "x-ms-client-request-id" : "26529193-522b-4ca2-96f8-ff899a9ef318", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-server-arm-preview-bionic/skus/18_04-lts/versions/18.04.202204240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3df30a68-1f44-4fd1-9294-d514c23052f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "912", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25d2fb13-62aa-4c4c-9c25-f20152596a0f", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11493,Microsoft.Compute/GetVMImageFromLocation30Min;72493", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130207Z:25d2fb13-62aa-4c4c-9c25-f20152596a0f", - "Expires" : "-1", - "x-ms-request-id" : "3ce014c4-892a-4a3c-bfd3-e08f262d0eaa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-server-arm-preview-bionic/Skus/18_04-lts/Versions/18.04.202204240\"\r\n}", - "x-ms-client-request-id" : "3df30a68-1f44-4fd1-9294-d514c23052f3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0002-com-ubuntu-server-arm-preview-bionic/skus/18_04-lts/versions/18.04.202205020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fa2dc2c-4712-4c13-80b9-0912983f9053", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "912", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c99b6701-b066-490b-b4d1-9916978b35fa", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11492,Microsoft.Compute/GetVMImageFromLocation30Min;72492", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130207Z:c99b6701-b066-490b-b4d1-9916978b35fa", - "Expires" : "-1", - "x-ms-request-id" : "4e0ed322-15cd-45f5-9b2f-0e008bf7c82b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"Arm64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0002-com-ubuntu-server-arm-preview-bionic/Skus/18_04-lts/Versions/18.04.202205020\"\r\n}", - "x-ms-client-request-id" : "0fa2dc2c-4712-4c13-80b9-0912983f9053", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38c3d9d1-6087-427a-a68d-ab53e33e2696", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "879", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9262eef-f36f-45b7-bc29-debc12acff7a", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9949,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130207Z:b9262eef-f36f-45b7-bc29-debc12acff7a", - "Expires" : "-1", - "x-ms-request-id" : "67e9f52f-5f23-4a02-a0dd-7077aac636ac", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-19_10-daily\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"minimal-19_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "38c3d9d1-6087-427a-a68d-ab53e33e2696", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "056e08ab-4ee8-431f-a762-922d42f7d709", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d8c486a-24be-4f00-8e29-6e2b830c5b0a", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15857,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:3d8c486a-24be-4f00-8e29-6e2b830c5b0a", - "Expires" : "-1", - "x-ms-request-id" : "c4acd3a0-c3a2-4f5a-b3ed-bac1b640e855", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202007020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202007060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202007070\"\r\n }\r\n]", - "x-ms-client-request-id" : "056e08ab-4ee8-431f-a762-922d42f7d709", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8845d26-0ebc-429e-85e6-fff6ad262ba5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4027388-30c5-4acc-89c6-bec3d2dd6840", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11491,Microsoft.Compute/GetVMImageFromLocation30Min;72491", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:e4027388-30c5-4acc-89c6-bec3d2dd6840", - "Expires" : "-1", - "x-ms-request-id" : "a9a0b28a-8a2b-45ec-9158-c846f9c8b91c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006100\"\r\n}", - "x-ms-client-request-id" : "d8845d26-0ebc-429e-85e6-fff6ad262ba5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202006160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd683d11-66af-4861-a26d-22b6e3c87ffa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa1882f9-a10f-4409-9273-f77da8fe603f", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11490,Microsoft.Compute/GetVMImageFromLocation30Min;72490", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:aa1882f9-a10f-4409-9273-f77da8fe603f", - "Expires" : "-1", - "x-ms-request-id" : "8bb7a667-e013-43a8-abc9-9c50d4d50823", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006160\"\r\n}", - "x-ms-client-request-id" : "dd683d11-66af-4861-a26d-22b6e3c87ffa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202007060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b32e6c32-e13a-471a-953e-66d54fcb2b17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3408f3ec-dde0-4e28-b806-505b5c78d56c", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11489,Microsoft.Compute/GetVMImageFromLocation30Min;72489", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:3408f3ec-dde0-4e28-b806-505b5c78d56c", - "Expires" : "-1", - "x-ms-request-id" : "5dea4420-12e1-4e56-9bc6-9d222af53bd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202007060\"\r\n}", - "x-ms-client-request-id" : "b32e6c32-e13a-471a-953e-66d54fcb2b17", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202007070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56559c35-a853-467a-bdac-75e2f40af849", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d4f19af-4735-4fd6-a908-1feb79c452db", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11488,Microsoft.Compute/GetVMImageFromLocation30Min;72488", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:9d4f19af-4735-4fd6-a908-1feb79c452db", - "Expires" : "-1", - "x-ms-request-id" : "5f1edb14-bf3d-46cb-8bcf-ff1fcfd61e4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202007070\"\r\n}", - "x-ms-client-request-id" : "56559c35-a853-467a-bdac-75e2f40af849", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202006050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0c421fa-02b1-46fe-b226-8c7b9d41d125", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "53c488cd-c1c2-4b5d-a062-9d4d552495c7", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11487,Microsoft.Compute/GetVMImageFromLocation30Min;72487", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:53c488cd-c1c2-4b5d-a062-9d4d552495c7", - "Expires" : "-1", - "x-ms-request-id" : "fd52cabc-1498-492a-ae79-05f913daff76", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006050\"\r\n}", - "x-ms-client-request-id" : "f0c421fa-02b1-46fe-b226-8c7b9d41d125", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202007020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3959a185-8fb4-4bc4-8ba6-fc38fe7fe814", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a81dcae8-7b61-4a74-a96f-e2d63bb3bb92", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11486,Microsoft.Compute/GetVMImageFromLocation30Min;72486", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:a81dcae8-7b61-4a74-a96f-e2d63bb3bb92", - "Expires" : "-1", - "x-ms-request-id" : "5ef8200d-74d4-42aa-9f1d-ce496f0cd470", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202007020\"\r\n}", - "x-ms-client-request-id" : "3959a185-8fb4-4bc4-8ba6-fc38fe7fe814", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily/versions/19.10.202006110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fde91310-82c4-46a8-b61b-d729804c36ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "800", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18efbf9e-3878-4044-b6ee-4a79c2bd9ae6", - "Date" : "Tue, 24 May 2022 13:02:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11485,Microsoft.Compute/GetVMImageFromLocation30Min;72485", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:18efbf9e-3878-4044-b6ee-4a79c2bd9ae6", - "Expires" : "-1", - "x-ms-request-id" : "a9768ebb-63e1-44a5-a927-0a06b361ccd0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily/Versions/19.10.202006110\"\r\n}", - "x-ms-client-request-id" : "fde91310-82c4-46a8-b61b-d729804c36ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9690e3c-4b15-4b50-9216-3c3047d2a886", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2341", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e285c60-0d09-489a-b7ea-c591869664cd", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15856,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130208Z:4e285c60-0d09-489a-b7ea-c591869664cd", - "Expires" : "-1", - "x-ms-request-id" : "4c3bfa85-284d-4525-9382-6432cbb3e4f0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202007020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202007060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202007070\"\r\n }\r\n]", - "x-ms-client-request-id" : "b9690e3c-4b15-4b50-9216-3c3047d2a886", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202006110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce78a699-5e88-477d-9b2a-d10c55ef063c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0fbc727-0b87-460a-b874-bc0c06d4f20d", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11483,Microsoft.Compute/GetVMImageFromLocation30Min;72483", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:d0fbc727-0b87-460a-b874-bc0c06d4f20d", - "Expires" : "-1", - "x-ms-request-id" : "37b6bc33-0a29-4ee0-9786-50ea02cab65d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006110\"\r\n}", - "x-ms-client-request-id" : "ce78a699-5e88-477d-9b2a-d10c55ef063c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202006160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac70fcd4-a0dc-443a-99de-b80bb619f936", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4d6fff8-7dff-432a-84ad-122e61a8e8b0", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11482,Microsoft.Compute/GetVMImageFromLocation30Min;72482", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:f4d6fff8-7dff-432a-84ad-122e61a8e8b0", - "Expires" : "-1", - "x-ms-request-id" : "5eeff9f2-077e-4331-99be-466b748d693d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006160\"\r\n}", - "x-ms-client-request-id" : "ac70fcd4-a0dc-443a-99de-b80bb619f936", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202006050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d06a8071-5139-449a-a2e3-787f2c378a2c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14afeffd-1e30-4161-b907-cdcb8eda92ae", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11484,Microsoft.Compute/GetVMImageFromLocation30Min;72484", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:14afeffd-1e30-4161-b907-cdcb8eda92ae", - "Expires" : "-1", - "x-ms-request-id" : "61de3aef-2381-4af0-a555-c06a53636486", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006050\"\r\n}", - "x-ms-client-request-id" : "d06a8071-5139-449a-a2e3-787f2c378a2c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2188c03c-a166-42e4-aedb-780087bd4b65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b03d90b-36ff-45b1-b603-74622768bb45", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11481,Microsoft.Compute/GetVMImageFromLocation30Min;72481", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:9b03d90b-36ff-45b1-b603-74622768bb45", - "Expires" : "-1", - "x-ms-request-id" : "a6de952f-0850-4a0b-b0e3-255f5d5bbbd1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202006100\"\r\n}", - "x-ms-client-request-id" : "2188c03c-a166-42e4-aedb-780087bd4b65", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202007020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cc7338b-7909-44ae-9e15-d03e0d7f37c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "515d4e73-8bcd-40b5-a293-ad7a6a717a6b", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11480,Microsoft.Compute/GetVMImageFromLocation30Min;72480", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:515d4e73-8bcd-40b5-a293-ad7a6a717a6b", - "Expires" : "-1", - "x-ms-request-id" : "1c3edc9a-dfa2-407d-a802-02424e52cb8f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202007020\"\r\n}", - "x-ms-client-request-id" : "5cc7338b-7909-44ae-9e15-d03e0d7f37c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202007060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59de87d2-9729-4253-bc27-346a956ddccf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "325eecc7-35ba-483c-a7eb-7a7ccadef596", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11478,Microsoft.Compute/GetVMImageFromLocation30Min;72478", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:325eecc7-35ba-483c-a7eb-7a7ccadef596", - "Expires" : "-1", - "x-ms-request-id" : "60daa047-67b3-4a79-b836-678b714747be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202007060\"\r\n}", - "x-ms-client-request-id" : "59de87d2-9729-4253-bc27-346a956ddccf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-minimal-eoan-daily/skus/minimal-19_10-daily-gen2/versions/19.10.202007070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1951d85-c6c9-4b2b-b102-f7688dc9e7d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "798", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc4c1148-7360-491f-8b45-448059cb0b86", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11479,Microsoft.Compute/GetVMImageFromLocation30Min;72479", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:bc4c1148-7360-491f-8b45-448059cb0b86", - "Expires" : "-1", - "x-ms-request-id" : "11cea554-c911-426d-af44-3a2d5b4c9d42", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-minimal-eoan-daily/Skus/minimal-19_10-daily-gen2/Versions/19.10.202007070\"\r\n}", - "x-ms-client-request-id" : "a1951d85-c6c9-4b2b-b102-f7688dc9e7d1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b252290-a183-47ad-b986-872ea5642d1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "417", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a9d0df0-fee2-47fa-920c-3243354bf069", - "Date" : "Tue, 24 May 2022 13:02:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9948,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:0a9d0df0-fee2-47fa-920c-3243354bf069", - "Expires" : "-1", - "x-ms-request-id" : "27ba0dc9-5ba9-4828-9e3f-3570ee1bcdcb", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "2b252290-a183-47ad-b986-872ea5642d1f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fcf8fd4-1a86-46f1-b30c-80c93c6a425b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1913", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51396ab2-05b2-48e8-a8a0-bdb5d6b8cac0", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15855,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:51396ab2-05b2-48e8-a8a0-bdb5d6b8cac0", - "Expires" : "-1", - "x-ms-request-id" : "7cb897ea-4f95-4f4a-b796-653befa5a201", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007292\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202007292\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210325\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.20210325\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.20210720\"\r\n }\r\n]", - "x-ms-client-request-id" : "8fcf8fd4-1a86-46f1-b30c-80c93c6a425b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions/18.04.20210325?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c08a9af0-434d-4f45-9860-f932ef7bef0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1076", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f10450d8-c564-49bf-a600-13a55a65b613", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11476,Microsoft.Compute/GetVMImageFromLocation30Min;72476", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:f10450d8-c564-49bf-a600-13a55a65b613", - "Expires" : "-1", - "x-ms-request-id" : "6efd672a-e4a7-4f40-8ca6-04355119782b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210325\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.20210325\"\r\n}", - "x-ms-client-request-id" : "c08a9af0-434d-4f45-9860-f932ef7bef0a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions/18.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c25f2374-ab69-4aec-86d4-fba6dac57152", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42b37c7b-48fe-4319-a8e0-a6caaf82297c", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11477,Microsoft.Compute/GetVMImageFromLocation30Min;72477", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:42b37c7b-48fe-4319-a8e0-a6caaf82297c", - "Expires" : "-1", - "x-ms-request-id" : "7a6a875f-98b0-4e49-a806-6f18aefb87ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202004290\"\r\n}", - "x-ms-client-request-id" : "c25f2374-ab69-4aec-86d4-fba6dac57152", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions/18.04.20210720?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc676093-4acc-4874-b9f5-ba7fc2ea345d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1076", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08926d92-a59b-4278-bcf9-26e534ae2e49", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11475,Microsoft.Compute/GetVMImageFromLocation30Min;72475", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130210Z:08926d92-a59b-4278-bcf9-26e534ae2e49", - "Expires" : "-1", - "x-ms-request-id" : "c7589278-62f5-44eb-a2bc-f81dfb936aeb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.20210720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.20210720\"\r\n}", - "x-ms-client-request-id" : "dc676093-4acc-4874-b9f5-ba7fc2ea345d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions/18.04.202007292?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15a251e4-fea7-4106-9847-c337d94f1621", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb492db3-4ed5-4a3f-af69-6d6d77ade696", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11474,Microsoft.Compute/GetVMImageFromLocation30Min;72474", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:eb492db3-4ed5-4a3f-af69-6d6d77ade696", - "Expires" : "-1", - "x-ms-request-id" : "c302155a-f6f1-4edb-9531-4371b220cfac", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007292\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202007292\"\r\n}", - "x-ms-client-request-id" : "15a251e4-fea7-4106-9847-c337d94f1621", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions/18.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0b90af3-470d-4f54-b402-6713bc03311c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "46b5f551-2e74-4a7c-8378-00bdd923e273", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11473,Microsoft.Compute/GetVMImageFromLocation30Min;72473", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130209Z:46b5f551-2e74-4a7c-8378-00bdd923e273", - "Expires" : "-1", - "x-ms-request-id" : "97a5113d-ed46-4bf1-8aae-e10f9d79d5e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202010140\"\r\n}", - "x-ms-client-request-id" : "d0b90af3-470d-4f54-b402-6713bc03311c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/0003-com-ubuntu-server-trusted-vm/skus/18_04-gen2/versions/18.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebbfb65a-236c-4596-af6c-80079ded2e49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a26ec09a-9e1a-41c9-b75e-323134ccdb74", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11472,Microsoft.Compute/GetVMImageFromLocation30Min;72472", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130210Z:a26ec09a-9e1a-41c9-b75e-323134ccdb74", - "Expires" : "-1", - "x-ms-request-id" : "9d4a5d75-1300-460d-8d0a-f68386106d20", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0003-com-ubuntu-server-trusted-vm/Skus/18_04-gen2/Versions/18.04.202009080\"\r\n}", - "x-ms-client-request-id" : "ebbfb65a-236c-4596-af6c-80079ded2e49", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/test-ubuntu-premium-offer-0002/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62d04f32-d3b6-4838-93e3-879ba75699d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c3f95fd-9204-4f5b-b171-0380bca02442", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9947,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130210Z:6c3f95fd-9204-4f5b-b171-0380bca02442", - "Expires" : "-1", - "x-ms-request-id" : "7addc68b-5f55-46da-813f-57982d10c809", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"premium-ubuntu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/test-ubuntu-premium-offer-0002/Skus/premium-ubuntu\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"premium-ubuntu-trusty\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/test-ubuntu-premium-offer-0002/Skus/premium-ubuntu-trusty\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"premium-ubuntu-xenial\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/test-ubuntu-premium-offer-0002/Skus/premium-ubuntu-xenial\"\r\n }\r\n]", - "x-ms-client-request-id" : "62d04f32-d3b6-4838-93e3-879ba75699d7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/test-ubuntu-premium-offer-0002/skus/premium-ubuntu/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d19f7b6-4a61-4d4b-ae8b-284a2782fe40", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "65c87853-3fe0-4e99-a50c-192ca68e08f5", - "Date" : "Tue, 24 May 2022 13:02:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15854,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130210Z:65c87853-3fe0-4e99-a50c-192ca68e08f5", - "Expires" : "-1", - "x-ms-request-id" : "92459d6a-8ca2-4f58-b2cc-098ec68fc9da", - "Body" : "[]", - "x-ms-client-request-id" : "9d19f7b6-4a61-4d4b-ae8b-284a2782fe40", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/test-ubuntu-premium-offer-0002/skus/premium-ubuntu-trusty/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c771c7b7-154d-467f-9c12-184d556e836c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e620e2e0-c782-451f-a532-0f30fa167d30", - "Date" : "Tue, 24 May 2022 13:02:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15853,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130210Z:e620e2e0-c782-451f-a532-0f30fa167d30", - "Expires" : "-1", - "x-ms-request-id" : "1db8ab85-41d1-4484-9d4d-69c374ab3d2e", - "Body" : "[]", - "x-ms-client-request-id" : "c771c7b7-154d-467f-9c12-184d556e836c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/test-ubuntu-premium-offer-0002/skus/premium-ubuntu-xenial/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90b23ccb-6098-4675-b098-b758fcceaa1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75bee9c5-dd31-47ef-902d-396a97e6ad4d", - "Date" : "Tue, 24 May 2022 13:02:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15852,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130211Z:75bee9c5-dd31-47ef-902d-396a97e6ad4d", - "Expires" : "-1", - "x-ms-request-id" : "85909b73-6df4-4ff7-b07b-6397ae9ae967", - "Body" : "[]", - "x-ms-client-request-id" : "90b23ccb-6098-4675-b098-b758fcceaa1c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7820b70e-5308-4faa-bd0d-8165f4ec8b02", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "10343", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39168793-af9f-4082-9a74-7b8a1bd9b7ce", - "Date" : "Tue, 24 May 2022 13:02:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9946,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130211Z:39168793-af9f-4082-9a74-7b8a1bd9b7ce", - "Expires" : "-1", - "x-ms-request-id" : "6e4cd681-7466-47ee-b5e1-e551d4780ca7", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.5-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.0-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.1-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.2-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.3-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.4-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.5-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.0-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16_04_0-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.10-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.10-DAILY\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-daily-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18_04-lts-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19_04-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19_04-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19_10-daily-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "7820b70e-5308-4faa-bd0d-8165f4ec8b02", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7cba872f-4537-4174-b9aa-bcd9ea618128", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5983", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7194c3c-0e6b-4762-9c56-629ee30c620f", - "Date" : "Tue, 24 May 2022 13:02:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15851,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130211Z:f7194c3c-0e6b-4762-9c56-629ee30c620f", - "Expires" : "-1", - "x-ms-request-id" : "4854647f-d1b9-4f02-b6fb-3f16a56b059d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201609190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201704170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201704170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201704270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201704270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201705020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201705020\"\r\n }\r\n]", - "x-ms-client-request-id" : "7cba872f-4537-4174-b9aa-bcd9ea618128", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201606270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f70a550-163b-4f14-bd13-aeadbcf2376b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea5b5735-b776-4d68-ade7-4ededf427bfe", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11471,Microsoft.Compute/GetVMImageFromLocation30Min;72471", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:ea5b5735-b776-4d68-ade7-4ededf427bfe", - "Expires" : "-1", - "x-ms-request-id" : "9939ff57-afcb-4232-919f-f0ead2afa76f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606270\"\r\n}", - "x-ms-client-request-id" : "0f70a550-163b-4f14-bd13-aeadbcf2376b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "913808dd-84de-4817-85e4-f6041dbf81d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca348022-4064-43b6-8b84-eab80f5ceb78", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11470,Microsoft.Compute/GetVMImageFromLocation30Min;72470", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:ca348022-4064-43b6-8b84-eab80f5ceb78", - "Expires" : "-1", - "x-ms-request-id" : "b89cf879-c001-4baa-b803-89d2ecebea01", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608080\"\r\n}", - "x-ms-client-request-id" : "913808dd-84de-4817-85e4-f6041dbf81d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201610201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68d65d29-0c07-4ff0-a1bd-1c249113ffd7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d7850ba-0c05-49c6-aae3-efb5984b5715", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11466,Microsoft.Compute/GetVMImageFromLocation30Min;72466", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:6d7850ba-0c05-49c6-aae3-efb5984b5715", - "Expires" : "-1", - "x-ms-request-id" : "23b655c9-7739-42e8-bd29-9fdc20c29e2f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610201\"\r\n}", - "x-ms-client-request-id" : "68d65d29-0c07-4ff0-a1bd-1c249113ffd7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201611300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15dc14f4-f072-4b58-8fcf-16c6b8fd5895", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5f1bae0-c9fc-422d-9644-ce776dd2ba5d", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11467,Microsoft.Compute/GetVMImageFromLocation30Min;72467", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:b5f1bae0-c9fc-422d-9644-ce776dd2ba5d", - "Expires" : "-1", - "x-ms-request-id" : "ebf415b1-c163-417d-a237-8b87792dd401", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611300\"\r\n}", - "x-ms-client-request-id" : "15dc14f4-f072-4b58-8fcf-16c6b8fd5895", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201702200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6a646ba-0f64-433c-8806-3e054da8de56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3000fc5c-7a10-4419-b3cc-f19ca2486a89", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11465,Microsoft.Compute/GetVMImageFromLocation30Min;72465", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:3000fc5c-7a10-4419-b3cc-f19ca2486a89", - "Expires" : "-1", - "x-ms-request-id" : "3e4ec86b-298f-433c-84b3-3c55f3fc4a78", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702200\"\r\n}", - "x-ms-client-request-id" : "a6a646ba-0f64-433c-8806-3e054da8de56", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201609190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9776c43e-432f-48d4-bca2-f67276e88871", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6c1901a-b69d-4a21-bb2b-df5982562c00", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11469,Microsoft.Compute/GetVMImageFromLocation30Min;72469", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:d6c1901a-b69d-4a21-bb2b-df5982562c00", - "Expires" : "-1", - "x-ms-request-id" : "fc19b7d4-590b-4b27-ba69-b0f25cc86d9c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201609190\"\r\n}", - "x-ms-client-request-id" : "9776c43e-432f-48d4-bca2-f67276e88871", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201702210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f606d09-e515-456c-84d8-1f6e91847f3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba73acb2-3d7e-4765-8a0d-7b9a04f116c3", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11456,Microsoft.Compute/GetVMImageFromLocation30Min;72456", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:ba73acb2-3d7e-4765-8a0d-7b9a04f116c3", - "Expires" : "-1", - "x-ms-request-id" : "a6ae47ac-e0f9-4d53-8e5c-907e4be345c0", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702210\"\r\n}", - "x-ms-client-request-id" : "5f606d09-e515-456c-84d8-1f6e91847f3e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201610100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fa38132-2880-4e24-a730-952a8c111bf4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ad831c3-62b2-4fde-9e53-7b7eed717fb1", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11468,Microsoft.Compute/GetVMImageFromLocation30Min;72468", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:7ad831c3-62b2-4fde-9e53-7b7eed717fb1", - "Expires" : "-1", - "x-ms-request-id" : "3f26c22d-935b-4efd-9e90-b091fe79e97c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610100\"\r\n}", - "x-ms-client-request-id" : "6fa38132-2880-4e24-a730-952a8c111bf4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201702020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95307a63-4400-4382-b4aa-031cfe7639f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75fb02cd-3fb6-42a3-8e09-878e381d4705", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11464,Microsoft.Compute/GetVMImageFromLocation30Min;72464", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:75fb02cd-3fb6-42a3-8e09-878e381d4705", - "Expires" : "-1", - "x-ms-request-id" : "2ee16f2e-0dee-442d-9755-9097267efc74", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702020\"\r\n}", - "x-ms-client-request-id" : "95307a63-4400-4382-b4aa-031cfe7639f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201705020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1711c7a4-6df2-4184-a241-6ab7dd2d76d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0cf4dbb3-9f86-4ac8-b042-94b3a198cb19", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11459,Microsoft.Compute/GetVMImageFromLocation30Min;72459", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:0cf4dbb3-9f86-4ac8-b042-94b3a198cb19", - "Expires" : "-1", - "x-ms-request-id" : "3b3e9bad-eb82-40ab-8aa0-d63f93c9477d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201705020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201705020\"\r\n}", - "x-ms-client-request-id" : "1711c7a4-6df2-4184-a241-6ab7dd2d76d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "281c4d71-9d40-4472-9e4e-f9a5df2bc42f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29039e8c-70d3-4770-afa4-c675808da638", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11461,Microsoft.Compute/GetVMImageFromLocation30Min;72461", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:29039e8c-70d3-4770-afa4-c675808da638", - "Expires" : "-1", - "x-ms-request-id" : "54bfbfa0-c4bb-4a9b-8d84-38b3eadd032e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608290\"\r\n}", - "x-ms-client-request-id" : "281c4d71-9d40-4472-9e4e-f9a5df2bc42f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201703300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bb7f9ec-1d8c-4b36-9bf0-dbdeb4bd4647", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7f4edf3-80b3-4617-930c-97ae4079b93b", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11457,Microsoft.Compute/GetVMImageFromLocation30Min;72457", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:e7f4edf3-80b3-4617-930c-97ae4079b93b", - "Expires" : "-1", - "x-ms-request-id" : "dc0a6b10-4eac-4285-95da-4fcef3b6a962", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703300\"\r\n}", - "x-ms-client-request-id" : "5bb7f9ec-1d8c-4b36-9bf0-dbdeb4bd4647", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201612050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa467414-8d28-4f97-a655-82cc351c8121", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2cc34854-d967-4a14-8da3-07a5ab2563bf", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11463,Microsoft.Compute/GetVMImageFromLocation30Min;72463", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:2cc34854-d967-4a14-8da3-07a5ab2563bf", - "Expires" : "-1", - "x-ms-request-id" : "ed85e0bb-97ea-4248-b30d-cc049fcf0cb5", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201612050\"\r\n}", - "x-ms-client-request-id" : "fa467414-8d28-4f97-a655-82cc351c8121", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201701100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12f36a89-667e-4da0-adb9-8b31ce41378e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9451b149-59f9-4d40-aa48-60aac81cd832", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11462,Microsoft.Compute/GetVMImageFromLocation30Min;72462", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:9451b149-59f9-4d40-aa48-60aac81cd832", - "Expires" : "-1", - "x-ms-request-id" : "2abdff9e-5522-4c03-83fa-0e4a749625cb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701100\"\r\n}", - "x-ms-client-request-id" : "12f36a89-667e-4da0-adb9-8b31ce41378e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201701040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74158c8a-2ab6-46d2-b255-dd6838672ac0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19690ece-8449-4860-828d-b59496302b10", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11458,Microsoft.Compute/GetVMImageFromLocation30Min;72458", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:19690ece-8449-4860-828d-b59496302b10", - "Expires" : "-1", - "x-ms-request-id" : "e87709c3-e429-44d6-a8d7-2e9786cf9fa6", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701040\"\r\n}", - "x-ms-client-request-id" : "74158c8a-2ab6-46d2-b255-dd6838672ac0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201611090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97c97698-9331-40be-8b08-c80714e1d89b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82ea856c-38e9-4acd-b0e0-54267ccbeaa2", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11460,Microsoft.Compute/GetVMImageFromLocation30Min;72460", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:82ea856c-38e9-4acd-b0e0-54267ccbeaa2", - "Expires" : "-1", - "x-ms-request-id" : "a89c7957-baff-4fce-b403-bbe3a496434f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611090\"\r\n}", - "x-ms-client-request-id" : "97c97698-9331-40be-8b08-c80714e1d89b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201704170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "419b48f3-8b1d-4eb5-ba39-e115b629ab05", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "8e2c5031-9a22-4ff8-a26f-af71fd9a52ba", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11454,Microsoft.Compute/GetVMImageFromLocation30Min;72454", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:8e2c5031-9a22-4ff8-a26f-af71fd9a52ba", - "Expires" : "-1", - "x-ms-request-id" : "bbece56a-d1c0-4be2-b21e-446b924e0ce5", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201704170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201704170\"\r\n}", - "x-ms-client-request-id" : "419b48f3-8b1d-4eb5-ba39-e115b629ab05", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15b1c096-aad5-4835-a6d4-5951ab49bc63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73d2475a-48c6-4dcb-8b1a-59a0c626b77d", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11455,Microsoft.Compute/GetVMImageFromLocation30Min;72455", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:73d2475a-48c6-4dcb-8b1a-59a0c626b77d", - "Expires" : "-1", - "x-ms-request-id" : "0a9ccb87-239e-4959-be73-2b8649b15d44", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608010\"\r\n}", - "x-ms-client-request-id" : "15b1c096-aad5-4835-a6d4-5951ab49bc63", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201704270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e934ef77-cfad-490c-a8a8-1dd4e25adeaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "179accc7-5c55-40e2-80ca-3eb3266c0c00", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11453,Microsoft.Compute/GetVMImageFromLocation30Min;72453", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:179accc7-5c55-40e2-80ca-3eb3266c0c00", - "Expires" : "-1", - "x-ms-request-id" : "dd1f423f-0c2f-444b-afbb-fb40b05355af", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201704270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201704270\"\r\n}", - "x-ms-client-request-id" : "e934ef77-cfad-490c-a8a8-1dd4e25adeaa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201703070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "146c460e-9331-4582-b7e9-83c71d79fee4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7d7ab142-10c4-46bc-b5c5-d7860b9dd8ea", - "Date" : "Tue, 24 May 2022 13:02:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11452,Microsoft.Compute/GetVMImageFromLocation30Min;72452", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:7d7ab142-10c4-46bc-b5c5-d7860b9dd8ea", - "Expires" : "-1", - "x-ms-request-id" : "6b506aaf-10a5-4d73-9e8a-f2bcf59dfc63", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703070\"\r\n}", - "x-ms-client-request-id" : "146c460e-9331-4582-b7e9-83c71d79fee4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2f7bff7-4f46-4242-9248-dd843cece43c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2096", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c475cbd2-6d76-44b2-9918-2f9bf9e19280", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15850,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130212Z:c475cbd2-6d76-44b2-9918-2f9bf9e19280", - "Expires" : "-1", - "x-ms-request-id" : "588f4df3-e146-40b1-80f6-e4b8a7ca963b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201808180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201903120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201903150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "b2f7bff7-4f46-4242-9248-dd843cece43c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201903120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cdd680b-bd33-486e-90bd-33f6fa0d5236", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "ad5aa513-f334-4b65-9f2d-c1a4d91ab216", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11451,Microsoft.Compute/GetVMImageFromLocation30Min;72451", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:ad5aa513-f334-4b65-9f2d-c1a4d91ab216", - "Expires" : "-1", - "x-ms-request-id" : "684a83cb-4fc1-4abf-b319-651d83e2d168", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201903120\"\r\n}", - "x-ms-client-request-id" : "2cdd680b-bd33-486e-90bd-33f6fa0d5236", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc3a1025-2964-40a8-8766-a40b0d06fa69", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "105f1c8e-45c6-4a5f-8abd-0c6c77483eda", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11448,Microsoft.Compute/GetVMImageFromLocation30Min;72448", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:105f1c8e-45c6-4a5f-8abd-0c6c77483eda", - "Expires" : "-1", - "x-ms-request-id" : "2dde9c97-196c-48b4-be92-19a3fcc28893", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "cc3a1025-2964-40a8-8766-a40b0d06fa69", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201903150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42a417b1-a3ef-4abd-ba0c-1c73de491f1e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88906c43-ec2c-42bb-8edc-7bdc159a1fce", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11445,Microsoft.Compute/GetVMImageFromLocation30Min;72445", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:88906c43-ec2c-42bb-8edc-7bdc159a1fce", - "Expires" : "-1", - "x-ms-request-id" : "92b8f4ae-264a-4ead-95ac-268d49cd772e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201903150\"\r\n}", - "x-ms-client-request-id" : "42a417b1-a3ef-4abd-ba0c-1c73de491f1e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e76a9b9-1a15-4858-b076-168b72b4efc4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b97dcc70-c9c4-4664-a81c-77ded4925a4e", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11447,Microsoft.Compute/GetVMImageFromLocation30Min;72447", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:b97dcc70-c9c4-4664-a81c-77ded4925a4e", - "Expires" : "-1", - "x-ms-request-id" : "2099c7cf-976d-4af2-9015-dfd476de4eae", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201808140\"\r\n}", - "x-ms-client-request-id" : "9e76a9b9-1a15-4858-b076-168b72b4efc4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c17d0070-8cdd-46dd-9d37-ab5c128d33b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c14af563-a1fb-4078-839b-c27fb92d445b", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11446,Microsoft.Compute/GetVMImageFromLocation30Min;72446", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:c14af563-a1fb-4078-839b-c27fb92d445b", - "Expires" : "-1", - "x-ms-request-id" : "b2c1a885-2aef-4756-a9be-deb7acf03cf5", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201901221\"\r\n}", - "x-ms-client-request-id" : "c17d0070-8cdd-46dd-9d37-ab5c128d33b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201808180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fcfa250-7ef3-4c5f-a9ed-fcf251b08e37", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "444b5972-bcb9-417e-8e67-9a62056eb818", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11450,Microsoft.Compute/GetVMImageFromLocation30Min;72450", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:444b5972-bcb9-417e-8e67-9a62056eb818", - "Expires" : "-1", - "x-ms-request-id" : "e17a0dda-3032-4404-87b4-2335b5a27e12", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201808180\"\r\n}", - "x-ms-client-request-id" : "0fcfa250-7ef3-4c5f-a9ed-fcf251b08e37", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.0-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5baf2571-e15c-4d53-878e-5ce306d0a16a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cce6aff3-1d9f-4fe3-82dd-1e9c288c134a", - "Date" : "Tue, 24 May 2022 13:02:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11449,Microsoft.Compute/GetVMImageFromLocation30Min;72449", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:cce6aff3-1d9f-4fe3-82dd-1e9c288c134a", - "Expires" : "-1", - "x-ms-request-id" : "b722479b-46ef-4000-9b24-fab99e6c53bb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.0-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "5baf2571-e15c-4d53-878e-5ce306d0a16a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3472b769-1809-47c8-adfc-fec3620a99c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1797", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0080093c-1f02-41c5-b8d6-df4e4d223c1d", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15849,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:0080093c-1f02-41c5-b8d6-df4e4d223c1d", - "Expires" : "-1", - "x-ms-request-id" : "c2160fe2-94f7-489a-9004-ff7c1fed4c41", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201808180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201903150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "3472b769-1809-47c8-adfc-fec3620a99c1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57329752-755c-4790-9ff0-025a781766e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bdd6264-3f8f-4ff2-9a99-c569321a1a5b", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11444,Microsoft.Compute/GetVMImageFromLocation30Min;72444", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:6bdd6264-3f8f-4ff2-9a99-c569321a1a5b", - "Expires" : "-1", - "x-ms-request-id" : "f0578ad2-0740-4b9e-84ff-29233d77ba4d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201901221\"\r\n}", - "x-ms-client-request-id" : "57329752-755c-4790-9ff0-025a781766e2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c89cac5-464f-4b2f-9ea8-f2ddbee59c88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d43cdfc2-0a15-4341-beb1-02bba93ea95a", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11442,Microsoft.Compute/GetVMImageFromLocation30Min;72442", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:d43cdfc2-0a15-4341-beb1-02bba93ea95a", - "Expires" : "-1", - "x-ms-request-id" : "f8bd2946-fb3b-4780-a85e-26e1d4a96e06", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "1c89cac5-464f-4b2f-9ea8-f2ddbee59c88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6bfd475-d556-4e18-867c-6e3bc8f08f95", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "c7ee185a-6d98-4b86-89d7-1ee03d352059", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11443,Microsoft.Compute/GetVMImageFromLocation30Min;72443", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130213Z:c7ee185a-6d98-4b86-89d7-1ee03d352059", - "Expires" : "-1", - "x-ms-request-id" : "6636547b-2d0c-4dec-a964-5d90c65407a5", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201808140\"\r\n}", - "x-ms-client-request-id" : "c6bfd475-d556-4e18-867c-6e3bc8f08f95", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "934f9bab-b9ad-4ebd-ad0b-9bf821d4d72b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2371f22c-4483-4ebc-84bb-ac7a26feaa6a", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11441,Microsoft.Compute/GetVMImageFromLocation30Min;72441", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:2371f22c-4483-4ebc-84bb-ac7a26feaa6a", - "Expires" : "-1", - "x-ms-request-id" : "48b6ed67-d34b-4e8c-97d7-4b1ebcd200d2", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "934f9bab-b9ad-4ebd-ad0b-9bf821d4d72b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201903150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad9a0f30-d26a-4b9c-aefc-6ee088c3eaf5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa32c04f-63cf-447f-bd19-f48cdb461b32", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11440,Microsoft.Compute/GetVMImageFromLocation30Min;72440", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:aa32c04f-63cf-447f-bd19-f48cdb461b32", - "Expires" : "-1", - "x-ms-request-id" : "1e22311c-49af-45b3-b9fc-74d9505cb71c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201903150\"\r\n}", - "x-ms-client-request-id" : "ad9a0f30-d26a-4b9c-aefc-6ee088c3eaf5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201808180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12a2c798-b1da-4972-9384-23c2a00b5cb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee9ae0f2-cc3c-46c2-b0b8-37937e03d4e4", - "Date" : "Tue, 24 May 2022 13:02:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11439,Microsoft.Compute/GetVMImageFromLocation30Min;72439", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:ee9ae0f2-cc3c-46c2-b0b8-37937e03d4e4", - "Expires" : "-1", - "x-ms-request-id" : "39d6a529-586e-4f1a-a4fa-d4a89a8a8400", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201808180\"\r\n}", - "x-ms-client-request-id" : "12a2c798-b1da-4972-9384-23c2a00b5cb9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a92aa75e-b319-45e5-a6ac-75d11c964e98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1797", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d37f6e7-c96c-477c-b915-2648d194ef4d", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15848,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:9d37f6e7-c96c-477c-b915-2648d194ef4d", - "Expires" : "-1", - "x-ms-request-id" : "0ea68b3d-a5cb-440b-a8d3-d6c28874dc15", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201808180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201903150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "a92aa75e-b319-45e5-a6ac-75d11c964e98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201808180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41806f69-3a16-4eb3-aa40-7990c22a94a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "8485c078-822d-48eb-80e1-9d13d89bc7ff", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11438,Microsoft.Compute/GetVMImageFromLocation30Min;72438", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:8485c078-822d-48eb-80e1-9d13d89bc7ff", - "Expires" : "-1", - "x-ms-request-id" : "4eb5ec12-0a90-4104-a524-daa8d2da93cf", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201808180\"\r\n}", - "x-ms-client-request-id" : "41806f69-3a16-4eb3-aa40-7990c22a94a2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201903150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2969522b-cbef-48b1-83b0-4ebb51437eac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "846b5ac1-a91f-467d-b2e2-7de1f6af64d2", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11437,Microsoft.Compute/GetVMImageFromLocation30Min;72437", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:846b5ac1-a91f-467d-b2e2-7de1f6af64d2", - "Expires" : "-1", - "x-ms-request-id" : "282c601a-7489-47ae-afd8-d01c03526f82", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201903150\"\r\n}", - "x-ms-client-request-id" : "2969522b-cbef-48b1-83b0-4ebb51437eac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9ba3c50-0b84-4208-818b-3b2acf1b4466", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "694dfb11-666d-492e-85c9-bff2e4f1a0f2", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11436,Microsoft.Compute/GetVMImageFromLocation30Min;72436", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:694dfb11-666d-492e-85c9-bff2e4f1a0f2", - "Expires" : "-1", - "x-ms-request-id" : "c424a970-c1a7-4c45-8bc5-c18208b63fa9", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201805220\"\r\n}", - "x-ms-client-request-id" : "b9ba3c50-0b84-4208-818b-3b2acf1b4466", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94938a2a-a7cc-4a34-90c5-48ad4ad4a72f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e95c433-16ec-4188-b222-5750e2a043ef", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11435,Microsoft.Compute/GetVMImageFromLocation30Min;72435", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:2e95c433-16ec-4188-b222-5750e2a043ef", - "Expires" : "-1", - "x-ms-request-id" : "c7df9b38-ec21-43ce-8ad5-78ce9d78a340", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201901221\"\r\n}", - "x-ms-client-request-id" : "94938a2a-a7cc-4a34-90c5-48ad4ad4a72f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afb53bd4-9447-42d1-8742-5d97a85ab384", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d3d429f-fd21-42ff-ad32-dc6f650bd977", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11434,Microsoft.Compute/GetVMImageFromLocation30Min;72434", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:4d3d429f-fd21-42ff-ad32-dc6f650bd977", - "Expires" : "-1", - "x-ms-request-id" : "d78f9adc-ad66-4441-bedc-be7d505c7cff", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "afb53bd4-9447-42d1-8742-5d97a85ab384", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01c126fc-2ead-4622-a7a9-1ddb7c9a0d27", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b80e23b-7d81-436d-ba94-550ee8404595", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11433,Microsoft.Compute/GetVMImageFromLocation30Min;72433", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130214Z:8b80e23b-7d81-436d-ba94-550ee8404595", - "Expires" : "-1", - "x-ms-request-id" : "19bf017e-a493-46e0-bc30-c3bf71de4a03", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "01c126fc-2ead-4622-a7a9-1ddb7c9a0d27", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1619c5b0-6d2f-488e-9560-8ae47ab14737", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1797", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7d5a9ea6-a6e7-478b-8c48-92347967f4c3", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15847,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:7d5a9ea6-a6e7-478b-8c48-92347967f4c3", - "Expires" : "-1", - "x-ms-request-id" : "bbcd5340-d253-4ee7-a15b-2a071d9f080d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201808180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201903150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "1619c5b0-6d2f-488e-9560-8ae47ab14737", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60c5d3d6-e457-4ed5-a1ca-dfbba32d06fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3eec82f-ec58-4372-bd98-08432d2a61b0", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11432,Microsoft.Compute/GetVMImageFromLocation30Min;72432", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:e3eec82f-ec58-4372-bd98-08432d2a61b0", - "Expires" : "-1", - "x-ms-request-id" : "4d21b4d7-428e-4034-a3c1-bd090549ddf0", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201901221\"\r\n}", - "x-ms-client-request-id" : "60c5d3d6-e457-4ed5-a1ca-dfbba32d06fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201808180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25a51c67-4121-4a05-ad30-710ec6eeba65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "058d3a7d-ed54-4d9c-bb85-a2eca99c9084", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11431,Microsoft.Compute/GetVMImageFromLocation30Min;72431", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:058d3a7d-ed54-4d9c-bb85-a2eca99c9084", - "Expires" : "-1", - "x-ms-request-id" : "c0955cca-038f-4f7a-bee9-160b473039f8", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201808180\"\r\n}", - "x-ms-client-request-id" : "25a51c67-4121-4a05-ad30-710ec6eeba65", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201903150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea31c516-b6b5-4989-b69c-44449aa9aaaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "230162c1-9473-4923-8ccd-9da327ea0753", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11429,Microsoft.Compute/GetVMImageFromLocation30Min;72429", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:230162c1-9473-4923-8ccd-9da327ea0753", - "Expires" : "-1", - "x-ms-request-id" : "b3097a23-ce6c-4706-87dc-43a8b450ca3e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201903150\"\r\n}", - "x-ms-client-request-id" : "ea31c516-b6b5-4989-b69c-44449aa9aaaa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "edbed8cb-a1de-4769-b436-32ed01b2dcb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0a1eaad-a63c-4485-97db-950f00f8b380", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11430,Microsoft.Compute/GetVMImageFromLocation30Min;72430", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:d0a1eaad-a63c-4485-97db-950f00f8b380", - "Expires" : "-1", - "x-ms-request-id" : "c0313553-c513-4043-8c11-ccf94926ec47", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "edbed8cb-a1de-4769-b436-32ed01b2dcb6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73174ae6-806b-45d2-b629-7dfc51b08691", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "693529bf-dfba-4fa2-844b-a8b9a6a9fa64", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11428,Microsoft.Compute/GetVMImageFromLocation30Min;72428", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:693529bf-dfba-4fa2-844b-a8b9a6a9fa64", - "Expires" : "-1", - "x-ms-request-id" : "6cd28606-605e-4304-ad42-26209da33b82", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201805220\"\r\n}", - "x-ms-client-request-id" : "73174ae6-806b-45d2-b629-7dfc51b08691", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a11cefa-ce44-4ac6-a792-fecc19516358", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36dab470-9b18-4022-ab3d-697ac1e8a7dc", - "Date" : "Tue, 24 May 2022 13:02:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11427,Microsoft.Compute/GetVMImageFromLocation30Min;72427", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:36dab470-9b18-4022-ab3d-697ac1e8a7dc", - "Expires" : "-1", - "x-ms-request-id" : "3125f27c-7573-48fa-a9ae-1a2b83c46251", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.3-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "8a11cefa-ce44-4ac6-a792-fecc19516358", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8170f929-789b-4db2-909a-ccf32ec696ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2694", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4733cea8-5526-441e-b3f4-09cf539f0ebf", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15846,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130215Z:4733cea8-5526-441e-b3f4-09cf539f0ebf", - "Expires" : "-1", - "x-ms-request-id" : "7c17058c-ee54-43a2-bedd-d515890e57ad", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201805090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201808180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201903120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201903150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "8170f929-789b-4db2-909a-ccf32ec696ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a21c4d08-6be5-4b13-9add-765690ada004", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30f253d3-2a51-4ab2-ba63-738118d3b7f2", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11425,Microsoft.Compute/GetVMImageFromLocation30Min;72425", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:30f253d3-2a51-4ab2-ba63-738118d3b7f2", - "Expires" : "-1", - "x-ms-request-id" : "479b8eb4-ce43-4d05-8022-053fcfe9cfd4", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201805220\"\r\n}", - "x-ms-client-request-id" : "a21c4d08-6be5-4b13-9add-765690ada004", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ce48b10-908e-421d-9a47-db638ade8e88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "803d3103-11f1-43a6-8a35-6141468aa9df", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11424,Microsoft.Compute/GetVMImageFromLocation30Min;72424", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:803d3103-11f1-43a6-8a35-6141468aa9df", - "Expires" : "-1", - "x-ms-request-id" : "cedfb18f-e9fe-4e1a-aeeb-a30f0066c684", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "9ce48b10-908e-421d-9a47-db638ade8e88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a601a8e5-ce4f-4d75-b23c-3db6c0ecd5a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9dd67fb4-c1e4-4719-9c17-da9a9f53853c", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11422,Microsoft.Compute/GetVMImageFromLocation30Min;72422", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:9dd67fb4-c1e4-4719-9c17-da9a9f53853c", - "Expires" : "-1", - "x-ms-request-id" : "80f15c3a-a180-481c-8029-95b525ff4424", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201808140\"\r\n}", - "x-ms-client-request-id" : "a601a8e5-ce4f-4d75-b23c-3db6c0ecd5a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201805090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c37b7a0-cf15-43e9-884a-acb20d4c7cf1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7afbde5c-faa1-45b4-ba53-b872f5bba6f2", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11423,Microsoft.Compute/GetVMImageFromLocation30Min;72423", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:7afbde5c-faa1-45b4-ba53-b872f5bba6f2", - "Expires" : "-1", - "x-ms-request-id" : "dbee73d1-6530-49e9-947f-44e2adc3c4bb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201805090\"\r\n}", - "x-ms-client-request-id" : "7c37b7a0-cf15-43e9-884a-acb20d4c7cf1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201808180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "05314cd9-5143-499c-92c9-2c40d4b08b4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4601c178-a3ef-4eef-9ee3-f8acaa4ca5ab", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11421,Microsoft.Compute/GetVMImageFromLocation30Min;72421", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:4601c178-a3ef-4eef-9ee3-f8acaa4ca5ab", - "Expires" : "-1", - "x-ms-request-id" : "413965db-f0af-4720-a46c-e5a18f4b1dbb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201808180\"\r\n}", - "x-ms-client-request-id" : "05314cd9-5143-499c-92c9-2c40d4b08b4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dba36359-e2a2-4b94-b2e2-bfa4b7c893e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b38fa34-3d9e-4a46-b653-1d98409e3b39", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11420,Microsoft.Compute/GetVMImageFromLocation30Min;72420", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:0b38fa34-3d9e-4a46-b653-1d98409e3b39", - "Expires" : "-1", - "x-ms-request-id" : "8236f06a-7ecf-4ae5-bf9b-1b21a429696f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "dba36359-e2a2-4b94-b2e2-bfa4b7c893e2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "067b3302-7750-4b23-b18e-c14e48d6dc32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b3a8e06-5373-4bfe-a60a-c43aced2cbd9", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11426,Microsoft.Compute/GetVMImageFromLocation30Min;72426", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:5b3a8e06-5373-4bfe-a60a-c43aced2cbd9", - "Expires" : "-1", - "x-ms-request-id" : "69daf4e7-4da5-4c2c-94ee-60b9f86e742a", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201901221\"\r\n}", - "x-ms-client-request-id" : "067b3302-7750-4b23-b18e-c14e48d6dc32", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201903120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fef8b3de-8500-4169-8be4-9d0158701191", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37283898-4f93-418b-9ba2-3978a6b0ecbc", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11419,Microsoft.Compute/GetVMImageFromLocation30Min;72419", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:37283898-4f93-418b-9ba2-3978a6b0ecbc", - "Expires" : "-1", - "x-ms-request-id" : "3ab3631e-19a9-4d3d-b7be-c2e9150b8128", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201903120\"\r\n}", - "x-ms-client-request-id" : "fef8b3de-8500-4169-8be4-9d0158701191", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201903150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d68c3ac7-e8c3-426a-ab4d-e8b45dcdc63b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7aec6db7-eab5-4114-abe2-32bf09758b08", - "Date" : "Tue, 24 May 2022 13:02:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11418,Microsoft.Compute/GetVMImageFromLocation30Min;72418", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:7aec6db7-eab5-4114-abe2-32bf09758b08", - "Expires" : "-1", - "x-ms-request-id" : "2c867084-4549-405e-b8c8-fada236a3394", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201903150\"\r\n}", - "x-ms-client-request-id" : "d68c3ac7-e8c3-426a-ab4d-e8b45dcdc63b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bc6c857-b7ec-42b7-8f68-d0f01482075c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2748", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "303ea2d0-fa3a-4265-b228-25d302027d27", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15845,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:303ea2d0-fa3a-4265-b228-25d302027d27", - "Expires" : "-1", - "x-ms-request-id" : "0a8d14fa-0ffa-4f50-96b6-a8e2610f4692", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "7bc6c857-b7ec-42b7-8f68-d0f01482075c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9751921f-19f4-46c3-8108-0fd9c3119e43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7247345d-f56d-4624-9e8f-b1790dd9e7e5", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11416,Microsoft.Compute/GetVMImageFromLocation30Min;72416", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:7247345d-f56d-4624-9e8f-b1790dd9e7e5", - "Expires" : "-1", - "x-ms-request-id" : "7853bbc4-10f3-4ecd-99f4-d2c4839838b9", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "9751921f-19f4-46c3-8108-0fd9c3119e43", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a60f4aa3-2e89-49d9-88e4-cb15b21e74a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0972faf-bba6-4b25-875b-5cb20e3b1086", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11410,Microsoft.Compute/GetVMImageFromLocation30Min;72410", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:a0972faf-bba6-4b25-875b-5cb20e3b1086", - "Expires" : "-1", - "x-ms-request-id" : "37beecd9-cf25-410e-8b53-9e5f3738d8af", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904090\"\r\n}", - "x-ms-client-request-id" : "a60f4aa3-2e89-49d9-88e4-cb15b21e74a4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f79c6b78-44d4-44bb-8528-a34b6c8c3397", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c795c24e-1c2d-45e7-96cb-ecc97d2dfd44", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11412,Microsoft.Compute/GetVMImageFromLocation30Min;72412", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:c795c24e-1c2d-45e7-96cb-ecc97d2dfd44", - "Expires" : "-1", - "x-ms-request-id" : "9950d3d1-0205-42c0-9afb-70ddfc962702", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904200\"\r\n}", - "x-ms-client-request-id" : "f79c6b78-44d4-44bb-8528-a34b6c8c3397", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "936be451-588e-4390-ab47-6e2f68934fd9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eeb5f999-d9f1-4f9a-92c7-667c9bc9dcb7", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11413,Microsoft.Compute/GetVMImageFromLocation30Min;72413", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:eeb5f999-d9f1-4f9a-92c7-667c9bc9dcb7", - "Expires" : "-1", - "x-ms-request-id" : "03cfd975-f24c-4176-9620-42a36d78992f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904240\"\r\n}", - "x-ms-client-request-id" : "936be451-588e-4390-ab47-6e2f68934fd9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "71b1e63c-ca05-4d19-a73b-cc6ad9f1057c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b704ac7-d9de-4f17-82bd-6b48cf30c0c3", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11411,Microsoft.Compute/GetVMImageFromLocation30Min;72411", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:9b704ac7-d9de-4f17-82bd-6b48cf30c0c3", - "Expires" : "-1", - "x-ms-request-id" : "dac23e95-0fc0-4775-aa77-e18dcdabd74e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904250\"\r\n}", - "x-ms-client-request-id" : "71b1e63c-ca05-4d19-a73b-cc6ad9f1057c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0968bd3d-5764-4516-8db3-b193cf4f5ea2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2dfa8a46-a27c-49a2-a06e-ed20e8a98758", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11414,Microsoft.Compute/GetVMImageFromLocation30Min;72414", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:2dfa8a46-a27c-49a2-a06e-ed20e8a98758", - "Expires" : "-1", - "x-ms-request-id" : "01896f90-3e3f-4ceb-a389-54f1fb187d7c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904290\"\r\n}", - "x-ms-client-request-id" : "0968bd3d-5764-4516-8db3-b193cf4f5ea2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afdd4f0d-4d55-4141-a388-576c08f5d504", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c35c4efe-aff8-43e0-b4de-3cb25e425ee2", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11415,Microsoft.Compute/GetVMImageFromLocation30Min;72415", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:c35c4efe-aff8-43e0-b4de-3cb25e425ee2", - "Expires" : "-1", - "x-ms-request-id" : "6a9efbcc-e51e-4344-b367-cb960d74b8f0", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "afdd4f0d-4d55-4141-a388-576c08f5d504", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29675742-c158-4a3f-b918-536e6da4472d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "116fd1a6-ff17-4afe-8fdc-d5c8deda47cf", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11409,Microsoft.Compute/GetVMImageFromLocation30Min;72409", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130216Z:116fd1a6-ff17-4afe-8fdc-d5c8deda47cf", - "Expires" : "-1", - "x-ms-request-id" : "c03712ad-6c7a-46ea-913f-2f3135a9005d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904080\"\r\n}", - "x-ms-client-request-id" : "29675742-c158-4a3f-b918-536e6da4472d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201904030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93f539b6-9b10-4bec-b8d4-09dfecaab464", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "688", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15390c00-152a-45d8-b556-7c36231e01e2", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11417,Microsoft.Compute/GetVMImageFromLocation30Min;72417", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:15390c00-152a-45d8-b556-7c36231e01e2", - "Expires" : "-1", - "x-ms-request-id" : "8d7c8a23-0c13-4681-97f1-a16e506e65d9", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201904030\"\r\n}", - "x-ms-client-request-id" : "93f539b6-9b10-4bec-b8d4-09dfecaab464", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e1d7c71-d297-405b-ad6c-b87dc2ee3090", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "22129", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6660a2df-6d5f-47ed-9da7-cf08dafacd56", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15844,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:6660a2df-6d5f-47ed-9da7-cf08dafacd56", - "Expires" : "-1", - "x-ms-request-id" : "3748df8b-521a-434c-95ec-554d99d6499f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201609190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702021\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201704050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201704240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201705170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201705170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201706190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201706190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201706290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201706290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201707180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201707180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201710100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201710100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201710260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201710260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201711151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201711151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201712080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201712080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201801100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201801100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201801220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201801220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201802221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201802221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201803080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201803080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201804040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201804040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201804230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201804230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201805090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201806270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201806270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201807030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201807030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201807220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201807220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201808180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201809130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201809130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201810020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201810020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201810040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201810040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201810220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201810220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201811140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201811140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201812030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201812030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201901080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201901100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201902060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201902060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201902090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201902090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201902260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201902260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201911070\"\r\n }\r\n]", - "x-ms-client-request-id" : "7e1d7c71-d297-405b-ad6c-b87dc2ee3090", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201704050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7629aa2d-7d39-4d41-b182-51092de0e21a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93944ca1-aade-4846-86f1-1426c2ce8243", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11398,Microsoft.Compute/GetVMImageFromLocation30Min;72398", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:93944ca1-aade-4846-86f1-1426c2ce8243", - "Expires" : "-1", - "x-ms-request-id" : "e9eff06f-50db-48b4-bf97-7722a8b0b4f7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201704050\"\r\n}", - "x-ms-client-request-id" : "7629aa2d-7d39-4d41-b182-51092de0e21a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201611090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "235f8b05-ec12-4086-8807-8977ead43ed1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6784a65f-1375-479f-a17f-23356d0705ad", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11396,Microsoft.Compute/GetVMImageFromLocation30Min;72396", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:6784a65f-1375-479f-a17f-23356d0705ad", - "Expires" : "-1", - "x-ms-request-id" : "2a83eab1-3c9c-4612-bee2-0198c08775f6", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611090\"\r\n}", - "x-ms-client-request-id" : "235f8b05-ec12-4086-8807-8977ead43ed1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201901080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cb3d3b5-631a-4f1b-a569-40c342e378e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a16203ad-37ff-4b7e-96e3-fe6071fc404c", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11371,Microsoft.Compute/GetVMImageFromLocation30Min;72371", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:a16203ad-37ff-4b7e-96e3-fe6071fc404c", - "Expires" : "-1", - "x-ms-request-id" : "6688d5b4-95a0-415c-af98-4c9720308392", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201901080\"\r\n}", - "x-ms-client-request-id" : "5cb3d3b5-631a-4f1b-a569-40c342e378e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed70cfaa-dcf3-4dbc-8b54-123af10f1e37", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28500d59-6511-4ed1-a08d-9dcae75884d7", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11393,Microsoft.Compute/GetVMImageFromLocation30Min;72393", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:28500d59-6511-4ed1-a08d-9dcae75884d7", - "Expires" : "-1", - "x-ms-request-id" : "b5f5ca7d-6ca7-49b0-8605-8faa17cad942", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703070\"\r\n}", - "x-ms-client-request-id" : "ed70cfaa-dcf3-4dbc-8b54-123af10f1e37", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201903150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae8a25b5-5451-4dae-8e5e-717ba7c5eeba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f819392-31ab-4cb6-9fd2-001ea26c4ec4", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11367,Microsoft.Compute/GetVMImageFromLocation30Min;72367", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:2f819392-31ab-4cb6-9fd2-001ea26c4ec4", - "Expires" : "-1", - "x-ms-request-id" : "abac78d1-0055-40ab-bf51-05fa699b30b6", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903150\"\r\n}", - "x-ms-client-request-id" : "ae8a25b5-5451-4dae-8e5e-717ba7c5eeba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608091?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cf5dbbf-39ff-44b3-8026-b92edbaa7675", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60d6dd2e-b6fe-42df-9575-c79900772ea6", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11390,Microsoft.Compute/GetVMImageFromLocation30Min;72390", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:60d6dd2e-b6fe-42df-9575-c79900772ea6", - "Expires" : "-1", - "x-ms-request-id" : "6831ae7a-88a4-4d9c-9599-fdc9accea6c2", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608091\"\r\n}", - "x-ms-client-request-id" : "3cf5dbbf-39ff-44b3-8026-b92edbaa7675", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201611300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b4dbd63-2a6f-4ed9-86a8-2c4a3edc48ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc9b98cf-cde9-4e98-b268-e8ff2775ec7f", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11406,Microsoft.Compute/GetVMImageFromLocation30Min;72406", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:dc9b98cf-cde9-4e98-b268-e8ff2775ec7f", - "Expires" : "-1", - "x-ms-request-id" : "37aa5ca6-c5f7-46a9-af14-87363bfc03dd", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611300\"\r\n}", - "x-ms-client-request-id" : "2b4dbd63-2a6f-4ed9-86a8-2c4a3edc48ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201706290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4202141c-cd6b-422c-ae52-68503ea06805", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0644986b-e08e-4161-a7f8-d02318bc58fc", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11392,Microsoft.Compute/GetVMImageFromLocation30Min;72392", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:0644986b-e08e-4161-a7f8-d02318bc58fc", - "Expires" : "-1", - "x-ms-request-id" : "e0da045e-b769-49ff-ac92-fd69d99feaf7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201706290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201706290\"\r\n}", - "x-ms-client-request-id" : "4202141c-cd6b-422c-ae52-68503ea06805", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201810040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e657df0-d3e7-4e7c-a7ff-cec8576b2bd2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e223b331-7dff-4418-b499-dbf097e3628c", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11369,Microsoft.Compute/GetVMImageFromLocation30Min;72369", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:e223b331-7dff-4418-b499-dbf097e3628c", - "Expires" : "-1", - "x-ms-request-id" : "6413b572-cdaa-4c44-8a7c-817cbfd588a7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201810040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201810040\"\r\n}", - "x-ms-client-request-id" : "1e657df0-d3e7-4e7c-a7ff-cec8576b2bd2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201701040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "349a1f06-5d3d-46aa-aab0-301d3ba4c5bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4b2ab86-fc19-4329-b43f-3388643372d4", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11403,Microsoft.Compute/GetVMImageFromLocation30Min;72403", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:d4b2ab86-fc19-4329-b43f-3388643372d4", - "Expires" : "-1", - "x-ms-request-id" : "9825c81b-514a-4c1d-ac0c-dfb1bfd8e72f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701040\"\r\n}", - "x-ms-client-request-id" : "349a1f06-5d3d-46aa-aab0-301d3ba4c5bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201706190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e793dde-0e8b-429f-96da-b6adf89821ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11812", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bad79af9-274d-4ae1-9725-d1dfd1c9279a", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11394,Microsoft.Compute/GetVMImageFromLocation30Min;72394", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:bad79af9-274d-4ae1-9725-d1dfd1c9279a", - "Expires" : "-1", - "x-ms-request-id" : "1ede4219-d05a-4470-99d3-88649e03e1d8", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201706190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201706190\"\r\n}", - "x-ms-client-request-id" : "7e793dde-0e8b-429f-96da-b6adf89821ad", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201901100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "faf6f247-5790-4b77-a2a1-6373165c7cb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60147bc2-3667-49af-b6f6-b24d75cb87cf", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11355,Microsoft.Compute/GetVMImageFromLocation30Min;72355", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:60147bc2-3667-49af-b6f6-b24d75cb87cf", - "Expires" : "-1", - "x-ms-request-id" : "84e28f11-d283-459a-ad96-f0252491bb69", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201901100\"\r\n}", - "x-ms-client-request-id" : "faf6f247-5790-4b77-a2a1-6373165c7cb6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201708020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5638049-9e97-4a37-8987-aa8fbf31ca5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6e36353-aee3-4cb2-8379-e8a251a815a5", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11357,Microsoft.Compute/GetVMImageFromLocation30Min;72357", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:c6e36353-aee3-4cb2-8379-e8a251a815a5", - "Expires" : "-1", - "x-ms-request-id" : "93cb7da9-0f80-49ba-ae2f-04d6c909ee48", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708020\"\r\n}", - "x-ms-client-request-id" : "c5638049-9e97-4a37-8987-aa8fbf31ca5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201710260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef584783-7107-4655-8c81-7bc37c64ae17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "acd213c1-262b-465b-9f20-183c8294248b", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11385,Microsoft.Compute/GetVMImageFromLocation30Min;72385", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:acd213c1-262b-465b-9f20-183c8294248b", - "Expires" : "-1", - "x-ms-request-id" : "2d06de07-8769-40ca-9149-5ef2b6b793d1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201710260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201710260\"\r\n}", - "x-ms-client-request-id" : "ef584783-7107-4655-8c81-7bc37c64ae17", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201708310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56597a1c-63c8-4d45-86d2-ad85079a8f75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e13abc22-ebfa-459f-9baf-68f2a21465d7", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11388,Microsoft.Compute/GetVMImageFromLocation30Min;72388", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:e13abc22-ebfa-459f-9baf-68f2a21465d7", - "Expires" : "-1", - "x-ms-request-id" : "cc70b561-4264-4658-9a14-853708f930b4", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708310\"\r\n}", - "x-ms-client-request-id" : "56597a1c-63c8-4d45-86d2-ad85079a8f75", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4587e070-39a0-478f-9e93-b6566e7b74e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8509e06-24d6-4961-b98f-016bfd12cfa3", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11370,Microsoft.Compute/GetVMImageFromLocation30Min;72370", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:f8509e06-24d6-4961-b98f-016bfd12cfa3", - "Expires" : "-1", - "x-ms-request-id" : "41415d7b-677c-42db-bc06-437d1d3145f1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201901221\"\r\n}", - "x-ms-client-request-id" : "4587e070-39a0-478f-9e93-b6566e7b74e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201704240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a2b6990-ba69-477d-897a-8b694486c035", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d63a288-563c-460e-b764-9c864db828ea", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11402,Microsoft.Compute/GetVMImageFromLocation30Min;72402", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:4d63a288-563c-460e-b764-9c864db828ea", - "Expires" : "-1", - "x-ms-request-id" : "79d711e7-0c1c-4069-bd26-94c01a83ca1b", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201704240\"\r\n}", - "x-ms-client-request-id" : "6a2b6990-ba69-477d-897a-8b694486c035", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201809130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "141bad51-8771-4c81-bd2d-7a489891bd5f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be31bbdb-edb4-4807-bcbc-9656c3af3f5d", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11377,Microsoft.Compute/GetVMImageFromLocation30Min;72377", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:be31bbdb-edb4-4807-bcbc-9656c3af3f5d", - "Expires" : "-1", - "x-ms-request-id" : "f34a568b-dce2-446d-af7e-104b091d9fdf", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201809130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201809130\"\r\n}", - "x-ms-client-request-id" : "141bad51-8771-4c81-bd2d-7a489891bd5f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201807030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d292407-e771-4997-a064-237825c5db42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac6c155d-ce8b-4636-9d56-92bc354df7a3", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11379,Microsoft.Compute/GetVMImageFromLocation30Min;72379", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:ac6c155d-ce8b-4636-9d56-92bc354df7a3", - "Expires" : "-1", - "x-ms-request-id" : "a546972a-4013-446c-b835-e2c8ff923b4d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201807030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201807030\"\r\n}", - "x-ms-client-request-id" : "6d292407-e771-4997-a064-237825c5db42", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201708110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2bd92f1c-4660-407e-a646-ebc9ba888e0c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1fc71cf2-2b4c-46fb-95ee-5c6a2d8f1ee7", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11386,Microsoft.Compute/GetVMImageFromLocation30Min;72386", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:1fc71cf2-2b4c-46fb-95ee-5c6a2d8f1ee7", - "Expires" : "-1", - "x-ms-request-id" : "d7e6f2e1-a3c2-4d6b-a3c4-dd6d82edebac", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708110\"\r\n}", - "x-ms-client-request-id" : "2bd92f1c-4660-407e-a646-ebc9ba888e0c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608241?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b945c86-705b-48ea-af83-75a23290a2dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64335f7d-cb24-4745-b166-8b32471b5a53", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11408,Microsoft.Compute/GetVMImageFromLocation30Min;72408", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:64335f7d-cb24-4745-b166-8b32471b5a53", - "Expires" : "-1", - "x-ms-request-id" : "0fe94fda-3965-4856-8dcf-ad50a62d7a14", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608241\"\r\n}", - "x-ms-client-request-id" : "6b945c86-705b-48ea-af83-75a23290a2dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201902060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "686e9f46-48cb-488d-bbc7-1eaeebda6043", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eba75713-b627-4ea5-b028-ef0ec056ec47", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11365,Microsoft.Compute/GetVMImageFromLocation30Min;72365", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:eba75713-b627-4ea5-b028-ef0ec056ec47", - "Expires" : "-1", - "x-ms-request-id" : "fa6f5588-3737-4556-8337-020a8bc116a0", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201902060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201902060\"\r\n}", - "x-ms-client-request-id" : "686e9f46-48cb-488d-bbc7-1eaeebda6043", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201902090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab39ff2b-1e64-4dd3-8559-c93da24aad7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b4b43ea-22fc-473e-8bea-d2b8fb733938", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11358,Microsoft.Compute/GetVMImageFromLocation30Min;72358", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:3b4b43ea-22fc-473e-8bea-d2b8fb733938", - "Expires" : "-1", - "x-ms-request-id" : "5e6b1cfd-c315-4e96-a0b1-82c98803d80d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201902090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201902090\"\r\n}", - "x-ms-client-request-id" : "ab39ff2b-1e64-4dd3-8559-c93da24aad7a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3e8b558-acc5-4c78-8d23-298ee206c62d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e50ed634-9e17-4f7e-8a83-4e46d8ac36e9", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11395,Microsoft.Compute/GetVMImageFromLocation30Min;72395", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:e50ed634-9e17-4f7e-8a83-4e46d8ac36e9", - "Expires" : "-1", - "x-ms-request-id" : "248cc265-982e-415d-a0b9-756c3021649e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608300\"\r\n}", - "x-ms-client-request-id" : "f3e8b558-acc5-4c78-8d23-298ee206c62d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d6ee924-8654-4218-b142-895663d57d65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f3f7c5c-cd57-40c1-ad10-7bf9a397d2af", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11397,Microsoft.Compute/GetVMImageFromLocation30Min;72397", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:7f3f7c5c-cd57-40c1-ad10-7bf9a397d2af", - "Expires" : "-1", - "x-ms-request-id" : "b01cd37e-2e7d-432d-ad64-f29f90f724f3", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703230\"\r\n}", - "x-ms-client-request-id" : "3d6ee924-8654-4218-b142-895663d57d65", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201811140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4035737-4d0a-424f-aeb4-77448af0f914", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3d063d2-c7fb-4ba7-997b-594ffdc61148", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11360,Microsoft.Compute/GetVMImageFromLocation30Min;72360", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:f3d063d2-c7fb-4ba7-997b-594ffdc61148", - "Expires" : "-1", - "x-ms-request-id" : "0dc041ab-6b4b-4aa8-9235-0f8bad0e3987", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201811140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201811140\"\r\n}", - "x-ms-client-request-id" : "e4035737-4d0a-424f-aeb4-77448af0f914", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201609190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce2e653b-00d2-47c5-941b-765dd55530a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "743205d7-f9fa-435a-ad2d-e3232e24a3e0", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11407,Microsoft.Compute/GetVMImageFromLocation30Min;72407", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:743205d7-f9fa-435a-ad2d-e3232e24a3e0", - "Expires" : "-1", - "x-ms-request-id" : "be9eeb77-0987-4e3e-a536-26795d115e97", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201609190\"\r\n}", - "x-ms-client-request-id" : "ce2e653b-00d2-47c5-941b-765dd55530a1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201708070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e54a50e6-1a58-4a09-bb90-0a5d3609fe62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13fe60b0-195d-4de3-9bb0-3c9a0c721caa", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11351,Microsoft.Compute/GetVMImageFromLocation30Min;72351", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:13fe60b0-195d-4de3-9bb0-3c9a0c721caa", - "Expires" : "-1", - "x-ms-request-id" : "4e2a8b0c-bdf3-47fc-96c9-45050c5482eb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708070\"\r\n}", - "x-ms-client-request-id" : "e54a50e6-1a58-4a09-bb90-0a5d3609fe62", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201702200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "227abd23-fe79-41fa-83d3-29f06723e4d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bbbcf97-07db-4182-82d6-ca1e4388de9c", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11353,Microsoft.Compute/GetVMImageFromLocation30Min;72353", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:5bbbcf97-07db-4182-82d6-ca1e4388de9c", - "Expires" : "-1", - "x-ms-request-id" : "ccfdc20b-7d72-460a-b1c0-e69dbc168a28", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702200\"\r\n}", - "x-ms-client-request-id" : "227abd23-fe79-41fa-83d3-29f06723e4d8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201803080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "112f9d18-8ba6-43c0-8281-6ce10e37be36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a45a13e-2b95-4bea-879a-f388308473c4", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11361,Microsoft.Compute/GetVMImageFromLocation30Min;72361", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:8a45a13e-2b95-4bea-879a-f388308473c4", - "Expires" : "-1", - "x-ms-request-id" : "edd97e54-25fe-4edc-b0c2-ff97d92d8b1c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201803080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201803080\"\r\n}", - "x-ms-client-request-id" : "112f9d18-8ba6-43c0-8281-6ce10e37be36", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201612050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7c7365d-8042-4214-95e6-e41d7e350139", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2246097f-3b8f-4e1a-b766-6a7cf5756da1", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11362,Microsoft.Compute/GetVMImageFromLocation30Min;72362", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:2246097f-3b8f-4e1a-b766-6a7cf5756da1", - "Expires" : "-1", - "x-ms-request-id" : "29836407-0029-4396-8df3-127b0612d712", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612050\"\r\n}", - "x-ms-client-request-id" : "d7c7365d-8042-4214-95e6-e41d7e350139", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201804230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "17f70e63-fede-4026-889f-0878829ba371", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4abe6bf4-9a78-4750-a711-075b68673752", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11366,Microsoft.Compute/GetVMImageFromLocation30Min;72366", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:4abe6bf4-9a78-4750-a711-075b68673752", - "Expires" : "-1", - "x-ms-request-id" : "b6654479-83bb-4f23-b3e5-9c76de5c03d1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201804230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201804230\"\r\n}", - "x-ms-client-request-id" : "17f70e63-fede-4026-889f-0878829ba371", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201610100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "662adb88-52f8-4050-b95a-2ad2d9f9ad34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80828331-9e4e-4730-91f5-c0a5043b995a", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11356,Microsoft.Compute/GetVMImageFromLocation30Min;72356", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:80828331-9e4e-4730-91f5-c0a5043b995a", - "Expires" : "-1", - "x-ms-request-id" : "d2c64aee-2530-4388-843a-f18d2b278dc8", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610100\"\r\n}", - "x-ms-client-request-id" : "662adb88-52f8-4050-b95a-2ad2d9f9ad34", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201610200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "71c5238a-d3bd-4be4-a8df-1f13552d1889", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d79f8129-17c4-4e68-82d7-1ad17874c763", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11405,Microsoft.Compute/GetVMImageFromLocation30Min;72405", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:d79f8129-17c4-4e68-82d7-1ad17874c763", - "Expires" : "-1", - "x-ms-request-id" : "ec731f3e-8d31-46bd-8d21-ef91163be43f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610200\"\r\n}", - "x-ms-client-request-id" : "71c5238a-d3bd-4be4-a8df-1f13552d1889", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201806270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d02808a5-3587-443b-9f6c-e2daaeec013c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "701aea8c-d38f-4059-8f56-1366aedec7aa", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11363,Microsoft.Compute/GetVMImageFromLocation30Min;72363", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:701aea8c-d38f-4059-8f56-1366aedec7aa", - "Expires" : "-1", - "x-ms-request-id" : "e15cb7b8-dc5a-46ce-90e1-aa50a5528258", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201806270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201806270\"\r\n}", - "x-ms-client-request-id" : "d02808a5-3587-443b-9f6c-e2daaeec013c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201801220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "844633a9-245a-42b3-b02f-c1f2d0d2ad55", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3339c9ba-8121-4e22-9b9d-0114e8761d9d", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11389,Microsoft.Compute/GetVMImageFromLocation30Min;72389", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:3339c9ba-8121-4e22-9b9d-0114e8761d9d", - "Expires" : "-1", - "x-ms-request-id" : "38abda0c-3ee2-4b62-ac74-ac7e37f51924", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201801220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201801220\"\r\n}", - "x-ms-client-request-id" : "844633a9-245a-42b3-b02f-c1f2d0d2ad55", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201902260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b0fbc12-490f-4cd1-b39c-1c6ef549340f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "91c945da-4583-42f0-8cb5-a0e2fd205dd0", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11359,Microsoft.Compute/GetVMImageFromLocation30Min;72359", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:91c945da-4583-42f0-8cb5-a0e2fd205dd0", - "Expires" : "-1", - "x-ms-request-id" : "fd41a83d-16b9-45a4-a1f2-32cd154831f5", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201902260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201902260\"\r\n}", - "x-ms-client-request-id" : "1b0fbc12-490f-4cd1-b39c-1c6ef549340f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a50de8cf-acc0-487d-ad13-ffbd4a474782", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b89334b2-7fda-4e61-acd6-38c8f107f080", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11380,Microsoft.Compute/GetVMImageFromLocation30Min;72380", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:b89334b2-7fda-4e61-acd6-38c8f107f080", - "Expires" : "-1", - "x-ms-request-id" : "385a621a-94ba-4152-b389-f4f5dade070c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703280\"\r\n}", - "x-ms-client-request-id" : "a50de8cf-acc0-487d-ad13-ffbd4a474782", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8612f5d1-049c-4ba4-8f71-906d0e91c4dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2a90c49-baa0-4bb7-a101-3281d17a38a5", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11374,Microsoft.Compute/GetVMImageFromLocation30Min;72374", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:c2a90c49-baa0-4bb7-a101-3281d17a38a5", - "Expires" : "-1", - "x-ms-request-id" : "c86ea9e9-3cea-497c-bd86-fac59d61a104", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201808140\"\r\n}", - "x-ms-client-request-id" : "8612f5d1-049c-4ba4-8f71-906d0e91c4dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201805090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d1a5be2-3288-4823-a927-12604b784af0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3dd65e75-5186-48f2-81b7-e9544e6c3128", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11383,Microsoft.Compute/GetVMImageFromLocation30Min;72383", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:3dd65e75-5186-48f2-81b7-e9544e6c3128", - "Expires" : "-1", - "x-ms-request-id" : "715de490-c537-4044-a572-0c83eaf82c18", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201805090\"\r\n}", - "x-ms-client-request-id" : "0d1a5be2-3288-4823-a927-12604b784af0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc18d99f-4d8f-40f6-a353-83407134ea81", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5dc41321-9ef6-45c8-9564-e9b0a99ec9e7", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11400,Microsoft.Compute/GetVMImageFromLocation30Min;72400", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:5dc41321-9ef6-45c8-9564-e9b0a99ec9e7", - "Expires" : "-1", - "x-ms-request-id" : "de3af9bb-bc69-4411-8cbe-23660cb2b73a", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703300\"\r\n}", - "x-ms-client-request-id" : "cc18d99f-4d8f-40f6-a353-83407134ea81", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201702021?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01e746ad-a388-4260-b031-b25b8ec3e30c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d56ec9fa-1709-44c5-91b6-7f8a2943109e", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11399,Microsoft.Compute/GetVMImageFromLocation30Min;72399", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:d56ec9fa-1709-44c5-91b6-7f8a2943109e", - "Expires" : "-1", - "x-ms-request-id" : "63b6741c-7b23-40bd-b135-af5423418319", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702021\"\r\n}", - "x-ms-client-request-id" : "01e746ad-a388-4260-b031-b25b8ec3e30c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201903120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "049f135f-43af-4222-9b41-46d38d0c9b31", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48ce92ff-d8d2-4f49-a5cd-e187f2e90478", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11354,Microsoft.Compute/GetVMImageFromLocation30Min;72354", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:48ce92ff-d8d2-4f49-a5cd-e187f2e90478", - "Expires" : "-1", - "x-ms-request-id" : "37a2ddc6-e902-470b-bd17-437413732590", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903120\"\r\n}", - "x-ms-client-request-id" : "049f135f-43af-4222-9b41-46d38d0c9b31", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201702220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef45a299-4467-45ca-89d1-6e7133f437a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5f7424b-e12b-46c3-8359-c8cf9cadcec6", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11376,Microsoft.Compute/GetVMImageFromLocation30Min;72376", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:e5f7424b-e12b-46c3-8359-c8cf9cadcec6", - "Expires" : "-1", - "x-ms-request-id" : "0b6ec69b-5e8d-46ce-a27b-22f94a3c2602", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702220\"\r\n}", - "x-ms-client-request-id" : "ef45a299-4467-45ca-89d1-6e7133f437a3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201810020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df916ce3-3cd9-4f91-a75e-d9667888c846", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5adbb132-1535-47ed-8303-5f2da673c37c", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11375,Microsoft.Compute/GetVMImageFromLocation30Min;72375", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:5adbb132-1535-47ed-8303-5f2da673c37c", - "Expires" : "-1", - "x-ms-request-id" : "f5105de4-9c96-4c8d-9156-2f8b13369910", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201810020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201810020\"\r\n}", - "x-ms-client-request-id" : "df916ce3-3cd9-4f91-a75e-d9667888c846", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201708180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97abd5d1-cc4d-42f5-867b-a41809d57b7f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b7d61a4-c9e1-46f3-a9d3-acad7f1fad49", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11373,Microsoft.Compute/GetVMImageFromLocation30Min;72373", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:5b7d61a4-c9e1-46f3-a9d3-acad7f1fad49", - "Expires" : "-1", - "x-ms-request-id" : "7f32fa43-12a8-4102-a76e-c092f9d189f2", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708180\"\r\n}", - "x-ms-client-request-id" : "97abd5d1-cc4d-42f5-867b-a41809d57b7f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201612130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4110a98-10f3-4e30-aa71-25898c370143", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f09449d2-24fb-426b-b504-5999ef7b6c6b", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11401,Microsoft.Compute/GetVMImageFromLocation30Min;72401", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:f09449d2-24fb-426b-b504-5999ef7b6c6b", - "Expires" : "-1", - "x-ms-request-id" : "0687405a-3264-4906-8e95-af226ac1bbca", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612130\"\r\n}", - "x-ms-client-request-id" : "d4110a98-10f3-4e30-aa71-25898c370143", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ec4dfaa-fd9d-4e7d-87c7-44fd452fe29a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48276838-9536-41a8-9d4a-a01c536c1c67", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11372,Microsoft.Compute/GetVMImageFromLocation30Min;72372", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:48276838-9536-41a8-9d4a-a01c536c1c67", - "Expires" : "-1", - "x-ms-request-id" : "1b3a8891-dcd4-4884-95f0-1871936fe310", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201808180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201808180\"\r\n}", - "x-ms-client-request-id" : "6ec4dfaa-fd9d-4e7d-87c7-44fd452fe29a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201707180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "136779b6-4e0c-46a3-8452-f6529df46ba7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "543e2dd3-f697-4c78-b7cf-06b90298dcc6", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11391,Microsoft.Compute/GetVMImageFromLocation30Min;72391", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:543e2dd3-f697-4c78-b7cf-06b90298dcc6", - "Expires" : "-1", - "x-ms-request-id" : "465d7b8d-9f0d-4d2d-be37-a94d30dfe17f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201707180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201707180\"\r\n}", - "x-ms-client-request-id" : "136779b6-4e0c-46a3-8452-f6529df46ba7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201801100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2f46313-3487-433d-9f3b-3f88534aee88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1961602-1dff-44c4-ac1e-5472a7bc11d3", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11384,Microsoft.Compute/GetVMImageFromLocation30Min;72384", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:c1961602-1dff-44c4-ac1e-5472a7bc11d3", - "Expires" : "-1", - "x-ms-request-id" : "0a9539b5-1b6c-4114-a94c-d46f362176ce", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201801100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201801100\"\r\n}", - "x-ms-client-request-id" : "b2f46313-3487-433d-9f3b-3f88534aee88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201812030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dde08345-771d-418c-acc6-a50a9c48b264", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d83852b-feec-41b3-b0de-75e6a8f007d7", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11364,Microsoft.Compute/GetVMImageFromLocation30Min;72364", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:4d83852b-feec-41b3-b0de-75e6a8f007d7", - "Expires" : "-1", - "x-ms-request-id" : "87d4040a-c2af-4d09-bbe9-7a60d8b88b3b", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201812030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201812030\"\r\n}", - "x-ms-client-request-id" : "dde08345-771d-418c-acc6-a50a9c48b264", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201701100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3be4d4a-296b-41fc-a04b-1d64b05505d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ec0cabd-0c5b-454b-8be9-718e82d2422a", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11404,Microsoft.Compute/GetVMImageFromLocation30Min;72404", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:7ec0cabd-0c5b-454b-8be9-718e82d2422a", - "Expires" : "-1", - "x-ms-request-id" : "c994405a-9e49-4678-9939-8841720d2f1c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701100\"\r\n}", - "x-ms-client-request-id" : "f3be4d4a-296b-41fc-a04b-1d64b05505d5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201705170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe950946-971f-409b-95fa-39cc0a5db257", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3b651ba-73db-4df5-9d35-b30705dcb2db", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11382,Microsoft.Compute/GetVMImageFromLocation30Min;72382", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:f3b651ba-73db-4df5-9d35-b30705dcb2db", - "Expires" : "-1", - "x-ms-request-id" : "d5750cdf-584e-477f-844b-05226228c00d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201705170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201705170\"\r\n}", - "x-ms-client-request-id" : "fe950946-971f-409b-95fa-39cc0a5db257", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201802221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4f18867-40f2-45ab-828b-40577e5519ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ad76815-a549-4eba-896e-28dc03b30900", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11387,Microsoft.Compute/GetVMImageFromLocation30Min;72387", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:5ad76815-a549-4eba-896e-28dc03b30900", - "Expires" : "-1", - "x-ms-request-id" : "686873ff-ee21-41d6-aa0e-e16b9f34038f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201802221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201802221\"\r\n}", - "x-ms-client-request-id" : "a4f18867-40f2-45ab-828b-40577e5519ec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201804040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4bc5d21-f048-46e1-9a5d-a1d070d19931", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "263afb98-a839-41aa-9fb8-949c1dc33d05", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11381,Microsoft.Compute/GetVMImageFromLocation30Min;72381", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:263afb98-a839-41aa-9fb8-949c1dc33d05", - "Expires" : "-1", - "x-ms-request-id" : "d695e6ca-da76-4f30-9b9c-8d1d597e7fa0", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201804040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201804040\"\r\n}", - "x-ms-client-request-id" : "d4bc5d21-f048-46e1-9a5d-a1d070d19931", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201708030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e06eb33a-0887-4533-ab40-802a564c25af", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09c42828-1367-4c87-bddb-3cf939f804ba", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11352,Microsoft.Compute/GetVMImageFromLocation30Min;72352", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:09c42828-1367-4c87-bddb-3cf939f804ba", - "Expires" : "-1", - "x-ms-request-id" : "ed19c55e-45e3-4bfd-abfc-8fb596c8d3fb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201708030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201708030\"\r\n}", - "x-ms-client-request-id" : "e06eb33a-0887-4533-ab40-802a564c25af", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201807220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f14e75d0-68f6-4b87-9147-f4729d4db67c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9babff11-be58-4c42-b01c-80d85f8cb3ed", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11378,Microsoft.Compute/GetVMImageFromLocation30Min;72378", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:9babff11-be58-4c42-b01c-80d85f8cb3ed", - "Expires" : "-1", - "x-ms-request-id" : "2e8cd05a-cb47-44e6-a0d7-849e26e90937", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201807220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201807220\"\r\n}", - "x-ms-client-request-id" : "f14e75d0-68f6-4b87-9147-f4729d4db67c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201810220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d44f0374-2fdb-4214-bb14-0c7072c0e2c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfb7c060-9776-4697-b570-8cd5c6810152", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11368,Microsoft.Compute/GetVMImageFromLocation30Min;72368", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:cfb7c060-9776-4697-b570-8cd5c6810152", - "Expires" : "-1", - "x-ms-request-id" : "0ec29180-cc32-4c63-b6be-0281e2851834", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201810220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201810220\"\r\n}", - "x-ms-client-request-id" : "d44f0374-2fdb-4214-bb14-0c7072c0e2c6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201710100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51c294a5-7754-4f67-a62a-25abbf80339b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fc537ba-a635-4153-ba23-3e3d1144f361", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11350,Microsoft.Compute/GetVMImageFromLocation30Min;72350", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:0fc537ba-a635-4153-ba23-3e3d1144f361", - "Expires" : "-1", - "x-ms-request-id" : "d08969d6-f34f-4ee1-a998-53ffd0f517c6", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201710100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201710100\"\r\n}", - "x-ms-client-request-id" : "51c294a5-7754-4f67-a62a-25abbf80339b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201711151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a15d5b8-89c4-4951-812d-749804a56947", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c28afa8-bbce-47c1-a13f-2c9eca03df66", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11349,Microsoft.Compute/GetVMImageFromLocation30Min;72349", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:3c28afa8-bbce-47c1-a13f-2c9eca03df66", - "Expires" : "-1", - "x-ms-request-id" : "1f9e3158-b81f-48ac-89ba-cccba310bb2c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201711151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201711151\"\r\n}", - "x-ms-client-request-id" : "9a15d5b8-89c4-4951-812d-749804a56947", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2bd8ca4e-9855-4e9e-945e-1e3cf8a54ca5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a0ab7f8-c564-4168-adf2-55550ef36471", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11348,Microsoft.Compute/GetVMImageFromLocation30Min;72348", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:6a0ab7f8-c564-4168-adf2-55550ef36471", - "Expires" : "-1", - "x-ms-request-id" : "1ca060cc-8f45-452c-8dfb-1e6d2c078011", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201805220\"\r\n}", - "x-ms-client-request-id" : "2bd8ca4e-9855-4e9e-945e-1e3cf8a54ca5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201712080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fd9c4d0-3310-435e-8ea3-f5c1af7cfa20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "051be30e-ecf3-4abd-bbd5-ddb7b70bb0eb", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11347,Microsoft.Compute/GetVMImageFromLocation30Min;72347", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:051be30e-ecf3-4abd-bbd5-ddb7b70bb0eb", - "Expires" : "-1", - "x-ms-request-id" : "332d546a-0705-40f1-9cdc-97376759f2c7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201712080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201712080\"\r\n}", - "x-ms-client-request-id" : "3fd9c4d0-3310-435e-8ea3-f5c1af7cfa20", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201903180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86134673-b52b-4a6d-b173-0b2b296a6784", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80882451-dd41-4575-bf59-3d8938d5ce03", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11346,Microsoft.Compute/GetVMImageFromLocation30Min;72346", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:80882451-dd41-4575-bf59-3d8938d5ce03", - "Expires" : "-1", - "x-ms-request-id" : "25599c2e-5841-41fb-b710-92588b79721f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903180\"\r\n}", - "x-ms-client-request-id" : "86134673-b52b-4a6d-b173-0b2b296a6784", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201903210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f978c28-6d07-4706-8194-02a024c2c19f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fa64e0c-b636-48c5-a71c-77480a75774e", - "Date" : "Tue, 24 May 2022 13:02:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11345,Microsoft.Compute/GetVMImageFromLocation30Min;72345", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:2fa64e0c-b636-48c5-a71c-77480a75774e", - "Expires" : "-1", - "x-ms-request-id" : "d040a11b-f52f-4a6d-b3bf-9402b68fcc54", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201903210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201903210\"\r\n}", - "x-ms-client-request-id" : "3f978c28-6d07-4706-8194-02a024c2c19f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37130ac4-7d0e-4d9e-8166-c085fce419b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3300beb4-c2de-4e08-a5ba-143bb6137fc9", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11343,Microsoft.Compute/GetVMImageFromLocation30Min;72343", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:3300beb4-c2de-4e08-a5ba-143bb6137fc9", - "Expires" : "-1", - "x-ms-request-id" : "34023490-66a5-45b2-87e9-f89ec25e3049", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904080\"\r\n}", - "x-ms-client-request-id" : "37130ac4-7d0e-4d9e-8166-c085fce419b8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "388b00c7-7ebf-42d7-9827-e42aa5f63de0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47582762-1ef8-47ae-9f27-9d8e7efd978e", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11344,Microsoft.Compute/GetVMImageFromLocation30Min;72344", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:47582762-1ef8-47ae-9f27-9d8e7efd978e", - "Expires" : "-1", - "x-ms-request-id" : "c61a6e87-0d63-4e50-a085-7ea3a72e49c9", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904030\"\r\n}", - "x-ms-client-request-id" : "388b00c7-7ebf-42d7-9827-e42aa5f63de0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57a47241-9262-4bcc-98c0-8cdbe71c4e1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25098bfa-845b-432e-89f2-76b4b7491d8f", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11342,Microsoft.Compute/GetVMImageFromLocation30Min;72342", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:25098bfa-845b-432e-89f2-76b4b7491d8f", - "Expires" : "-1", - "x-ms-request-id" : "de937593-704d-426f-8b65-f7254a0ef0aa", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904100\"\r\n}", - "x-ms-client-request-id" : "57a47241-9262-4bcc-98c0-8cdbe71c4e1f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6103cd4e-6481-4bff-be83-d32f12fdae88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e37bab9d-f2e3-4c8f-9122-6ce3704d46d4", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11341,Microsoft.Compute/GetVMImageFromLocation30Min;72341", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:e37bab9d-f2e3-4c8f-9122-6ce3704d46d4", - "Expires" : "-1", - "x-ms-request-id" : "328ac419-133d-42b2-b808-48d8f0ee4ce7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904020\"\r\n}", - "x-ms-client-request-id" : "6103cd4e-6481-4bff-be83-d32f12fdae88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a923e791-b121-489f-a5e2-757b13b94a72", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e641068-64a6-4f42-bde9-8495c974d8a5", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11339,Microsoft.Compute/GetVMImageFromLocation30Min;72339", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:0e641068-64a6-4f42-bde9-8495c974d8a5", - "Expires" : "-1", - "x-ms-request-id" : "6841472f-5aa5-4a4d-b868-79bc5c3b8df4", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904250\"\r\n}", - "x-ms-client-request-id" : "a923e791-b121-489f-a5e2-757b13b94a72", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b1236b7-692a-4263-9b91-8e50db90cf98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4d6f294-7ede-408a-8731-851731b5082f", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11340,Microsoft.Compute/GetVMImageFromLocation30Min;72340", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130217Z:e4d6f294-7ede-408a-8731-851731b5082f", - "Expires" : "-1", - "x-ms-request-id" : "48e48451-6cf8-46a3-bc63-b3be18701f4e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904290\"\r\n}", - "x-ms-client-request-id" : "5b1236b7-692a-4263-9b91-8e50db90cf98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75e268a0-b87d-46c9-98a3-8dc886465432", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a269063-3e95-4cbf-ba49-2a636f54afb4", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11338,Microsoft.Compute/GetVMImageFromLocation30Min;72338", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130218Z:2a269063-3e95-4cbf-ba49-2a636f54afb4", - "Expires" : "-1", - "x-ms-request-id" : "82f51b47-8f43-49de-abe9-c92f07b6a1a4", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201905140\"\r\n}", - "x-ms-client-request-id" : "75e268a0-b87d-46c9-98a3-8dc886465432", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70b411c3-a3d2-4069-bc09-b7fd833bd898", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb329b81-9098-415b-87d7-4d18325c542c", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11337,Microsoft.Compute/GetVMImageFromLocation30Min;72337", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130218Z:bb329b81-9098-415b-87d7-4d18325c542c", - "Expires" : "-1", - "x-ms-request-id" : "6f3142c2-22bf-4f99-9067-a13c68f3c9da", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201911070\"\r\n}", - "x-ms-client-request-id" : "70b411c3-a3d2-4069-bc09-b7fd833bd898", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25836ef1-1e34-4eda-b4db-bb1f4e4b8b59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbba16a2-9590-48c5-88e2-39e0c32e0045", - "Date" : "Tue, 24 May 2022 13:02:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11336,Microsoft.Compute/GetVMImageFromLocation30Min;72336", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130218Z:fbba16a2-9590-48c5-88e2-39e0c32e0045", - "Expires" : "-1", - "x-ms-request-id" : "4799e6ef-bfdc-474f-bc4d-58cdd888e819", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904200\"\r\n}", - "x-ms-client-request-id" : "25836ef1-1e34-4eda-b4db-bb1f4e4b8b59", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201904240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28c75e49-bfa6-4242-8467-f3f1a5f1bbee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "682", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a12451d-9cdc-49b6-bf4b-251934e995be", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11335,Microsoft.Compute/GetVMImageFromLocation30Min;72335", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130218Z:7a12451d-9cdc-49b6-bf4b-251934e995be", - "Expires" : "-1", - "x-ms-request-id" : "fbfa0168-ae15-4121-a5c8-1a183012c1f7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201904240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201904240\"\r\n}", - "x-ms-client-request-id" : "28c75e49-bfa6-4242-8467-f3f1a5f1bbee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "192be30c-dab1-4142-a79b-f8043e3c563b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3336", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2230c8b-b313-404a-afe6-efa9e022395f", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15843,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130218Z:d2230c8b-b313-404a-afe6-efa9e022395f", - "Expires" : "-1", - "x-ms-request-id" : "7d972af6-821d-462c-965c-d350634b67d8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201907241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201907290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201907310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201908050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201908070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201908160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202109280\"\r\n }\r\n]", - "x-ms-client-request-id" : "192be30c-dab1-4142-a79b-f8043e3c563b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201908050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2ae6d69-1129-442d-939d-7de2687bf773", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f25ebfe4-e566-453c-ba66-45e21cc2c281", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11334,Microsoft.Compute/GetVMImageFromLocation30Min;72334", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:f25ebfe4-e566-453c-ba66-45e21cc2c281", - "Expires" : "-1", - "x-ms-request-id" : "4a952ad5-5ce4-4571-ab6a-e449bbdfcf4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201908050\"\r\n}", - "x-ms-client-request-id" : "e2ae6d69-1129-442d-939d-7de2687bf773", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201907290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fc9b37a-780e-4ae8-8e51-deedb152bbc1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5827a753-5af3-4b0d-b3ce-8a7acfc66aec", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11329,Microsoft.Compute/GetVMImageFromLocation30Min;72329", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:5827a753-5af3-4b0d-b3ce-8a7acfc66aec", - "Expires" : "-1", - "x-ms-request-id" : "aed55a3d-3f3b-4e58-9484-916a7d4c4229", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201907290\"\r\n}", - "x-ms-client-request-id" : "3fc9b37a-780e-4ae8-8e51-deedb152bbc1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e0bbef1-49a2-4751-b5d1-9bba92678689", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa42032b-8c3a-4a77-998d-8975e49f661e", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11330,Microsoft.Compute/GetVMImageFromLocation30Min;72330", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:aa42032b-8c3a-4a77-998d-8975e49f661e", - "Expires" : "-1", - "x-ms-request-id" : "c25a4ce8-985b-4626-815b-8aa317ace82d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "3e0bbef1-49a2-4751-b5d1-9bba92678689", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201909050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d626c0fd-e183-493b-9a71-a98192a5ecc3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c24dc1c3-7ace-43e5-8daa-511e78c35a25", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11332,Microsoft.Compute/GetVMImageFromLocation30Min;72332", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:c24dc1c3-7ace-43e5-8daa-511e78c35a25", - "Expires" : "-1", - "x-ms-request-id" : "01cc0ff4-652d-4236-9dc8-78b8e307829c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909050\"\r\n}", - "x-ms-client-request-id" : "d626c0fd-e183-493b-9a71-a98192a5ecc3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201909091?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2808ac1f-b85c-4594-9a1d-109350b76597", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f957e4e0-562e-439e-860a-34331639c7ed", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11326,Microsoft.Compute/GetVMImageFromLocation30Min;72326", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:f957e4e0-562e-439e-860a-34331639c7ed", - "Expires" : "-1", - "x-ms-request-id" : "95a1ab1d-57c4-4016-a6fb-793cd3fd58e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201909091\"\r\n}", - "x-ms-client-request-id" : "2808ac1f-b85c-4594-9a1d-109350b76597", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201907241?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e09bc503-fecb-47da-9791-cb2674e0d15d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6fe41906-34f3-49da-99de-256e6bf8090e", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11331,Microsoft.Compute/GetVMImageFromLocation30Min;72331", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:6fe41906-34f3-49da-99de-256e6bf8090e", - "Expires" : "-1", - "x-ms-request-id" : "76156ae6-6fda-4865-905e-0dad48b05d29", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201907241\"\r\n}", - "x-ms-client-request-id" : "e09bc503-fecb-47da-9791-cb2674e0d15d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201908070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "83226c71-1fca-4537-9629-9ad8b49893e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3f1288e-c4b0-4d12-b02d-78ea20c82e05", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11333,Microsoft.Compute/GetVMImageFromLocation30Min;72333", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:f3f1288e-c4b0-4d12-b02d-78ea20c82e05", - "Expires" : "-1", - "x-ms-request-id" : "3b0466a6-483d-4b3f-be03-c00cef709c1a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201908070\"\r\n}", - "x-ms-client-request-id" : "83226c71-1fca-4537-9629-9ad8b49893e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bedcf913-ec72-49b3-a980-ddff8e37ae41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d33d4e9-e3c1-446f-b05b-4a61963190c9", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11328,Microsoft.Compute/GetVMImageFromLocation30Min;72328", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:0d33d4e9-e3c1-446f-b05b-4a61963190c9", - "Expires" : "-1", - "x-ms-request-id" : "b31f9ce5-b16d-4533-b5f4-814154da9da1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "bedcf913-ec72-49b3-a980-ddff8e37ae41", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201907310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e941464c-79a3-4a34-90ff-a43321c03960", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daf9ed93-7409-4e55-97c3-a4acef8c554d", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11325,Microsoft.Compute/GetVMImageFromLocation30Min;72325", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:daf9ed93-7409-4e55-97c3-a4acef8c554d", - "Expires" : "-1", - "x-ms-request-id" : "399437e1-7af3-452f-bc48-6ffaaa2b6ced", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201907310\"\r\n}", - "x-ms-client-request-id" : "e941464c-79a3-4a34-90ff-a43321c03960", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dcd568c8-844f-48f0-9e27-15d87e8aeaca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "829580f3-58fb-449f-8647-8842bcd0f161", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11327,Microsoft.Compute/GetVMImageFromLocation30Min;72327", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:829580f3-58fb-449f-8647-8842bcd0f161", - "Expires" : "-1", - "x-ms-request-id" : "f980df30-fd1c-4540-8b03-2ef4cc8baaa9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "dcd568c8-844f-48f0-9e27-15d87e8aeaca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201908160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "07ff4919-1b4d-40a1-9cec-cb949ad12fd8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "774", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5dec8024-901d-411f-b201-b77eda674ad1", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11324,Microsoft.Compute/GetVMImageFromLocation30Min;72324", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:5dec8024-901d-411f-b201-b77eda674ad1", - "Expires" : "-1", - "x-ms-request-id" : "15999f72-9caf-474e-bb2f-839d16d80ac2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201908160\"\r\n}", - "x-ms-client-request-id" : "07ff4919-1b4d-40a1-9cec-cb949ad12fd8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ff81419-2cd5-488c-9927-367568c79414", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "36831", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f978077f-6b47-4d33-8676-5761ed192692", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15842,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:f978077f-6b47-4d33-8676-5761ed192692", - "Expires" : "-1", - "x-ms-request-id" : "81438e6f-1ccb-4ca8-9fa1-851f70f6175e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201701130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201705080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201705080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201705160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201705160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201706100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201706100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201706191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201706191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201707210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201707210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201707270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201707270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201708030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201708030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201708110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201708110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201708151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201708151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201709190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201709190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201710110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201710110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201710261\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201710261\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201711072\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201711072\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201711160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201711160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201711211\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201711211\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201712080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201712080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201802220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201802220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201803230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201803230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201805090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201805090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201806120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201806120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201806210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201806210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201806220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201806220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201807030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201807030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201807240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201807240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201808060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201808310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201809120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201809120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201810040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201810040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201810230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201810230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201810300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201810300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201811010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201811010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201811140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201811140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201812040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201812040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201812070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201812070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201812230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201812230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201902070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201902070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201902120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201902120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201903130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201903130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201903200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201903200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201904060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201904060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201904240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201904240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201905210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905303\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201905303\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906252\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906252\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201907080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201907241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201907290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201908140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201908220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202001070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202001290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202002040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202002120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202002181\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202004010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202004070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202005290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202007161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202008070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202009040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202009220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202011120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202012030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202102020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202102260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202103291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202104140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109280\"\r\n }\r\n]", - "x-ms-client-request-id" : "8ff81419-2cd5-488c-9927-367568c79414", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1006671f-7559-4a04-8f37-5f4645d6fa04", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e666f5be-a178-4fda-9137-5c3d44ec42ff", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11306,Microsoft.Compute/GetVMImageFromLocation30Min;72306", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:e666f5be-a178-4fda-9137-5c3d44ec42ff", - "Expires" : "-1", - "x-ms-request-id" : "af754bf3-1a83-4776-b41e-2c22d6e134be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703300\"\r\n}", - "x-ms-client-request-id" : "1006671f-7559-4a04-8f37-5f4645d6fa04", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c44a943-e015-4cc9-a634-823396faceb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83373ba8-480d-4b3b-b794-64446609298a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11274,Microsoft.Compute/GetVMImageFromLocation30Min;72274", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:83373ba8-480d-4b3b-b794-64446609298a", - "Expires" : "-1", - "x-ms-request-id" : "c4b20d10-f9e4-4b96-b3ce-335ee7ec8aa6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201901221\"\r\n}", - "x-ms-client-request-id" : "7c44a943-e015-4cc9-a634-823396faceb6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201904240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e4b134d-924f-450d-93bb-af2056097262", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "629963bb-49d2-4a00-8007-48cb9dc900ca", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11272,Microsoft.Compute/GetVMImageFromLocation30Min;72272", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:629963bb-49d2-4a00-8007-48cb9dc900ca", - "Expires" : "-1", - "x-ms-request-id" : "0e39dbf5-af64-488e-8cfe-39b9a8c865c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201904240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201904240\"\r\n}", - "x-ms-client-request-id" : "0e4b134d-924f-450d-93bb-af2056097262", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201902120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af999739-7b02-48b3-af06-6902f83be406", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd2f86a8-f95b-4d4d-b273-123adbb0d2ab", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11273,Microsoft.Compute/GetVMImageFromLocation30Min;72273", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:dd2f86a8-f95b-4d4d-b273-123adbb0d2ab", - "Expires" : "-1", - "x-ms-request-id" : "8142e362-a305-4f95-91b4-dd3a3a06002a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201902120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201902120\"\r\n}", - "x-ms-client-request-id" : "af999739-7b02-48b3-af06-6902f83be406", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201906170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c5a4132-a63a-4630-8b3a-c24975547c8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5176997e-7f01-4255-b2b8-75a7c9ca00ce", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11264,Microsoft.Compute/GetVMImageFromLocation30Min;72264", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:5176997e-7f01-4255-b2b8-75a7c9ca00ce", - "Expires" : "-1", - "x-ms-request-id" : "cf32bc3a-cb78-461d-a4a6-9d273eca079d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906170\"\r\n}", - "x-ms-client-request-id" : "2c5a4132-a63a-4630-8b3a-c24975547c8c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201903200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47a28d77-e4dc-4150-a64d-1d59e5af3402", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56006081-768a-48b5-a21d-8ab262b226cd", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11275,Microsoft.Compute/GetVMImageFromLocation30Min;72275", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:56006081-768a-48b5-a21d-8ab262b226cd", - "Expires" : "-1", - "x-ms-request-id" : "5095da35-61a5-429c-990b-5c6dc7e92570", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201903200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201903200\"\r\n}", - "x-ms-client-request-id" : "47a28d77-e4dc-4150-a64d-1d59e5af3402", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201904060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b0bea13-9c67-4dbe-8e7a-bb940f3125ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "abdc79c4-cce2-4129-b53a-035bc10b504b", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11270,Microsoft.Compute/GetVMImageFromLocation30Min;72270", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:abdc79c4-cce2-4129-b53a-035bc10b504b", - "Expires" : "-1", - "x-ms-request-id" : "2798efc4-fefb-49de-90e3-2c69730fc948", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201904060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201904060\"\r\n}", - "x-ms-client-request-id" : "6b0bea13-9c67-4dbe-8e7a-bb940f3125ee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201803230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9150c99-1b39-4d3f-b16d-3833fdc349db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fb10045f-7092-4a27-a732-1f07c1765058", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11278,Microsoft.Compute/GetVMImageFromLocation30Min;72278", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:fb10045f-7092-4a27-a732-1f07c1765058", - "Expires" : "-1", - "x-ms-request-id" : "20d69dc5-5da2-4813-9a95-8ba90bbe8a97", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201803230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201803230\"\r\n}", - "x-ms-client-request-id" : "f9150c99-1b39-4d3f-b16d-3833fdc349db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201903130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a214a2e-c9fd-4cce-ac4f-fc54779b2ba7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba6da7e1-eaf5-4060-93d8-ed12100ac727", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11266,Microsoft.Compute/GetVMImageFromLocation30Min;72266", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:ba6da7e1-eaf5-4060-93d8-ed12100ac727", - "Expires" : "-1", - "x-ms-request-id" : "8f85520b-6784-40cf-9f3f-d1d8ce115177", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201903130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201903130\"\r\n}", - "x-ms-client-request-id" : "6a214a2e-c9fd-4cce-ac4f-fc54779b2ba7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201905210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc7e62e8-b631-4a41-8380-c213ea55b384", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36404dce-38d8-4df6-a3bb-25713aaa242a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11263,Microsoft.Compute/GetVMImageFromLocation30Min;72263", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:36404dce-38d8-4df6-a3bb-25713aaa242a", - "Expires" : "-1", - "x-ms-request-id" : "33960c7e-c174-4039-8b38-8378c07921da", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201905210\"\r\n}", - "x-ms-client-request-id" : "bc7e62e8-b631-4a41-8380-c213ea55b384", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201807240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d364ddbf-aa39-4570-9430-95b11a6677fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e6d08ec-92f6-4209-9ea5-bb4bbd2e1955", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11261,Microsoft.Compute/GetVMImageFromLocation30Min;72261", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:5e6d08ec-92f6-4209-9ea5-bb4bbd2e1955", - "Expires" : "-1", - "x-ms-request-id" : "7d4bb3b2-b7e9-48c7-8378-2f2b34f64635", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201807240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201807240\"\r\n}", - "x-ms-client-request-id" : "d364ddbf-aa39-4570-9430-95b11a6677fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201611220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0002084-29ac-4bd6-9da1-b0357651396f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3321a03-f0ec-4962-bf12-d531d18a3fb2", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11319,Microsoft.Compute/GetVMImageFromLocation30Min;72319", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:a3321a03-f0ec-4962-bf12-d531d18a3fb2", - "Expires" : "-1", - "x-ms-request-id" : "1c2b463d-4f2d-4f20-b41d-1e747b1272e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611220\"\r\n}", - "x-ms-client-request-id" : "e0002084-29ac-4bd6-9da1-b0357651396f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201611300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b06f9cca-54d4-4e8e-947e-c4c71b995ce8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d5b701a9-2b11-4c3e-95ad-1af4ad585681", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11323,Microsoft.Compute/GetVMImageFromLocation30Min;72323", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:d5b701a9-2b11-4c3e-95ad-1af4ad585681", - "Expires" : "-1", - "x-ms-request-id" : "bd1e7541-b622-40e7-8ed5-aab21f268f45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611300\"\r\n}", - "x-ms-client-request-id" : "b06f9cca-54d4-4e8e-947e-c4c71b995ce8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3efae09-036b-4d9a-9e1e-a547b13dcd07", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fda860c-0405-451d-97af-faf3c271dec9", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11305,Microsoft.Compute/GetVMImageFromLocation30Min;72305", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:0fda860c-0405-451d-97af-faf3c271dec9", - "Expires" : "-1", - "x-ms-request-id" : "7f6769d6-4168-46b0-9b34-9a31792ddfd4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612050\"\r\n}", - "x-ms-client-request-id" : "a3efae09-036b-4d9a-9e1e-a547b13dcd07", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201804050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7eb54d52-fc1a-4195-b0b7-0c6a15b0e5ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9332c111-2fae-44ca-9ea5-1d4019e8f49f", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11269,Microsoft.Compute/GetVMImageFromLocation30Min;72269", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:9332c111-2fae-44ca-9ea5-1d4019e8f49f", - "Expires" : "-1", - "x-ms-request-id" : "9d50aea9-f15f-4900-90dc-050de8fea05f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804050\"\r\n}", - "x-ms-client-request-id" : "7eb54d52-fc1a-4195-b0b7-0c6a15b0e5ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a640b750-9706-459b-a5a8-1fdf3def42a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d6f73c5-826d-43ad-a7db-32eb0e429466", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11321,Microsoft.Compute/GetVMImageFromLocation30Min;72321", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:8d6f73c5-826d-43ad-a7db-32eb0e429466", - "Expires" : "-1", - "x-ms-request-id" : "d7bbaced-3675-4103-b4ff-6e80fa74dcc4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612140\"\r\n}", - "x-ms-client-request-id" : "a640b750-9706-459b-a5a8-1fdf3def42a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1031a22-d8aa-42a1-9880-058e4cb395fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38adfd63-8327-41f6-b070-b13f674fee7e", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11304,Microsoft.Compute/GetVMImageFromLocation30Min;72304", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:38adfd63-8327-41f6-b070-b13f674fee7e", - "Expires" : "-1", - "x-ms-request-id" : "d17b2bd3-558e-4048-851a-44cb9f17cb13", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612210\"\r\n}", - "x-ms-client-request-id" : "d1031a22-d8aa-42a1-9880-058e4cb395fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201701130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42f61291-18e3-4679-a095-38a09964906f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b71cd3e9-7691-4b82-9174-3fb949eeeeb4", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11303,Microsoft.Compute/GetVMImageFromLocation30Min;72303", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:b71cd3e9-7691-4b82-9174-3fb949eeeeb4", - "Expires" : "-1", - "x-ms-request-id" : "2923fc24-4be1-41df-bcb9-9aed21b545f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201701130\"\r\n}", - "x-ms-client-request-id" : "42f61291-18e3-4679-a095-38a09964906f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "578ed43d-4830-4460-bba2-4eab36c48030", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2f5db85-7c54-43fb-8cd9-595ebe19b37a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11322,Microsoft.Compute/GetVMImageFromLocation30Min;72322", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:e2f5db85-7c54-43fb-8cd9-595ebe19b37a", - "Expires" : "-1", - "x-ms-request-id" : "ef734213-47ac-4f1f-bdd0-0a4dfd73c502", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702020\"\r\n}", - "x-ms-client-request-id" : "578ed43d-4830-4460-bba2-4eab36c48030", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201804180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "633efec2-75bb-495b-b36f-067e98ebf5dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48db156f-61ca-4680-86c2-b1abf8d77b0a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11299,Microsoft.Compute/GetVMImageFromLocation30Min;72299", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:48db156f-61ca-4680-86c2-b1abf8d77b0a", - "Expires" : "-1", - "x-ms-request-id" : "b12ca390-8523-4e9c-867f-58aa0eabd82d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804180\"\r\n}", - "x-ms-client-request-id" : "633efec2-75bb-495b-b36f-067e98ebf5dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201804240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "302a8ac2-1f2e-4048-9597-12551a35ea06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ffafa28c-cc32-45de-b667-a223a26b87cc", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11268,Microsoft.Compute/GetVMImageFromLocation30Min;72268", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:ffafa28c-cc32-45de-b667-a223a26b87cc", - "Expires" : "-1", - "x-ms-request-id" : "fae615eb-68da-4d04-b84e-393900e6a5a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804240\"\r\n}", - "x-ms-client-request-id" : "302a8ac2-1f2e-4048-9597-12551a35ea06", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2c759c6-cf85-47fc-967b-028b38b36719", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "036aed0d-0a3b-4b2a-b98e-5dbaa496eea3", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11315,Microsoft.Compute/GetVMImageFromLocation30Min;72315", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:036aed0d-0a3b-4b2a-b98e-5dbaa496eea3", - "Expires" : "-1", - "x-ms-request-id" : "b495e2cf-22d8-48f2-87a2-bb0e73656066", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702200\"\r\n}", - "x-ms-client-request-id" : "d2c759c6-cf85-47fc-967b-028b38b36719", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc1e72e8-e0f1-499e-a76d-6019a2e168db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3e3bb23-07c2-4668-be4b-2571e6b6262a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11320,Microsoft.Compute/GetVMImageFromLocation30Min;72320", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:e3e3bb23-07c2-4668-be4b-2571e6b6262a", - "Expires" : "-1", - "x-ms-request-id" : "19fb6d58-e979-461a-a1de-59c6f3290389", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702210\"\r\n}", - "x-ms-client-request-id" : "cc1e72e8-e0f1-499e-a76d-6019a2e168db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d0bcf67-14cc-4f95-bd32-fda0f0201b66", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c8cbe43b-5c9f-4dc3-bb8f-da35840ddf2e", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11318,Microsoft.Compute/GetVMImageFromLocation30Min;72318", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:c8cbe43b-5c9f-4dc3-bb8f-da35840ddf2e", - "Expires" : "-1", - "x-ms-request-id" : "efc96c06-5bbb-410c-a922-eddff91de089", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702240\"\r\n}", - "x-ms-client-request-id" : "2d0bcf67-14cc-4f95-bd32-fda0f0201b66", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ca5c4ed-9201-4a00-a387-3d081dc01b73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "580fa845-fefa-4d4a-adf5-8cae083257df", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11282,Microsoft.Compute/GetVMImageFromLocation30Min;72282", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:580fa845-fefa-4d4a-adf5-8cae083257df", - "Expires" : "-1", - "x-ms-request-id" : "b48fc052-7f2b-4329-b8bd-127d88982c1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703020\"\r\n}", - "x-ms-client-request-id" : "3ca5c4ed-9201-4a00-a387-3d081dc01b73", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da874025-0b51-4c12-9c1f-08658d546411", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b15d9d4-5c00-4190-b93f-884723d4e5e3", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11317,Microsoft.Compute/GetVMImageFromLocation30Min;72317", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:0b15d9d4-5c00-4190-b93f-884723d4e5e3", - "Expires" : "-1", - "x-ms-request-id" : "95c6a07a-f9b3-4196-9152-10db86f1ed03", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703030\"\r\n}", - "x-ms-client-request-id" : "da874025-0b51-4c12-9c1f-08658d546411", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "58950174-1226-48b4-bbd6-e4bf9c351aec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5cb9313-a0e9-41f8-af9f-9e7cc1ccf157", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11316,Microsoft.Compute/GetVMImageFromLocation30Min;72316", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:c5cb9313-a0e9-41f8-af9f-9e7cc1ccf157", - "Expires" : "-1", - "x-ms-request-id" : "dadc00df-6264-44af-88a8-cfc797693c63", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703070\"\r\n}", - "x-ms-client-request-id" : "58950174-1226-48b4-bbd6-e4bf9c351aec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "778a68e8-c6e4-4183-a8e9-4ad0e68988bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cc29c5b-b2c8-4363-b8d5-645c6f945fa6", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11291,Microsoft.Compute/GetVMImageFromLocation30Min;72291", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:5cc29c5b-b2c8-4363-b8d5-645c6f945fa6", - "Expires" : "-1", - "x-ms-request-id" : "311bc1ab-f281-4c36-ba2b-b7808521de32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703270\"\r\n}", - "x-ms-client-request-id" : "778a68e8-c6e4-4183-a8e9-4ad0e68988bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67bbb6a3-482a-476a-91c1-9f2cd9515681", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fd6c1d2-18c7-4845-90dd-2e7bf6e7480b", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11294,Microsoft.Compute/GetVMImageFromLocation30Min;72294", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:2fd6c1d2-18c7-4845-90dd-2e7bf6e7480b", - "Expires" : "-1", - "x-ms-request-id" : "97913421-ccfb-4509-b328-59640a5ed7dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703280\"\r\n}", - "x-ms-client-request-id" : "67bbb6a3-482a-476a-91c1-9f2cd9515681", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201804270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94a0f5f7-7013-4d98-a76f-e5bfef666179", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61e821e4-9607-41b0-b36c-b725c32d94b3", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11296,Microsoft.Compute/GetVMImageFromLocation30Min;72296", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:61e821e4-9607-41b0-b36c-b725c32d94b3", - "Expires" : "-1", - "x-ms-request-id" : "a6326e8f-883d-481b-9e14-dcbba6531f20", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201804270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201804270\"\r\n}", - "x-ms-client-request-id" : "94a0f5f7-7013-4d98-a76f-e5bfef666179", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201705080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "295d1f6b-70f1-4c12-8ee7-ab02807cce42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fd0b2c0-7f61-44c5-b658-c2a514f50a6d", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11313,Microsoft.Compute/GetVMImageFromLocation30Min;72313", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:7fd0b2c0-7f61-44c5-b658-c2a514f50a6d", - "Expires" : "-1", - "x-ms-request-id" : "33699cc3-1172-44f5-906a-df9016147c24", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201705080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201705080\"\r\n}", - "x-ms-client-request-id" : "295d1f6b-70f1-4c12-8ee7-ab02807cce42", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201705160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d682534e-e4a3-4dc8-bc19-d434832916ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5adf53b6-1c45-4430-a04b-73c62ee7b457", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11314,Microsoft.Compute/GetVMImageFromLocation30Min;72314", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:5adf53b6-1c45-4430-a04b-73c62ee7b457", - "Expires" : "-1", - "x-ms-request-id" : "09a8e9cb-e951-43da-9ecb-8a78c790441d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201705160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201705160\"\r\n}", - "x-ms-client-request-id" : "d682534e-e4a3-4dc8-bc19-d434832916ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201706100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b185aac-e47b-4a9d-8f68-03aa79e6589b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f623e2fe-152c-4763-9457-99ba228754c9", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11312,Microsoft.Compute/GetVMImageFromLocation30Min;72312", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:f623e2fe-152c-4763-9457-99ba228754c9", - "Expires" : "-1", - "x-ms-request-id" : "f79c8892-d82b-4881-a9f1-af8799959adf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201706100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201706100\"\r\n}", - "x-ms-client-request-id" : "1b185aac-e47b-4a9d-8f68-03aa79e6589b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201806210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55dd3318-d704-4186-913f-cd9f34329def", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79e57989-0144-4cdf-937b-baec7b38ccf1", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11285,Microsoft.Compute/GetVMImageFromLocation30Min;72285", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:79e57989-0144-4cdf-937b-baec7b38ccf1", - "Expires" : "-1", - "x-ms-request-id" : "394b4ee0-4da4-414f-a6ac-bf6d6c064b61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201806210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201806210\"\r\n}", - "x-ms-client-request-id" : "55dd3318-d704-4186-913f-cd9f34329def", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201706191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74fa5b3b-45f7-41aa-a7fa-c8d4d994565c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc659f41-1196-4ad6-adbd-4de879180d7a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11309,Microsoft.Compute/GetVMImageFromLocation30Min;72309", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:fc659f41-1196-4ad6-adbd-4de879180d7a", - "Expires" : "-1", - "x-ms-request-id" : "7f946add-c082-4012-93cc-175cecf211b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201706191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201706191\"\r\n}", - "x-ms-client-request-id" : "74fa5b3b-45f7-41aa-a7fa-c8d4d994565c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201707210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7938eafb-3680-4494-92b5-d89e7947fb97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60fdc81c-45a1-4b0a-a2cf-14e03f0842af", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11310,Microsoft.Compute/GetVMImageFromLocation30Min;72310", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:60fdc81c-45a1-4b0a-a2cf-14e03f0842af", - "Expires" : "-1", - "x-ms-request-id" : "a84ca9ad-dc24-473c-bdda-c8639fd2caa0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201707210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201707210\"\r\n}", - "x-ms-client-request-id" : "7938eafb-3680-4494-92b5-d89e7947fb97", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201707270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d24ee130-7ce3-445d-9fbd-24a59a1abeb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0885156a-8074-40cc-adec-df4a9cbc047c", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11311,Microsoft.Compute/GetVMImageFromLocation30Min;72311", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:0885156a-8074-40cc-adec-df4a9cbc047c", - "Expires" : "-1", - "x-ms-request-id" : "0616a9af-68ea-43d8-b0a7-8ddbfa79d936", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201707270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201707270\"\r\n}", - "x-ms-client-request-id" : "d24ee130-7ce3-445d-9fbd-24a59a1abeb9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201708030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "585221f3-b08c-4d5f-b5f2-7770a3c2c0de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66a49e60-9a6d-4c29-a150-a36565327a23", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11302,Microsoft.Compute/GetVMImageFromLocation30Min;72302", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:66a49e60-9a6d-4c29-a150-a36565327a23", - "Expires" : "-1", - "x-ms-request-id" : "55290ed1-c1e7-4a66-adc7-26ecfc885e23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201708030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201708030\"\r\n}", - "x-ms-client-request-id" : "585221f3-b08c-4d5f-b5f2-7770a3c2c0de", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201708110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22b5f91d-7aae-4f7e-9efd-aee048967e88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db2d960b-417c-491d-b4b1-a97bacca0f11", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11297,Microsoft.Compute/GetVMImageFromLocation30Min;72297", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:db2d960b-417c-491d-b4b1-a97bacca0f11", - "Expires" : "-1", - "x-ms-request-id" : "e8488b6d-b244-48e8-98b7-e3cdbdf18d84", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201708110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201708110\"\r\n}", - "x-ms-client-request-id" : "22b5f91d-7aae-4f7e-9efd-aee048967e88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201708151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "248a22a2-bda3-4372-bc8d-8ee641deacdb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f73b2c7-55b7-41d7-a7a9-f0bc9dc3f1d3", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11301,Microsoft.Compute/GetVMImageFromLocation30Min;72301", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:2f73b2c7-55b7-41d7-a7a9-f0bc9dc3f1d3", - "Expires" : "-1", - "x-ms-request-id" : "d5792a06-e8af-4631-a016-c1e3274be2ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201708151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201708151\"\r\n}", - "x-ms-client-request-id" : "248a22a2-bda3-4372-bc8d-8ee641deacdb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201805090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b9117e2-63d9-4d60-af74-140fd974b996", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8dd86e0e-41cd-4fbc-8b86-f39307526b54", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11284,Microsoft.Compute/GetVMImageFromLocation30Min;72284", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:8dd86e0e-41cd-4fbc-8b86-f39307526b54", - "Expires" : "-1", - "x-ms-request-id" : "e8f0fe9f-8c73-4d4d-b29b-63b216ff23c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201805090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201805090\"\r\n}", - "x-ms-client-request-id" : "7b9117e2-63d9-4d60-af74-140fd974b996", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201709190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f73fd243-f34f-46be-b410-59300ac35909", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9f5b6cf-f633-473c-9823-585d1459d9cf", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11307,Microsoft.Compute/GetVMImageFromLocation30Min;72307", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:d9f5b6cf-f633-473c-9823-585d1459d9cf", - "Expires" : "-1", - "x-ms-request-id" : "8a1b905b-5cdd-4c2a-9d48-41100a37400a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201709190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201709190\"\r\n}", - "x-ms-client-request-id" : "f73fd243-f34f-46be-b410-59300ac35909", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201807030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2001d88c-a86a-42cd-817c-258b01a08422", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a7f7d54-9653-4ca3-9775-a7ee4ff7a226", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11260,Microsoft.Compute/GetVMImageFromLocation30Min;72260", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:9a7f7d54-9653-4ca3-9775-a7ee4ff7a226", - "Expires" : "-1", - "x-ms-request-id" : "dd84314e-5a17-4fbf-ab48-a3ebd8e5f560", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201807030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201807030\"\r\n}", - "x-ms-client-request-id" : "2001d88c-a86a-42cd-817c-258b01a08422", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201710110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbb88716-c0d4-4239-83ec-2cd2cda88ff6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "069e4844-f931-4a1f-a7ca-fc17247a2f93", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11286,Microsoft.Compute/GetVMImageFromLocation30Min;72286", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:069e4844-f931-4a1f-a7ca-fc17247a2f93", - "Expires" : "-1", - "x-ms-request-id" : "fe4e9cfe-d907-455f-9a0d-d64da008667d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201710110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201710110\"\r\n}", - "x-ms-client-request-id" : "cbb88716-c0d4-4239-83ec-2cd2cda88ff6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201710261?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "895ddcdc-4deb-460e-ba41-59f9e04350a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "777973ee-b1c1-46d6-b509-f2967d4c73bd", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11295,Microsoft.Compute/GetVMImageFromLocation30Min;72295", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:777973ee-b1c1-46d6-b509-f2967d4c73bd", - "Expires" : "-1", - "x-ms-request-id" : "9e2eaf95-2d6c-4786-ac74-4ce6e8f3786d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201710261\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201710261\"\r\n}", - "x-ms-client-request-id" : "895ddcdc-4deb-460e-ba41-59f9e04350a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201806120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "281a5122-34e3-43a4-a4c7-5ad0330ae9ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5df22537-7ae4-4d46-8369-8424ec8352e3", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11290,Microsoft.Compute/GetVMImageFromLocation30Min;72290", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:5df22537-7ae4-4d46-8369-8424ec8352e3", - "Expires" : "-1", - "x-ms-request-id" : "2c959e68-588a-4271-a21b-8d8c65c481b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201806120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201806120\"\r\n}", - "x-ms-client-request-id" : "281a5122-34e3-43a4-a4c7-5ad0330ae9ef", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201711072?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4fba126-48de-4ba4-be25-277dc1fd5358", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "50828dea-776a-492a-8234-555c7f8ce701", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11308,Microsoft.Compute/GetVMImageFromLocation30Min;72308", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:50828dea-776a-492a-8234-555c7f8ce701", - "Expires" : "-1", - "x-ms-request-id" : "3e131406-86f6-4119-8e80-9ad3329cfce2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201711072\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201711072\"\r\n}", - "x-ms-client-request-id" : "d4fba126-48de-4ba4-be25-277dc1fd5358", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201711160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d84b5594-9532-4096-a4eb-e69d6d3eccc7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58fd2be3-3040-401e-aa53-49d6db572ad8", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11287,Microsoft.Compute/GetVMImageFromLocation30Min;72287", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:58fd2be3-3040-401e-aa53-49d6db572ad8", - "Expires" : "-1", - "x-ms-request-id" : "7105d594-87f7-4291-8203-81f1f477fb0f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201711160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201711160\"\r\n}", - "x-ms-client-request-id" : "d84b5594-9532-4096-a4eb-e69d6d3eccc7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201711211?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c32873e-ce7f-4ccc-a2b6-0cda3054f202", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2313b5f4-615a-41f1-983a-4a3ffd1b3c74", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11283,Microsoft.Compute/GetVMImageFromLocation30Min;72283", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:2313b5f4-615a-41f1-983a-4a3ffd1b3c74", - "Expires" : "-1", - "x-ms-request-id" : "c08abb30-f02c-4115-b56e-0e79fe1a988e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201711211\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201711211\"\r\n}", - "x-ms-client-request-id" : "7c32873e-ce7f-4ccc-a2b6-0cda3054f202", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201801050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0e22208-1de8-4574-9fc9-d2b05b9b08cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1fdee3f-adc8-4541-aaa4-a5558f529984", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11292,Microsoft.Compute/GetVMImageFromLocation30Min;72292", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:d1fdee3f-adc8-4541-aaa4-a5558f529984", - "Expires" : "-1", - "x-ms-request-id" : "17cf8e30-21dd-436a-ad86-95ea1795c65b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801050\"\r\n}", - "x-ms-client-request-id" : "a0e22208-1de8-4574-9fc9-d2b05b9b08cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201806220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e669dfc-f157-4f1d-a809-3df6a12bb9f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a9e3e68-1a9f-4b6c-8c6b-3ad0a916b6b9", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11259,Microsoft.Compute/GetVMImageFromLocation30Min;72259", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:9a9e3e68-1a9f-4b6c-8c6b-3ad0a916b6b9", - "Expires" : "-1", - "x-ms-request-id" : "313b21df-1e02-43d7-9c06-cc9271bd0c48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201806220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201806220\"\r\n}", - "x-ms-client-request-id" : "7e669dfc-f157-4f1d-a809-3df6a12bb9f9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201801090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b81489ca-12bd-4b58-bb28-dfe53a691489", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e39c7f8e-1f98-4964-b839-a44645ba0719", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11300,Microsoft.Compute/GetVMImageFromLocation30Min;72300", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:e39c7f8e-1f98-4964-b839-a44645ba0719", - "Expires" : "-1", - "x-ms-request-id" : "69cbcd31-b1aa-47c4-9216-136f73f3f649", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801090\"\r\n}", - "x-ms-client-request-id" : "b81489ca-12bd-4b58-bb28-dfe53a691489", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201801120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e094085-ae51-4ce2-8ce5-b336cc19a506", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8290cf1-5dfb-4be0-8dae-00a3e52a8dec", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11267,Microsoft.Compute/GetVMImageFromLocation30Min;72267", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:d8290cf1-5dfb-4be0-8dae-00a3e52a8dec", - "Expires" : "-1", - "x-ms-request-id" : "a651a1d0-ee79-4957-a296-09e4cbfd7286", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801120\"\r\n}", - "x-ms-client-request-id" : "0e094085-ae51-4ce2-8ce5-b336cc19a506", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201801220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e079f8e-3260-408d-bdf0-c51131ea945a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1b92c2f-60a3-4fb5-9310-4c012d772f31", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11265,Microsoft.Compute/GetVMImageFromLocation30Min;72265", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:e1b92c2f-60a3-4fb5-9310-4c012d772f31", - "Expires" : "-1", - "x-ms-request-id" : "d7b5d141-04e8-429f-84b6-9da9bc090e05", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801220\"\r\n}", - "x-ms-client-request-id" : "5e079f8e-3260-408d-bdf0-c51131ea945a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13e9506e-e62e-4987-8486-3790ad2ad12d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c74e41f3-3f05-4449-8e98-5c9901d0a3b6", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11293,Microsoft.Compute/GetVMImageFromLocation30Min;72293", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:c74e41f3-3f05-4449-8e98-5c9901d0a3b6", - "Expires" : "-1", - "x-ms-request-id" : "f39983dc-f549-496f-b2d0-d2710f61d2f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201805220\"\r\n}", - "x-ms-client-request-id" : "13e9506e-e62e-4987-8486-3790ad2ad12d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201801260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1ce51c2-7b8b-4e1f-b140-adebc58926ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe2b3c48-5af0-4b9e-944d-da60bf16470f", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11262,Microsoft.Compute/GetVMImageFromLocation30Min;72262", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:fe2b3c48-5af0-4b9e-944d-da60bf16470f", - "Expires" : "-1", - "x-ms-request-id" : "39d6d271-a475-4236-9749-f8890fc4ea45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201801260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201801260\"\r\n}", - "x-ms-client-request-id" : "e1ce51c2-7b8b-4e1f-b140-adebc58926ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201802220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d2dc844-5bdd-4c37-afde-d629f6cf06ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08f4b910-06df-4f71-a970-0efcd7683507", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11298,Microsoft.Compute/GetVMImageFromLocation30Min;72298", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:08f4b910-06df-4f71-a970-0efcd7683507", - "Expires" : "-1", - "x-ms-request-id" : "2f10c658-62fe-45f6-bee5-f7f0caef3022", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201802220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201802220\"\r\n}", - "x-ms-client-request-id" : "7d2dc844-5bdd-4c37-afde-d629f6cf06ba", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8dea592-bb38-4a56-9007-e7659f3b44fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cf24e46-b0dd-4e29-be7f-f40b2553a0bb", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11289,Microsoft.Compute/GetVMImageFromLocation30Min;72289", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:6cf24e46-b0dd-4e29-be7f-f40b2553a0bb", - "Expires" : "-1", - "x-ms-request-id" : "3dc710d0-217c-42f8-8030-a9e97dcd1776", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201808060\"\r\n}", - "x-ms-client-request-id" : "c8dea592-bb38-4a56-9007-e7659f3b44fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b0ac95e-033a-437a-baff-7f9d6d21d0c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9dee7da-6cd2-4726-b54d-2ffb96664edf", - "Date" : "Tue, 24 May 2022 13:02:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11288,Microsoft.Compute/GetVMImageFromLocation30Min;72288", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:c9dee7da-6cd2-4726-b54d-2ffb96664edf", - "Expires" : "-1", - "x-ms-request-id" : "2982d47f-213d-4bb2-a746-85df8c0f0eaf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201808140\"\r\n}", - "x-ms-client-request-id" : "5b0ac95e-033a-437a-baff-7f9d6d21d0c8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201810040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aba97fab-d7cd-405f-bd8c-beafc79f3865", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76795632-7b71-4a52-869e-ee4312372b3c", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11281,Microsoft.Compute/GetVMImageFromLocation30Min;72281", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:76795632-7b71-4a52-869e-ee4312372b3c", - "Expires" : "-1", - "x-ms-request-id" : "bafb1025-8c7b-44d2-afc9-cebf40ab1334", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201810040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201810040\"\r\n}", - "x-ms-client-request-id" : "aba97fab-d7cd-405f-bd8c-beafc79f3865", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201812070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb8dce41-a1f2-4fee-ac0a-05590410ea4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e662036c-3c74-41b9-abff-dc6ca8c47f19", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11277,Microsoft.Compute/GetVMImageFromLocation30Min;72277", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:e662036c-3c74-41b9-abff-dc6ca8c47f19", - "Expires" : "-1", - "x-ms-request-id" : "4b786c4c-3196-41a7-91bf-467d2a2548cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201812070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201812070\"\r\n}", - "x-ms-client-request-id" : "fb8dce41-a1f2-4fee-ac0a-05590410ea4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201812230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29e0a97c-970f-4445-beec-fdbb23b38bc7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aba3321f-fc4d-43bb-b5b7-51c16f302c2a", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11276,Microsoft.Compute/GetVMImageFromLocation30Min;72276", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:aba3321f-fc4d-43bb-b5b7-51c16f302c2a", - "Expires" : "-1", - "x-ms-request-id" : "69b782ca-f37b-4808-8ac9-5e35c89fd95b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201812230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201812230\"\r\n}", - "x-ms-client-request-id" : "29e0a97c-970f-4445-beec-fdbb23b38bc7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201811010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb058ae0-0165-4d58-b864-c345e48d084d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2df5fab0-5c72-4be6-8af3-7f246c901d02", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11280,Microsoft.Compute/GetVMImageFromLocation30Min;72280", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:2df5fab0-5c72-4be6-8af3-7f246c901d02", - "Expires" : "-1", - "x-ms-request-id" : "43a83599-4ed6-4692-9abe-7cb8b7121589", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201811010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201811010\"\r\n}", - "x-ms-client-request-id" : "cb058ae0-0165-4d58-b864-c345e48d084d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201811140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "21252aed-314d-4f45-b521-d1be8bf3eccf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be9fb0ee-bb5b-4ff7-a306-43c0b0068143", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11279,Microsoft.Compute/GetVMImageFromLocation30Min;72279", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:be9fb0ee-bb5b-4ff7-a306-43c0b0068143", - "Expires" : "-1", - "x-ms-request-id" : "a6e548cd-97f8-4448-9670-5e0d33714f3d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201811140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201811140\"\r\n}", - "x-ms-client-request-id" : "21252aed-314d-4f45-b521-d1be8bf3eccf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201812040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1a57e47-e856-46d1-8feb-9f2c3a693827", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33ffe0c9-f6ef-4131-9590-5d5a2a26aed1", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11271,Microsoft.Compute/GetVMImageFromLocation30Min;72271", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130219Z:33ffe0c9-f6ef-4131-9590-5d5a2a26aed1", - "Expires" : "-1", - "x-ms-request-id" : "f81ae4a8-366c-4196-a164-0150a75fdcbc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201812040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201812040\"\r\n}", - "x-ms-client-request-id" : "a1a57e47-e856-46d1-8feb-9f2c3a693827", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201909030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1552c801-6516-400e-b588-b3d5c017ce52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35af2e9e-d10e-4cf6-aac1-8b399d6ae421", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11256,Microsoft.Compute/GetVMImageFromLocation30Min;72256", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:35af2e9e-d10e-4cf6-aac1-8b399d6ae421", - "Expires" : "-1", - "x-ms-request-id" : "3ab51ca1-b933-4d30-88c2-09299a056a5e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909030\"\r\n}", - "x-ms-client-request-id" : "1552c801-6516-400e-b588-b3d5c017ce52", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201910310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca0c50a3-e6d7-4823-8fb0-9d854186b611", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "361e8040-8a25-40aa-9d4f-773ceb160e82", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11254,Microsoft.Compute/GetVMImageFromLocation30Min;72254", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:361e8040-8a25-40aa-9d4f-773ceb160e82", - "Expires" : "-1", - "x-ms-request-id" : "b7427857-d098-4db6-bf28-e7760b35e011", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910310\"\r\n}", - "x-ms-client-request-id" : "ca0c50a3-e6d7-4823-8fb0-9d854186b611", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201912110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cad5d43-61a1-4a1c-96ba-46fe9fcd2cc8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d88a09f-c871-4fed-a578-e932e3b7b23c", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11255,Microsoft.Compute/GetVMImageFromLocation30Min;72255", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:2d88a09f-c871-4fed-a578-e932e3b7b23c", - "Expires" : "-1", - "x-ms-request-id" : "187881c7-acaa-4ba5-bab4-1e4e8ef81d12", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912110\"\r\n}", - "x-ms-client-request-id" : "0cad5d43-61a1-4a1c-96ba-46fe9fcd2cc8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201909110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c4bcdd6-eb62-4929-a4fd-8640ba286190", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04ded5cf-3a4a-4ee5-9f59-f84f51ca99ac", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11257,Microsoft.Compute/GetVMImageFromLocation30Min;72257", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:04ded5cf-3a4a-4ee5-9f59-f84f51ca99ac", - "Expires" : "-1", - "x-ms-request-id" : "f09d2fb1-4c68-451b-bd5f-c3f496c81687", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909110\"\r\n}", - "x-ms-client-request-id" : "2c4bcdd6-eb62-4929-a4fd-8640ba286190", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201908220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "990378ab-2aaa-437a-8453-799cee649126", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e068fac-432e-4592-b65b-ed9d629d13e3", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11258,Microsoft.Compute/GetVMImageFromLocation30Min;72258", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:3e068fac-432e-4592-b65b-ed9d629d13e3", - "Expires" : "-1", - "x-ms-request-id" : "534a4ad7-ae89-4760-9407-7f80d4509210", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201908220\"\r\n}", - "x-ms-client-request-id" : "990378ab-2aaa-437a-8453-799cee649126", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201907290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0913f944-e801-491b-9a55-8a926cf60c57", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a4ca96f-d6a5-4db0-81b0-6d8bdc3cbc29", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11251,Microsoft.Compute/GetVMImageFromLocation30Min;72251", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:5a4ca96f-d6a5-4db0-81b0-6d8bdc3cbc29", - "Expires" : "-1", - "x-ms-request-id" : "61c588f2-ed8b-4a58-84a0-07fce149e6ea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201907290\"\r\n}", - "x-ms-client-request-id" : "0913f944-e801-491b-9a55-8a926cf60c57", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201910110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3abb2d7b-d0e2-41ff-a184-62cbe0396691", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37671352-0e7b-4b53-a533-394d407089cc", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11252,Microsoft.Compute/GetVMImageFromLocation30Min;72252", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:37671352-0e7b-4b53-a533-394d407089cc", - "Expires" : "-1", - "x-ms-request-id" : "198b708b-3496-4bb9-a942-d9a908816817", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201910110\"\r\n}", - "x-ms-client-request-id" : "3abb2d7b-d0e2-41ff-a184-62cbe0396691", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4dffe217-a280-49a1-a403-91a28a453cbf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "785f97d4-d8f0-4ae0-b1a6-a7ec9f585837", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11253,Microsoft.Compute/GetVMImageFromLocation30Min;72253", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:785f97d4-d8f0-4ae0-b1a6-a7ec9f585837", - "Expires" : "-1", - "x-ms-request-id" : "b465e625-3e86-42dd-8fc8-48f914d23a91", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201911130\"\r\n}", - "x-ms-client-request-id" : "4dffe217-a280-49a1-a403-91a28a453cbf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201907080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5370798-b037-48fd-9d99-720abc5828ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6337249b-f25a-4de2-9c3a-3d9507000e5e", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11250,Microsoft.Compute/GetVMImageFromLocation30Min;72250", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:6337249b-f25a-4de2-9c3a-3d9507000e5e", - "Expires" : "-1", - "x-ms-request-id" : "d317acc7-7895-49f6-99c7-ed7b1cd58988", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201907080\"\r\n}", - "x-ms-client-request-id" : "d5370798-b037-48fd-9d99-720abc5828ca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202002040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f18a8d0-da62-4398-b49f-73876a97cda4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a4ed730-56ab-4f3a-a42b-603c2a6cd06e", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11249,Microsoft.Compute/GetVMImageFromLocation30Min;72249", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:6a4ed730-56ab-4f3a-a42b-603c2a6cd06e", - "Expires" : "-1", - "x-ms-request-id" : "cd14b613-5842-4a6a-bb59-c5d29fbb0772", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202002040\"\r\n}", - "x-ms-client-request-id" : "1f18a8d0-da62-4398-b49f-73876a97cda4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fdd8d7b-99ce-45a0-ac9b-201404b62a83", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "067f20a1-de0d-4696-a26f-1641426d9d04", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11248,Microsoft.Compute/GetVMImageFromLocation30Min;72248", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:067f20a1-de0d-4696-a26f-1641426d9d04", - "Expires" : "-1", - "x-ms-request-id" : "fe08a5b8-6b69-47f1-be83-416005770206", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201912170\"\r\n}", - "x-ms-client-request-id" : "3fdd8d7b-99ce-45a0-ac9b-201404b62a83", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202001070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b41ce5e4-db74-4089-a1b4-12b0a983f2fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74cf86e4-c7fe-45e6-a672-0268abf01d1b", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11247,Microsoft.Compute/GetVMImageFromLocation30Min;72247", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:74cf86e4-c7fe-45e6-a672-0268abf01d1b", - "Expires" : "-1", - "x-ms-request-id" : "8f1d36b4-5dc1-4609-b711-6851874b6d42", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202001070\"\r\n}", - "x-ms-client-request-id" : "b41ce5e4-db74-4089-a1b4-12b0a983f2fd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202005290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bafdf40-7f9f-4100-8a97-5cfd4d0012b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "52f51a32-34f4-4844-89db-7cab1b66b890", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11246,Microsoft.Compute/GetVMImageFromLocation30Min;72246", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:52f51a32-34f4-4844-89db-7cab1b66b890", - "Expires" : "-1", - "x-ms-request-id" : "89f57bb6-b023-4a59-9530-2139355ee895", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202005290\"\r\n}", - "x-ms-client-request-id" : "7bafdf40-7f9f-4100-8a97-5cfd4d0012b0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202002120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecaf53a0-c7ea-4802-961e-3cefddd1d501", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2306cf84-336f-4e6a-a979-1dd3009d652c", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11244,Microsoft.Compute/GetVMImageFromLocation30Min;72244", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:2306cf84-336f-4e6a-a979-1dd3009d652c", - "Expires" : "-1", - "x-ms-request-id" : "98166b6e-b850-4eae-97bf-0c188f99daa5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202002120\"\r\n}", - "x-ms-client-request-id" : "ecaf53a0-c7ea-4802-961e-3cefddd1d501", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202001290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d955b532-80cc-4e63-a6d9-59b460f99817", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "65f4b686-a29d-40e8-ba5f-5adbf4827f59", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11245,Microsoft.Compute/GetVMImageFromLocation30Min;72245", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:65f4b686-a29d-40e8-ba5f-5adbf4827f59", - "Expires" : "-1", - "x-ms-request-id" : "a8722aaf-21d9-4848-94eb-742539b426f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202001290\"\r\n}", - "x-ms-client-request-id" : "d955b532-80cc-4e63-a6d9-59b460f99817", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201810230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d989090-98b5-4d16-b5e2-dcc99e2f5c84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "250228cd-1dc6-456d-ab25-6e836b2dd18f", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11243,Microsoft.Compute/GetVMImageFromLocation30Min;72243", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:250228cd-1dc6-456d-ab25-6e836b2dd18f", - "Expires" : "-1", - "x-ms-request-id" : "062fbf5a-4cab-49a8-a01d-c239301421f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201810230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201810230\"\r\n}", - "x-ms-client-request-id" : "7d989090-98b5-4d16-b5e2-dcc99e2f5c84", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201810300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34809511-67e1-445e-b94a-d5b48cf44627", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8fc25f8b-589f-4629-83cd-010e7b359099", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11241,Microsoft.Compute/GetVMImageFromLocation30Min;72241", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:8fc25f8b-589f-4629-83cd-010e7b359099", - "Expires" : "-1", - "x-ms-request-id" : "dbe008c3-a0a5-481a-bbe2-5806951b48bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201810300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201810300\"\r\n}", - "x-ms-client-request-id" : "34809511-67e1-445e-b94a-d5b48cf44627", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201902070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aeef37b2-d943-4caa-ba09-00a8475fa876", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9cc1d9d8-c670-46f4-a65d-b87575d047ef", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11239,Microsoft.Compute/GetVMImageFromLocation30Min;72239", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:9cc1d9d8-c670-46f4-a65d-b87575d047ef", - "Expires" : "-1", - "x-ms-request-id" : "2ea1f1a4-d881-4ace-9e17-6769f4ae40ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201902070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201902070\"\r\n}", - "x-ms-client-request-id" : "aeef37b2-d943-4caa-ba09-00a8475fa876", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201712080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62564d25-40a3-48c5-9cde-d60081d6434f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb21dbff-07e6-4d71-a5d7-d6f208d67887", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11242,Microsoft.Compute/GetVMImageFromLocation30Min;72242", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:cb21dbff-07e6-4d71-a5d7-d6f208d67887", - "Expires" : "-1", - "x-ms-request-id" : "5e371bde-c1c4-4744-89e5-c8c3c267edc2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201712080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201712080\"\r\n}", - "x-ms-client-request-id" : "62564d25-40a3-48c5-9cde-d60081d6434f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fb867bd-f4ff-4e4e-b417-c56abc31cac2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2f29d46-30ba-4267-b34b-d8d7ec4e313b", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11240,Microsoft.Compute/GetVMImageFromLocation30Min;72240", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:e2f29d46-30ba-4267-b34b-d8d7ec4e313b", - "Expires" : "-1", - "x-ms-request-id" : "e7f0081c-90d6-4edd-b242-b05d95782543", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909180\"\r\n}", - "x-ms-client-request-id" : "7fb867bd-f4ff-4e4e-b417-c56abc31cac2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202004070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0341f121-efb6-43be-9135-2ca1c689a8a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49dbd585-1a0b-455c-b863-241d3f45e12f", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11237,Microsoft.Compute/GetVMImageFromLocation30Min;72237", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:49dbd585-1a0b-455c-b863-241d3f45e12f", - "Expires" : "-1", - "x-ms-request-id" : "cd01d2a7-db90-4f5a-b51c-43886a941f42", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202004070\"\r\n}", - "x-ms-client-request-id" : "0341f121-efb6-43be-9135-2ca1c689a8a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201905303?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39efe7d0-8dc1-480d-90cb-3d5c6874657a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b357456-077d-474b-b314-f367b61d9761", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11238,Microsoft.Compute/GetVMImageFromLocation30Min;72238", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:6b357456-077d-474b-b314-f367b61d9761", - "Expires" : "-1", - "x-ms-request-id" : "3609a1dd-282c-45ee-8c83-db92226708b2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905303\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201905303\"\r\n}", - "x-ms-client-request-id" : "39efe7d0-8dc1-480d-90cb-3d5c6874657a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201906050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0218ca2-ab2f-4e21-873b-f8341c696c26", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adf942c6-8a92-41c7-bf21-f89eaa66b0c4", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11235,Microsoft.Compute/GetVMImageFromLocation30Min;72235", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:adf942c6-8a92-41c7-bf21-f89eaa66b0c4", - "Expires" : "-1", - "x-ms-request-id" : "0b8face8-31fc-457a-aa2b-a3953d974c96", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906050\"\r\n}", - "x-ms-client-request-id" : "f0218ca2-ab2f-4e21-873b-f8341c696c26", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202004010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fefc4f3-1149-41d0-9194-b13912364e89", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5db47a70-cab9-464c-9bff-e65f7c531d77", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11236,Microsoft.Compute/GetVMImageFromLocation30Min;72236", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:5db47a70-cab9-464c-9bff-e65f7c531d77", - "Expires" : "-1", - "x-ms-request-id" : "7ed3cc5b-db3b-488a-9a5e-e78f0fb2d5d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202004010\"\r\n}", - "x-ms-client-request-id" : "7fefc4f3-1149-41d0-9194-b13912364e89", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bc09e28-a0ab-46f3-9e61-0df18afa58d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9493e90f-d166-4846-ac38-9258c001d0a9", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11234,Microsoft.Compute/GetVMImageFromLocation30Min;72234", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:9493e90f-d166-4846-ac38-9258c001d0a9", - "Expires" : "-1", - "x-ms-request-id" : "0758a5dc-4655-4e83-8300-2346c6e63e3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202004290\"\r\n}", - "x-ms-client-request-id" : "8bc09e28-a0ab-46f3-9e61-0df18afa58d3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201809120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3205852c-6704-4ad4-bcb6-01e5170c90f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f86eecf6-6186-414b-a9c6-d147e2a6f171", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11233,Microsoft.Compute/GetVMImageFromLocation30Min;72233", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:f86eecf6-6186-414b-a9c6-d147e2a6f171", - "Expires" : "-1", - "x-ms-request-id" : "2e10ca7e-de38-4c72-824f-1ec693aaf3fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201809120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201809120\"\r\n}", - "x-ms-client-request-id" : "3205852c-6704-4ad4-bcb6-01e5170c90f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3250e758-8ae8-4422-8ce4-2e436043b3b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8fcfed46-eeb2-47a6-ab7e-00976e18eec6", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11232,Microsoft.Compute/GetVMImageFromLocation30Min;72232", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:8fcfed46-eeb2-47a6-ab7e-00976e18eec6", - "Expires" : "-1", - "x-ms-request-id" : "dbee5649-21fc-4dc8-a963-79f337479866", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201905140\"\r\n}", - "x-ms-client-request-id" : "3250e758-8ae8-4422-8ce4-2e436043b3b4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201909091?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c07a3ee2-7fae-4914-974d-025d28560f77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d254d43-c8bd-41f5-a481-7ab9cb7113a8", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11229,Microsoft.Compute/GetVMImageFromLocation30Min;72229", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:8d254d43-c8bd-41f5-a481-7ab9cb7113a8", - "Expires" : "-1", - "x-ms-request-id" : "b91b4305-2e33-4353-8fa3-6e925a40a459", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201909091\"\r\n}", - "x-ms-client-request-id" : "c07a3ee2-7fae-4914-974d-025d28560f77", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "89f174a3-4645-4eb5-8d9a-29701973c546", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3ca67d8-932b-4153-8eb0-895690679f20", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11230,Microsoft.Compute/GetVMImageFromLocation30Min;72230", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:c3ca67d8-932b-4153-8eb0-895690679f20", - "Expires" : "-1", - "x-ms-request-id" : "ae3d6d49-51ad-42b4-b6bb-54f52a20837c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202007080\"\r\n}", - "x-ms-client-request-id" : "89f174a3-4645-4eb5-8d9a-29701973c546", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202011120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7864a822-4377-4823-958a-07ba7e44173e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c94fa008-bcee-4427-8292-65a422edae29", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11231,Microsoft.Compute/GetVMImageFromLocation30Min;72231", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:c94fa008-bcee-4427-8292-65a422edae29", - "Expires" : "-1", - "x-ms-request-id" : "c11936c8-0773-4891-8c97-8d6688775316", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202011120\"\r\n}", - "x-ms-client-request-id" : "7864a822-4377-4823-958a-07ba7e44173e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aaf06006-1d91-4f32-a2b7-edfe07c0721a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4482eb1-d1b6-495c-955d-4686bc062bc0", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11227,Microsoft.Compute/GetVMImageFromLocation30Min;72227", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:f4482eb1-d1b6-495c-955d-4686bc062bc0", - "Expires" : "-1", - "x-ms-request-id" : "fe887bca-1809-4fb1-8564-cbff2a665591", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202012010\"\r\n}", - "x-ms-client-request-id" : "aaf06006-1d91-4f32-a2b7-edfe07c0721a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38338d30-775d-4ffa-861d-ed63b37906af", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c4fcb2c-e617-410e-a3f6-e5847362b9b2", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11224,Microsoft.Compute/GetVMImageFromLocation30Min;72224", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:1c4fcb2c-e617-410e-a3f6-e5847362b9b2", - "Expires" : "-1", - "x-ms-request-id" : "9da832cd-d778-441b-bc87-8dcf337b77f1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201808310\"\r\n}", - "x-ms-client-request-id" : "38338d30-775d-4ffa-861d-ed63b37906af", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f9cc59d-09d6-45d5-b405-e0e486682a8e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93db7c2a-fa1f-4b43-8065-d6b2285db176", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11223,Microsoft.Compute/GetVMImageFromLocation30Min;72223", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:93db7c2a-fa1f-4b43-8065-d6b2285db176", - "Expires" : "-1", - "x-ms-request-id" : "bbda903e-84a5-4cc7-8326-aad03518899b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202003170\"\r\n}", - "x-ms-client-request-id" : "2f9cc59d-09d6-45d5-b405-e0e486682a8e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202009220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55fadbf2-6740-416b-9e84-7285cbb7f773", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e76a6859-76bd-4dfc-a426-3bb4d91a9e32", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11228,Microsoft.Compute/GetVMImageFromLocation30Min;72228", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:e76a6859-76bd-4dfc-a426-3bb4d91a9e32", - "Expires" : "-1", - "x-ms-request-id" : "112566a1-c91c-478e-8b98-4ebfe870ed9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202009220\"\r\n}", - "x-ms-client-request-id" : "55fadbf2-6740-416b-9e84-7285cbb7f773", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202012030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "64cc9fc7-d44b-403e-a5fd-454eda039a88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "121a84b2-c6db-4e75-8e5d-06ff373562a1", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11225,Microsoft.Compute/GetVMImageFromLocation30Min;72225", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:121a84b2-c6db-4e75-8e5d-06ff373562a1", - "Expires" : "-1", - "x-ms-request-id" : "a6645cbf-91f0-4304-8c83-28bb7359f4b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202012030\"\r\n}", - "x-ms-client-request-id" : "64cc9fc7-d44b-403e-a5fd-454eda039a88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26e76f97-83a1-4108-8faf-3b04beab19b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c83c82e6-4ca7-44d2-b06f-863563ce1a95", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11222,Microsoft.Compute/GetVMImageFromLocation30Min;72222", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:c83c82e6-4ca7-44d2-b06f-863563ce1a95", - "Expires" : "-1", - "x-ms-request-id" : "f0f77456-4083-4638-b4c8-0b502d42b696", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202101120\"\r\n}", - "x-ms-client-request-id" : "26e76f97-83a1-4108-8faf-3b04beab19b6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202009040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "633ed996-23e4-4ce6-ad7b-aa2117653479", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1387c82-379e-4aff-887e-eff707027c56", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11226,Microsoft.Compute/GetVMImageFromLocation30Min;72226", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:f1387c82-379e-4aff-887e-eff707027c56", - "Expires" : "-1", - "x-ms-request-id" : "dc332782-33d3-4422-b56a-4dbf3b63450b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202009040\"\r\n}", - "x-ms-client-request-id" : "633ed996-23e4-4ce6-ad7b-aa2117653479", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a1c5620-e51f-476c-956d-d760f260cb50", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f28ffc8f-ac5a-4f06-88f5-94c620dee90d", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11221,Microsoft.Compute/GetVMImageFromLocation30Min;72221", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:f28ffc8f-ac5a-4f06-88f5-94c620dee90d", - "Expires" : "-1", - "x-ms-request-id" : "9d471faf-c41d-4c0c-88ce-2d276c2f7a11", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "0a1c5620-e51f-476c-956d-d760f260cb50", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc78e64d-b5ac-4bc3-a3dc-bcdce870b65d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "efbfdbda-89e2-4b80-acf8-f16b79603a78", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11220,Microsoft.Compute/GetVMImageFromLocation30Min;72220", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:efbfdbda-89e2-4b80-acf8-f16b79603a78", - "Expires" : "-1", - "x-ms-request-id" : "66406460-713b-44d1-9096-f33dcab9f0dc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202007290\"\r\n}", - "x-ms-client-request-id" : "dc78e64d-b5ac-4bc3-a3dc-bcdce870b65d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202102020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aa73e10-b6d9-43c6-91d9-16eeb35ea625", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d037e27d-7d4d-4e6c-b2d1-c5288fce39c7", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11219,Microsoft.Compute/GetVMImageFromLocation30Min;72219", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:d037e27d-7d4d-4e6c-b2d1-c5288fce39c7", - "Expires" : "-1", - "x-ms-request-id" : "bc5de8af-508e-4e1b-8136-c3c35517b29d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202102020\"\r\n}", - "x-ms-client-request-id" : "6aa73e10-b6d9-43c6-91d9-16eeb35ea625", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202102260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a7afff7-5aea-450d-a61a-5a432241bed9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "007e9175-7fdc-442f-83f8-50b56146c9a2", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11218,Microsoft.Compute/GetVMImageFromLocation30Min;72218", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:007e9175-7fdc-442f-83f8-50b56146c9a2", - "Expires" : "-1", - "x-ms-request-id" : "79ce1d36-5287-4595-8250-8e54e35cca06", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202102260\"\r\n}", - "x-ms-client-request-id" : "1a7afff7-5aea-450d-a61a-5a432241bed9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202103291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5dd5135a-216d-4e1f-8492-e8811236daf4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1af4634-1960-45a5-b093-6d1f2db466d0", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11217,Microsoft.Compute/GetVMImageFromLocation30Min;72217", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:b1af4634-1960-45a5-b093-6d1f2db466d0", - "Expires" : "-1", - "x-ms-request-id" : "4b5be885-821b-4b5d-b9bc-e446ff82deeb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202103291\"\r\n}", - "x-ms-client-request-id" : "5dd5135a-216d-4e1f-8492-e8811236daf4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202104140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f774415-86aa-4157-8959-8a7ed05f5919", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c5398b9-175b-4d8d-b430-79778483efbb", - "Date" : "Tue, 24 May 2022 13:02:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11216,Microsoft.Compute/GetVMImageFromLocation30Min;72216", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:5c5398b9-175b-4d8d-b430-79778483efbb", - "Expires" : "-1", - "x-ms-request-id" : "3415ce9d-45e7-478b-a3f6-777c0dc0e7a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202104140\"\r\n}", - "x-ms-client-request-id" : "8f774415-86aa-4157-8959-8a7ed05f5919", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cea7346-8d3f-48d6-bf89-aa948ac3dc68", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c30f673-e08b-4950-a68c-afa6d1897c77", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11214,Microsoft.Compute/GetVMImageFromLocation30Min;72214", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:4c30f673-e08b-4950-a68c-afa6d1897c77", - "Expires" : "-1", - "x-ms-request-id" : "e67b0400-38de-4c9e-ab04-360780052f2f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "2cea7346-8d3f-48d6-bf89-aa948ac3dc68", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67d1351d-d16f-403d-b572-c76b3507c99c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bdbefdf7-559c-4e08-b790-a5c22311b3f9", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11213,Microsoft.Compute/GetVMImageFromLocation30Min;72213", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:bdbefdf7-559c-4e08-b790-a5c22311b3f9", - "Expires" : "-1", - "x-ms-request-id" : "372af078-7df2-45e3-b65d-8c5d5d9bdfd5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "67d1351d-d16f-403d-b572-c76b3507c99c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f285a227-1c3d-4dd1-ad95-3e9ad129c67c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98c4aa10-11e0-4274-bc24-784d544cf699", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11212,Microsoft.Compute/GetVMImageFromLocation30Min;72212", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:98c4aa10-11e0-4274-bc24-784d544cf699", - "Expires" : "-1", - "x-ms-request-id" : "b4e4ffd5-5e26-46c7-9af9-0ff0a8d681b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202012100\"\r\n}", - "x-ms-client-request-id" : "f285a227-1c3d-4dd1-ad95-3e9ad129c67c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50a66b0e-51bf-49d3-9704-3d6a0d498963", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b62e2da0-b23d-4050-a222-05f94b1cef02", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11215,Microsoft.Compute/GetVMImageFromLocation30Min;72215", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:b62e2da0-b23d-4050-a222-05f94b1cef02", - "Expires" : "-1", - "x-ms-request-id" : "79811c70-a07f-424d-b719-d1c719a69328", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202010140\"\r\n}", - "x-ms-client-request-id" : "50a66b0e-51bf-49d3-9704-3d6a0d498963", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201908140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd8146ab-f65a-481f-86eb-0742b8ad4252", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f85ce271-36db-499b-ba80-f8f339f830c2", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11211,Microsoft.Compute/GetVMImageFromLocation30Min;72211", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:f85ce271-36db-499b-ba80-f8f339f830c2", - "Expires" : "-1", - "x-ms-request-id" : "feecfb98-e2f5-4f69-bd11-36e7afe64019", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201908140\"\r\n}", - "x-ms-client-request-id" : "cd8146ab-f65a-481f-86eb-0742b8ad4252", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201907241?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "79fc1823-ccd4-4c56-8c53-742d8e461bed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14acacf3-e1d3-407b-a868-18173054fcf9", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11210,Microsoft.Compute/GetVMImageFromLocation30Min;72210", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:14acacf3-e1d3-407b-a868-18173054fcf9", - "Expires" : "-1", - "x-ms-request-id" : "94df3d2e-e931-4168-817e-b34203bf3583", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201907241\"\r\n}", - "x-ms-client-request-id" : "79fc1823-ccd4-4c56-8c53-742d8e461bed", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201906280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8a579d4-90e5-44c6-9d5c-7df66e43ea06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9fd3c6b-d63d-4f91-b173-953b580f1a34", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11209,Microsoft.Compute/GetVMImageFromLocation30Min;72209", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130220Z:a9fd3c6b-d63d-4f91-b173-953b580f1a34", - "Expires" : "-1", - "x-ms-request-id" : "2fb373e1-039f-4ad3-b069-27a32f7977ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906280\"\r\n}", - "x-ms-client-request-id" : "b8a579d4-90e5-44c6-9d5c-7df66e43ea06", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202002181?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b98f1b1-9b36-4f9e-9dda-89aeaf18f800", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "909950e3-a221-418c-9aad-ffc77dad60f1", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11208,Microsoft.Compute/GetVMImageFromLocation30Min;72208", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:909950e3-a221-418c-9aad-ffc77dad60f1", - "Expires" : "-1", - "x-ms-request-id" : "014bbcf3-cd05-43cb-a901-1f6a979cd143", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202002181\"\r\n}", - "x-ms-client-request-id" : "4b98f1b1-9b36-4f9e-9dda-89aeaf18f800", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201906252?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0c691eb-8fa8-4c92-990a-00b284f0f3bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8add86d3-1f41-45d6-9ca3-0d293ee35d11", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11207,Microsoft.Compute/GetVMImageFromLocation30Min;72207", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:8add86d3-1f41-45d6-9ca3-0d293ee35d11", - "Expires" : "-1", - "x-ms-request-id" : "62cc896a-5fad-4dcb-96ed-5177720865af", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906252\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201906252\"\r\n}", - "x-ms-client-request-id" : "b0c691eb-8fa8-4c92-990a-00b284f0f3bc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "abbcb10f-71fe-42cb-be3a-9374a1739266", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a623363-f841-4fd7-9fd4-e81492a1f186", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11206,Microsoft.Compute/GetVMImageFromLocation30Min;72206", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:4a623363-f841-4fd7-9fd4-e81492a1f186", - "Expires" : "-1", - "x-ms-request-id" : "7f593d84-815a-4aff-abfc-b510d90815f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202006100\"\r\n}", - "x-ms-client-request-id" : "abbcb10f-71fe-42cb-be3a-9374a1739266", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70fe1bf0-1712-43d0-a4ca-70183c5efc73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "574c27b3-aaa1-4081-99a9-17c082b1b1f6", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11205,Microsoft.Compute/GetVMImageFromLocation30Min;72205", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:574c27b3-aaa1-4081-99a9-17c082b1b1f6", - "Expires" : "-1", - "x-ms-request-id" : "4c8098f2-4404-4911-a0ec-8ce963227a15", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202009080\"\r\n}", - "x-ms-client-request-id" : "70fe1bf0-1712-43d0-a4ca-70183c5efc73", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202008070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d36e751d-dc44-48bc-8999-9d347a60216c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5355a92-b167-4219-a7d8-6e40adc9bfca", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11204,Microsoft.Compute/GetVMImageFromLocation30Min;72204", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:f5355a92-b167-4219-a7d8-6e40adc9bfca", - "Expires" : "-1", - "x-ms-request-id" : "2b2c33f3-c942-43a7-84f2-87fdf09f6c57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202008070\"\r\n}", - "x-ms-client-request-id" : "d36e751d-dc44-48bc-8999-9d347a60216c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "276f1815-31d9-421f-a24b-98f11b420a4d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ff79fc8-c0e1-4939-b427-7dfe5b213a54", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11202,Microsoft.Compute/GetVMImageFromLocation30Min;72202", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:4ff79fc8-c0e1-4939-b427-7dfe5b213a54", - "Expires" : "-1", - "x-ms-request-id" : "a9fca080-5f39-46cb-8f45-b65e2ff6f715", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "276f1815-31d9-421f-a24b-98f11b420a4d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "17ab4160-77c1-4b93-ad5c-326cfbabdfdc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fdc2196-615d-4858-99c8-c66af709c01a", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11201,Microsoft.Compute/GetVMImageFromLocation30Min;72201", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:7fdc2196-615d-4858-99c8-c66af709c01a", - "Expires" : "-1", - "x-ms-request-id" : "f3451639-03e8-4426-bf8a-0239a5ec3951", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202103160\"\r\n}", - "x-ms-client-request-id" : "17ab4160-77c1-4b93-ad5c-326cfbabdfdc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007161?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba08d9ed-cd90-4929-8bfb-3e2ba623bb9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49f689f7-e205-4f16-9894-9d592fd56974", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11203,Microsoft.Compute/GetVMImageFromLocation30Min;72203", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:49f689f7-e205-4f16-9894-9d592fd56974", - "Expires" : "-1", - "x-ms-request-id" : "0908fe6a-1ca5-4518-9dea-ddba080c1d67", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202007161\"\r\n}", - "x-ms-client-request-id" : "ba08d9ed-cd90-4929-8bfb-3e2ba623bb9c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2c83289-330c-4d0f-95f7-7064e613ecf1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7d064ca7-817b-4516-83c2-3ff3f1eae62c", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11200,Microsoft.Compute/GetVMImageFromLocation30Min;72200", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:7d064ca7-817b-4516-83c2-3ff3f1eae62c", - "Expires" : "-1", - "x-ms-request-id" : "bba9e6da-6f7b-4259-b768-b42d30a8dec7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "a2c83289-330c-4d0f-95f7-7064e613ecf1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5c99468-bce5-47d4-8a3d-8ac406d0f8bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "19139", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88fda83e-6e06-449f-bca8-184ac3e8890f", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15841,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:88fda83e-6e06-449f-bca8-184ac3e8890f", - "Expires" : "-1", - "x-ms-request-id" : "10616808-b51e-4be0-a440-6eb2b8702d33", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609071\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201611150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201802220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201802220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201901221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201902120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201902120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201903130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201903130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201905210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201906170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906252\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201906252\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201906280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201908220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201909030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201909110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202001070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202001290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002181\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202005290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202007161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202008070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202009040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202009220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202011120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202012030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202102020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202102260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202103291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202109280\"\r\n }\r\n]", - "x-ms-client-request-id" : "b5c99468-bce5-47d4-8a3d-8ac406d0f8bf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a422b2a-953d-402a-8d75-bee1d13c564c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04e70695-9124-4180-a032-daffd82e134e", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11199,Microsoft.Compute/GetVMImageFromLocation30Min;72199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:04e70695-9124-4180-a032-daffd82e134e", - "Expires" : "-1", - "x-ms-request-id" : "e9aad9fe-2b87-4292-9e76-e3c71dc5e2fb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608250\"\r\n}", - "x-ms-client-request-id" : "3a422b2a-953d-402a-8d75-bee1d13c564c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b5e8ff0-033b-4b9b-8103-5384163a7f46", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "90e55229-e299-44dd-97d2-958ad9fe3baf", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11198,Microsoft.Compute/GetVMImageFromLocation30Min;72198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:90e55229-e299-44dd-97d2-958ad9fe3baf", - "Expires" : "-1", - "x-ms-request-id" : "82d6e9c0-bfb5-46b1-9b32-b768367ac413", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610130\"\r\n}", - "x-ms-client-request-id" : "3b5e8ff0-033b-4b9b-8103-5384163a7f46", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609071?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac9a19ba-4f2b-455d-a7bf-aaf28c7c0d32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "baf94737-c28d-44c8-92b7-e0e86246f8fa", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11196,Microsoft.Compute/GetVMImageFromLocation30Min;72196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:baf94737-c28d-44c8-92b7-e0e86246f8fa", - "Expires" : "-1", - "x-ms-request-id" : "40445dbb-77e2-4c59-9012-84a5a216fc09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609071\"\r\n}", - "x-ms-client-request-id" : "ac9a19ba-4f2b-455d-a7bf-aaf28c7c0d32", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75b788a9-1d9f-4496-a0a1-a4bf7e9c9453", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25aa75ac-19f1-4639-ad02-673cb78c6449", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11197,Microsoft.Compute/GetVMImageFromLocation30Min;72197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:25aa75ac-19f1-4639-ad02-673cb78c6449", - "Expires" : "-1", - "x-ms-request-id" : "83e8ecd5-f313-4f07-a5e9-dedf08158989", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609220\"\r\n}", - "x-ms-client-request-id" : "75b788a9-1d9f-4496-a0a1-a4bf7e9c9453", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03ea14dd-5268-4cb9-9172-49b111297029", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed1bb7f5-4d29-47e3-bd8d-e7d4b378d69f", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11194,Microsoft.Compute/GetVMImageFromLocation30Min;72194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:ed1bb7f5-4d29-47e3-bd8d-e7d4b378d69f", - "Expires" : "-1", - "x-ms-request-id" : "3172cb09-8b38-4c69-97af-45ab03b3385e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610110\"\r\n}", - "x-ms-client-request-id" : "03ea14dd-5268-4cb9-9172-49b111297029", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fc65a64-a20d-4040-96c1-2fbbdacec4a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c2756f6-d8a9-436b-84d3-bb20b85ac20b", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11193,Microsoft.Compute/GetVMImageFromLocation30Min;72193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:3c2756f6-d8a9-436b-84d3-bb20b85ac20b", - "Expires" : "-1", - "x-ms-request-id" : "ec01b37a-b937-45e7-8d9c-3911fe48265e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609210\"\r\n}", - "x-ms-client-request-id" : "3fc65a64-a20d-4040-96c1-2fbbdacec4a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201903130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3427b3d-e4fb-414f-8225-c1adedbcd297", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "549e03c4-c588-4150-9789-2cd07b5025e5", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11188,Microsoft.Compute/GetVMImageFromLocation30Min;72188", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:549e03c4-c588-4150-9789-2cd07b5025e5", - "Expires" : "-1", - "x-ms-request-id" : "06021e0b-df1f-494a-a0c8-0e9486965bb7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201903130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201903130\"\r\n}", - "x-ms-client-request-id" : "f3427b3d-e4fb-414f-8225-c1adedbcd297", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201906170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a62e91b-f9d0-49ba-9866-d1e361bb51b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "956df694-5ae2-4815-8f28-4b19779bb73d", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11189,Microsoft.Compute/GetVMImageFromLocation30Min;72189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:956df694-5ae2-4815-8f28-4b19779bb73d", - "Expires" : "-1", - "x-ms-request-id" : "25c09b73-97d0-46fe-bbe2-54f9b4fdd893", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201906170\"\r\n}", - "x-ms-client-request-id" : "2a62e91b-f9d0-49ba-9866-d1e361bb51b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201902120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5eb6e373-23ce-46d5-ac3a-23e140eefbab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0ebca38-af64-429f-b6f6-3094707c19d1", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11190,Microsoft.Compute/GetVMImageFromLocation30Min;72190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:f0ebca38-af64-429f-b6f6-3094707c19d1", - "Expires" : "-1", - "x-ms-request-id" : "31513c41-5b7e-4f3c-87a3-cf9851ce3ddf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201902120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201902120\"\r\n}", - "x-ms-client-request-id" : "5eb6e373-23ce-46d5-ac3a-23e140eefbab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "858ea0c8-c420-4d86-899c-e35b6dcb903b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55fed290-f471-4dd9-8820-af42b18325e1", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11186,Microsoft.Compute/GetVMImageFromLocation30Min;72186", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:55fed290-f471-4dd9-8820-af42b18325e1", - "Expires" : "-1", - "x-ms-request-id" : "909669a7-eb01-4147-a4d5-bc2943ffafb8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201905140\"\r\n}", - "x-ms-client-request-id" : "858ea0c8-c420-4d86-899c-e35b6dcb903b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201905210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d57f7e1-65d0-41b5-a8e1-c9074a089c56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c273edfe-1e80-49d4-b623-19b8cd6e2062", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11187,Microsoft.Compute/GetVMImageFromLocation30Min;72187", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:c273edfe-1e80-49d4-b623-19b8cd6e2062", - "Expires" : "-1", - "x-ms-request-id" : "13db971d-9da8-482d-85e0-374ed8cc502d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201905210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201905210\"\r\n}", - "x-ms-client-request-id" : "7d57f7e1-65d0-41b5-a8e1-c9074a089c56", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201906280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80426669-cdca-4646-81ff-4a205e8b7f4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a62d362-73bb-455e-a875-9b9be09a0228", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11185,Microsoft.Compute/GetVMImageFromLocation30Min;72185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:9a62d362-73bb-455e-a875-9b9be09a0228", - "Expires" : "-1", - "x-ms-request-id" : "d7a0fca6-ca73-46e0-95ec-63453b07be4c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201906280\"\r\n}", - "x-ms-client-request-id" : "80426669-cdca-4646-81ff-4a205e8b7f4a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bac59c91-079e-4206-9c2d-58d4ccdcbd98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0cc2cf76-ca11-4a9b-b7c8-6872ab7e6162", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11191,Microsoft.Compute/GetVMImageFromLocation30Min;72191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:0cc2cf76-ca11-4a9b-b7c8-6872ab7e6162", - "Expires" : "-1", - "x-ms-request-id" : "b8d3ab4f-f23d-47c2-97c5-741ac82cd07f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201808140\"\r\n}", - "x-ms-client-request-id" : "bac59c91-079e-4206-9c2d-58d4ccdcbd98", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201909110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5772d81-3863-47ba-ab16-5d5e1ca3dbf9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fae69a13-3b39-40f2-b36c-ef922cc593d6", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11184,Microsoft.Compute/GetVMImageFromLocation30Min;72184", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:fae69a13-3b39-40f2-b36c-ef922cc593d6", - "Expires" : "-1", - "x-ms-request-id" : "9b8508d5-990d-46c6-a4e4-3dc52d3638f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201909110\"\r\n}", - "x-ms-client-request-id" : "d5772d81-3863-47ba-ab16-5d5e1ca3dbf9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "447704f8-af5c-4a0d-92eb-139ee7eefa18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2573b957-e5d2-490e-8d72-f410ecad01b3", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11182,Microsoft.Compute/GetVMImageFromLocation30Min;72182", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:2573b957-e5d2-490e-8d72-f410ecad01b3", - "Expires" : "-1", - "x-ms-request-id" : "6e58ec3e-f229-43c3-aeed-de140a2b18c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201805220\"\r\n}", - "x-ms-client-request-id" : "447704f8-af5c-4a0d-92eb-139ee7eefa18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2231c924-0258-4371-b619-4f9f017c2bd4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1eb342e-028b-400d-aeb1-a9c4a833ee39", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11195,Microsoft.Compute/GetVMImageFromLocation30Min;72195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:a1eb342e-028b-400d-aeb1-a9c4a833ee39", - "Expires" : "-1", - "x-ms-request-id" : "dec4cba3-5489-4dfc-9a88-4f489f931353", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608300\"\r\n}", - "x-ms-client-request-id" : "2231c924-0258-4371-b619-4f9f017c2bd4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "271741c9-2b25-42c6-90aa-b78a0ed83382", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e455ca0-8014-4509-b5c9-a4e203741a95", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11192,Microsoft.Compute/GetVMImageFromLocation30Min;72192", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:0e455ca0-8014-4509-b5c9-a4e203741a95", - "Expires" : "-1", - "x-ms-request-id" : "813854de-41a8-4f92-91ab-f4db805e5126", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610200\"\r\n}", - "x-ms-client-request-id" : "271741c9-2b25-42c6-90aa-b78a0ed83382", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201909030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7041d0fa-b978-496c-ae25-7b9c9e651955", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cc7604b0-1603-4a4e-892c-5960e0fe7412", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11178,Microsoft.Compute/GetVMImageFromLocation30Min;72178", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:cc7604b0-1603-4a4e-892c-5960e0fe7412", - "Expires" : "-1", - "x-ms-request-id" : "5fa80fa4-da2e-4fd6-b755-9170a2c9a204", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201909030\"\r\n}", - "x-ms-client-request-id" : "7041d0fa-b978-496c-ae25-7b9c9e651955", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5420264-6d9f-48d2-88be-03fbb345fa61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e1a24cf-3d6b-46fb-bbb3-54b9d161fb6c", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11179,Microsoft.Compute/GetVMImageFromLocation30Min;72179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:3e1a24cf-3d6b-46fb-bbb3-54b9d161fb6c", - "Expires" : "-1", - "x-ms-request-id" : "0454044a-a41d-4f3f-8917-474235d2bb6c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201909180\"\r\n}", - "x-ms-client-request-id" : "c5420264-6d9f-48d2-88be-03fbb345fa61", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201910110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3fcde75-ed1b-48e9-8b32-c88629f10e4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77ca89f9-8e15-43bb-a59d-b3b89c4ceb6c", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11180,Microsoft.Compute/GetVMImageFromLocation30Min;72180", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:77ca89f9-8e15-43bb-a59d-b3b89c4ceb6c", - "Expires" : "-1", - "x-ms-request-id" : "2dcdf64b-9816-4708-bada-fb10c6ff905e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910110\"\r\n}", - "x-ms-client-request-id" : "a3fcde75-ed1b-48e9-8b32-c88629f10e4e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201912110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0839d39-c04d-4d48-9be9-2430d3d665d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "305037c8-a7f6-4766-ba25-04c7a4bc38ed", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11176,Microsoft.Compute/GetVMImageFromLocation30Min;72176", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:305037c8-a7f6-4766-ba25-04c7a4bc38ed", - "Expires" : "-1", - "x-ms-request-id" : "c5b096cf-5f8e-41db-a5f0-28752b15ea74", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912110\"\r\n}", - "x-ms-client-request-id" : "c0839d39-c04d-4d48-9be9-2430d3d665d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201908220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1cb97328-84c4-4ee7-bfc9-15cf7cfaa80e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f93ac44c-eac8-4852-a665-50e23d4de5e0", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11175,Microsoft.Compute/GetVMImageFromLocation30Min;72175", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:f93ac44c-eac8-4852-a665-50e23d4de5e0", - "Expires" : "-1", - "x-ms-request-id" : "d95289cd-9334-40df-87e4-de16acf71117", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201908220\"\r\n}", - "x-ms-client-request-id" : "1cb97328-84c4-4ee7-bfc9-15cf7cfaa80e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201910310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d2e1d41-1f86-488b-ab4a-d8748ee44dfb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a716aa0d-bf85-4806-96e8-e321fb10dd91", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11174,Microsoft.Compute/GetVMImageFromLocation30Min;72174", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:a716aa0d-bf85-4806-96e8-e321fb10dd91", - "Expires" : "-1", - "x-ms-request-id" : "ca9a26f2-d934-460c-979c-a35968548071", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201910310\"\r\n}", - "x-ms-client-request-id" : "5d2e1d41-1f86-488b-ab4a-d8748ee44dfb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201802220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e962bf88-f655-4c9f-999f-2088af53272c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e10b0d0-e0dd-4d03-a398-9ffd2ad18e6e", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11165,Microsoft.Compute/GetVMImageFromLocation30Min;72165", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:0e10b0d0-e0dd-4d03-a398-9ffd2ad18e6e", - "Expires" : "-1", - "x-ms-request-id" : "6f661fa4-54f9-41fb-9de0-254dbabb6489", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201802220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201802220\"\r\n}", - "x-ms-client-request-id" : "e962bf88-f655-4c9f-999f-2088af53272c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09b389cb-15e4-49a1-8143-e7c2d0a7fb5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c85620d-b7ee-4a45-bcaf-2d5a4f1da869", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11164,Microsoft.Compute/GetVMImageFromLocation30Min;72164", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:6c85620d-b7ee-4a45-bcaf-2d5a4f1da869", - "Expires" : "-1", - "x-ms-request-id" : "d3e55df3-49d6-47f1-b611-94891632bd36", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201911130\"\r\n}", - "x-ms-client-request-id" : "09b389cb-15e4-49a1-8143-e7c2d0a7fb5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06c0c5f9-98e7-497e-9ef4-d97e35235ac5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf5a2856-8c84-427e-bc23-49454faa9933", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11181,Microsoft.Compute/GetVMImageFromLocation30Min;72181", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:cf5a2856-8c84-427e-bc23-49454faa9933", - "Expires" : "-1", - "x-ms-request-id" : "509ed41a-7d60-4bba-86cb-454dc83df580", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201912170\"\r\n}", - "x-ms-client-request-id" : "06c0c5f9-98e7-497e-9ef4-d97e35235ac5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202001290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5943884-714b-4a3a-b050-076a372f35c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47535fed-db5f-4509-8101-5aada51980b9", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11183,Microsoft.Compute/GetVMImageFromLocation30Min;72183", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:47535fed-db5f-4509-8101-5aada51980b9", - "Expires" : "-1", - "x-ms-request-id" : "0783a771-0c5d-4c3b-8dab-02331524c49e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202001290\"\r\n}", - "x-ms-client-request-id" : "b5943884-714b-4a3a-b050-076a372f35c6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202004070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59ef2c47-5c6d-4a6a-8158-e7fbe4a7f268", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84bc7977-75d7-47e6-ba0d-ed6cf3f99c2e", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11172,Microsoft.Compute/GetVMImageFromLocation30Min;72172", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:84bc7977-75d7-47e6-ba0d-ed6cf3f99c2e", - "Expires" : "-1", - "x-ms-request-id" : "28887947-cbe1-45b4-adc9-1a2ef2a3d729", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004070\"\r\n}", - "x-ms-client-request-id" : "59ef2c47-5c6d-4a6a-8158-e7fbe4a7f268", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202005290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c1e1475-9800-4303-9f05-aa5b7b228ffe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55c414fa-742c-4049-81ee-816db0f1fe4e", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11170,Microsoft.Compute/GetVMImageFromLocation30Min;72170", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:55c414fa-742c-4049-81ee-816db0f1fe4e", - "Expires" : "-1", - "x-ms-request-id" : "1d0916d2-3c5e-4d97-8768-ae8bae884804", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202005290\"\r\n}", - "x-ms-client-request-id" : "2c1e1475-9800-4303-9f05-aa5b7b228ffe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202008070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "772c9ced-5a91-4193-b3a8-1d5c12604cfd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b90dbc4b-91be-42fd-8b97-7e8b00e1fc1b", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11169,Microsoft.Compute/GetVMImageFromLocation30Min;72169", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:b90dbc4b-91be-42fd-8b97-7e8b00e1fc1b", - "Expires" : "-1", - "x-ms-request-id" : "cdc4aae5-d6de-46a8-a027-ea55f5b597e2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202008070\"\r\n}", - "x-ms-client-request-id" : "772c9ced-5a91-4193-b3a8-1d5c12604cfd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e43d9a75-a4f1-477e-a8e1-167778d1a963", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e4aeae4-4a74-466f-84ea-6c730c70c45f", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11167,Microsoft.Compute/GetVMImageFromLocation30Min;72167", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:6e4aeae4-4a74-466f-84ea-6c730c70c45f", - "Expires" : "-1", - "x-ms-request-id" : "cf844109-b9a0-40f4-8915-c28fa5bf78f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202009080\"\r\n}", - "x-ms-client-request-id" : "e43d9a75-a4f1-477e-a8e1-167778d1a963", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202009220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e24493e8-8a76-4297-8eb7-3d58aa7f4640", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f333678-fb54-4889-a0fc-dc24ad542fde", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11163,Microsoft.Compute/GetVMImageFromLocation30Min;72163", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:8f333678-fb54-4889-a0fc-dc24ad542fde", - "Expires" : "-1", - "x-ms-request-id" : "09dbd00e-16aa-4d44-b13c-4c18b5cf1b1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202009220\"\r\n}", - "x-ms-client-request-id" : "e24493e8-8a76-4297-8eb7-3d58aa7f4640", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202011120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "179bc171-b2ee-4d37-b890-7ca1b8c3da2c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd8e1161-592c-4a18-9aae-e98769c9ca15", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11161,Microsoft.Compute/GetVMImageFromLocation30Min;72161", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:dd8e1161-592c-4a18-9aae-e98769c9ca15", - "Expires" : "-1", - "x-ms-request-id" : "9e67e70d-305b-4d13-b467-395b39c92ed0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202011120\"\r\n}", - "x-ms-client-request-id" : "179bc171-b2ee-4d37-b890-7ca1b8c3da2c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202012030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "709af4f0-16e1-4324-bfcb-9acd78657ed5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a940d69e-9fc8-4a7f-8a4c-4c98524237d6", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11159,Microsoft.Compute/GetVMImageFromLocation30Min;72159", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:a940d69e-9fc8-4a7f-8a4c-4c98524237d6", - "Expires" : "-1", - "x-ms-request-id" : "68d31191-9af6-4a27-b0ed-84facc2f8618", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202012030\"\r\n}", - "x-ms-client-request-id" : "709af4f0-16e1-4324-bfcb-9acd78657ed5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab163a07-4f35-40e2-853f-4fc34a238c01", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97e1ece6-a4bf-453a-9db6-5cc27f97396d", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11160,Microsoft.Compute/GetVMImageFromLocation30Min;72160", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:97e1ece6-a4bf-453a-9db6-5cc27f97396d", - "Expires" : "-1", - "x-ms-request-id" : "e52e57cf-564d-4d23-b4f1-3f58190a20e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101120\"\r\n}", - "x-ms-client-request-id" : "ab163a07-4f35-40e2-853f-4fc34a238c01", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202001070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af76f598-79f3-4fe8-bf84-3f2d0fd7d7f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e64670a0-0bdc-43b2-a06a-7bfefb6f4400", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11177,Microsoft.Compute/GetVMImageFromLocation30Min;72177", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:e64670a0-0bdc-43b2-a06a-7bfefb6f4400", - "Expires" : "-1", - "x-ms-request-id" : "9f8c70aa-c303-4d0b-b6e3-53f7856de366", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202001070\"\r\n}", - "x-ms-client-request-id" : "af76f598-79f3-4fe8-bf84-3f2d0fd7d7f9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b22134c4-38fa-48ec-a9e6-0c863af42c7f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26b9e29a-9e65-4d5f-81b8-34cf6ecf6848", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11171,Microsoft.Compute/GetVMImageFromLocation30Min;72171", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:26b9e29a-9e65-4d5f-81b8-34cf6ecf6848", - "Expires" : "-1", - "x-ms-request-id" : "95e9ce1f-f166-436b-bbbe-0f475d6b5dce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202003170\"\r\n}", - "x-ms-client-request-id" : "b22134c4-38fa-48ec-a9e6-0c863af42c7f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202004010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38829b30-e7d8-4664-9d01-d51f9364336d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1598f332-dad4-4a19-8f3d-d93c2e6d6865", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11173,Microsoft.Compute/GetVMImageFromLocation30Min;72173", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:1598f332-dad4-4a19-8f3d-d93c2e6d6865", - "Expires" : "-1", - "x-ms-request-id" : "b232c76a-9a24-401c-92ae-b6011c26cd95", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004010\"\r\n}", - "x-ms-client-request-id" : "38829b30-e7d8-4664-9d01-d51f9364336d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb64f9d2-adb9-4029-aecd-43ca8bb1d7a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a1bab60-d856-49e9-9913-358877d8f0ee", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11156,Microsoft.Compute/GetVMImageFromLocation30Min;72156", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:9a1bab60-d856-49e9-9913-358877d8f0ee", - "Expires" : "-1", - "x-ms-request-id" : "5336dd71-c729-4850-802a-7bdc50afac8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "cb64f9d2-adb9-4029-aecd-43ca8bb1d7a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201906252?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e3cbaa6-ec1f-4559-a154-1d2df1732b5f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1fd9c99e-d44a-478b-b5ae-276b073ca29a", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11162,Microsoft.Compute/GetVMImageFromLocation30Min;72162", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:1fd9c99e-d44a-478b-b5ae-276b073ca29a", - "Expires" : "-1", - "x-ms-request-id" : "99de5d01-441f-48e8-8d79-c8cc9dc1ee53", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201906252\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201906252\"\r\n}", - "x-ms-client-request-id" : "1e3cbaa6-ec1f-4559-a154-1d2df1732b5f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19ab8a48-2cc4-4ca3-a949-0627524baa2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc8cfb6f-1909-474c-a3f5-d0c78e1576de", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11153,Microsoft.Compute/GetVMImageFromLocation30Min;72153", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:dc8cfb6f-1909-474c-a3f5-d0c78e1576de", - "Expires" : "-1", - "x-ms-request-id" : "fa40f1b6-0a70-4b77-a62d-5d58b76171f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608150\"\r\n}", - "x-ms-client-request-id" : "19ab8a48-2cc4-4ca3-a949-0627524baa2b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202002120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59e2eb9f-4966-480f-a6bf-5af3b026fb26", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "810b4cf9-c63d-444a-90a5-9ce32015b7fb", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11152,Microsoft.Compute/GetVMImageFromLocation30Min;72152", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:810b4cf9-c63d-444a-90a5-9ce32015b7fb", - "Expires" : "-1", - "x-ms-request-id" : "95b65ebc-0258-4d39-a853-5a332910a6ea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002120\"\r\n}", - "x-ms-client-request-id" : "59e2eb9f-4966-480f-a6bf-5af3b026fb26", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d4db9f4-5212-4fdb-9c7a-392d01b51047", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9ca657a-89a4-4dd0-9674-28897c2eb296", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11151,Microsoft.Compute/GetVMImageFromLocation30Min;72151", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:e9ca657a-89a4-4dd0-9674-28897c2eb296", - "Expires" : "-1", - "x-ms-request-id" : "1a2ff172-410b-4d22-9a7f-857886c32941", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202006100\"\r\n}", - "x-ms-client-request-id" : "4d4db9f4-5212-4fdb-9c7a-392d01b51047", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202009040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf340f9d-d12d-4ace-afab-c5f6b15c7536", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5dd8141-6679-4a0f-856f-72a09fbfc153", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11155,Microsoft.Compute/GetVMImageFromLocation30Min;72155", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:b5dd8141-6679-4a0f-856f-72a09fbfc153", - "Expires" : "-1", - "x-ms-request-id" : "133426f4-663f-4577-812c-5482588b8fcb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202009040\"\r\n}", - "x-ms-client-request-id" : "bf340f9d-d12d-4ace-afab-c5f6b15c7536", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202102260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfd74dc6-7ca9-4285-aace-0206d0d40778", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c1e47e1-d2cc-4764-a29b-78010b30bb2b", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11149,Microsoft.Compute/GetVMImageFromLocation30Min;72149", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:1c1e47e1-d2cc-4764-a29b-78010b30bb2b", - "Expires" : "-1", - "x-ms-request-id" : "0976acc7-0c64-4fff-aaf3-615ead7a28b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202102260\"\r\n}", - "x-ms-client-request-id" : "cfd74dc6-7ca9-4285-aace-0206d0d40778", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202103291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7fcf606-53a4-42a0-a828-284e8baf0204", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1277b319-e398-4179-bf56-3dc5701a7bee", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11148,Microsoft.Compute/GetVMImageFromLocation30Min;72148", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:1277b319-e398-4179-bf56-3dc5701a7bee", - "Expires" : "-1", - "x-ms-request-id" : "de21e9b6-729c-44e7-b3ca-4926069dc25e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202103291\"\r\n}", - "x-ms-client-request-id" : "a7fcf606-53a4-42a0-a828-284e8baf0204", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7d22c9a-3bb1-488c-b581-f28caf50316c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cef1d4d-b7c2-4a02-9a81-15428d324b31", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11168,Microsoft.Compute/GetVMImageFromLocation30Min;72168", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:6cef1d4d-b7c2-4a02-9a81-15428d324b31", - "Expires" : "-1", - "x-ms-request-id" : "6959b80d-f167-4275-9947-5330ec93270f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202007080\"\r\n}", - "x-ms-client-request-id" : "a7d22c9a-3bb1-488c-b581-f28caf50316c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "717e24ff-4eae-47c6-b95b-018730e7986f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2269569-2920-45ce-ab1f-5a5bf560cb32", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11147,Microsoft.Compute/GetVMImageFromLocation30Min;72147", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:a2269569-2920-45ce-ab1f-5a5bf560cb32", - "Expires" : "-1", - "x-ms-request-id" : "9e4d6533-4e76-4694-848f-171106dbf7b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202007290\"\r\n}", - "x-ms-client-request-id" : "717e24ff-4eae-47c6-b95b-018730e7986f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ce29668-8061-4aca-9a4e-0a639adfbfff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbfd8e49-8550-4a63-8f06-5d78930d5de7", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11146,Microsoft.Compute/GetVMImageFromLocation30Min;72146", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:bbfd8e49-8550-4a63-8f06-5d78930d5de7", - "Expires" : "-1", - "x-ms-request-id" : "3b360062-942b-4f31-b693-318f37f74e56", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "8ce29668-8061-4aca-9a4e-0a639adfbfff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77229eba-8919-4133-b8f6-ac156580b13e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdfce94b-7f2a-44ee-bdc5-85ef9e188b9c", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11145,Microsoft.Compute/GetVMImageFromLocation30Min;72145", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:fdfce94b-7f2a-44ee-bdc5-85ef9e188b9c", - "Expires" : "-1", - "x-ms-request-id" : "560cd512-e67f-4b41-9ca7-56d5d9d51376", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202010140\"\r\n}", - "x-ms-client-request-id" : "77229eba-8919-4133-b8f6-ac156580b13e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b1c0808-1592-4bdf-b6e7-0b6f8642a649", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a98b53d-677d-44e0-8fb6-8de0fbbdbfd4", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11158,Microsoft.Compute/GetVMImageFromLocation30Min;72158", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:7a98b53d-677d-44e0-8fb6-8de0fbbdbfd4", - "Expires" : "-1", - "x-ms-request-id" : "73637e80-e144-4e8a-a2b1-df2ceaf8aaa2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "4b1c0808-1592-4bdf-b6e7-0b6f8642a649", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c1391ec-292f-40a0-b3be-823e3dc051f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15ec1936-45d7-48af-84d5-1710ea910691", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11150,Microsoft.Compute/GetVMImageFromLocation30Min;72150", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:15ec1936-45d7-48af-84d5-1710ea910691", - "Expires" : "-1", - "x-ms-request-id" : "71a25982-8f5b-430d-91ba-a2e6ee0c4eeb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "8c1391ec-292f-40a0-b3be-823e3dc051f2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201901221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "332f815f-3d3c-464b-985c-52113b405229", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "62cf9798-758a-4319-ade4-4864c48fab8b", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11143,Microsoft.Compute/GetVMImageFromLocation30Min;72143", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:62cf9798-758a-4319-ade4-4864c48fab8b", - "Expires" : "-1", - "x-ms-request-id" : "bddf37a9-7a63-4295-b30f-b770365231f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201901221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201901221\"\r\n}", - "x-ms-client-request-id" : "332f815f-3d3c-464b-985c-52113b405229", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202002040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e27a78b-67f9-4739-b236-52ab64d8fd8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fed2cd50-3120-4394-b492-2effa0932452", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11144,Microsoft.Compute/GetVMImageFromLocation30Min;72144", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:fed2cd50-3120-4394-b492-2effa0932452", - "Expires" : "-1", - "x-ms-request-id" : "db3b2229-cdc4-4a33-be33-b53868604173", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002040\"\r\n}", - "x-ms-client-request-id" : "7e27a78b-67f9-4739-b236-52ab64d8fd8a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202002181?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "472d289e-b268-411a-8def-135e3f0e1839", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf57d631-df48-4055-9018-03b204afb381", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11166,Microsoft.Compute/GetVMImageFromLocation30Min;72166", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:bf57d631-df48-4055-9018-03b204afb381", - "Expires" : "-1", - "x-ms-request-id" : "c540a970-ca1b-44c5-9bcb-b6850545d062", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202002181\"\r\n}", - "x-ms-client-request-id" : "472d289e-b268-411a-8def-135e3f0e1839", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc9772e2-bc3b-47cf-adf6-dadc9f4e0f16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef4f896d-9f1f-49e9-a242-e45b2a9a9b39", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11157,Microsoft.Compute/GetVMImageFromLocation30Min;72157", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:ef4f896d-9f1f-49e9-a242-e45b2a9a9b39", - "Expires" : "-1", - "x-ms-request-id" : "2772bd53-f541-4b7d-9886-3b60e0a0e4dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202004290\"\r\n}", - "x-ms-client-request-id" : "fc9772e2-bc3b-47cf-adf6-dadc9f4e0f16", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "766ee626-aac9-4aa7-bf24-3897203c8780", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "791f3568-3cc8-468a-b31a-4cc83c6ce08d", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11141,Microsoft.Compute/GetVMImageFromLocation30Min;72141", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:791f3568-3cc8-468a-b31a-4cc83c6ce08d", - "Expires" : "-1", - "x-ms-request-id" : "a8737ec3-f619-408d-b385-af63cbd9f0f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "766ee626-aac9-4aa7-bf24-3897203c8780", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202104140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87016a93-b9aa-4fa0-ba5d-c9c9260e0236", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "675730eb-52d9-4003-90d5-2faed4170d4d", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11142,Microsoft.Compute/GetVMImageFromLocation30Min;72142", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:675730eb-52d9-4003-90d5-2faed4170d4d", - "Expires" : "-1", - "x-ms-request-id" : "4ae9ef1e-a8ad-4799-9941-a2e73c5a82a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104140\"\r\n}", - "x-ms-client-request-id" : "87016a93-b9aa-4fa0-ba5d-c9c9260e0236", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202007161?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "deba3986-19fa-45e9-92b1-7244495299b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e55be3c-60ad-4c5b-b313-5cb8d946ff84", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11140,Microsoft.Compute/GetVMImageFromLocation30Min;72140", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:8e55be3c-60ad-4c5b-b313-5cb8d946ff84", - "Expires" : "-1", - "x-ms-request-id" : "b0bfd4ba-b5ea-454d-90bf-eb78a7a8f9e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202007161\"\r\n}", - "x-ms-client-request-id" : "deba3986-19fa-45e9-92b1-7244495299b7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18eabe80-5bc9-41ef-8572-0beaaad89ce7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bede7e6e-26b3-4776-b107-60fb2d616b72", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11139,Microsoft.Compute/GetVMImageFromLocation30Min;72139", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:bede7e6e-26b3-4776-b107-60fb2d616b72", - "Expires" : "-1", - "x-ms-request-id" : "ba77c254-cd4c-4a35-9c7e-3cfccaca3391", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202012010\"\r\n}", - "x-ms-client-request-id" : "18eabe80-5bc9-41ef-8572-0beaaad89ce7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08ba9fd6-d10a-4419-86bd-b1abda3c4fce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea6c1dc7-430f-48b1-8add-8f9ac2c5791e", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11154,Microsoft.Compute/GetVMImageFromLocation30Min;72154", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:ea6c1dc7-430f-48b1-8add-8f9ac2c5791e", - "Expires" : "-1", - "x-ms-request-id" : "0f9cec74-447d-4fb5-b44d-8966e2106908", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202012100\"\r\n}", - "x-ms-client-request-id" : "08ba9fd6-d10a-4419-86bd-b1abda3c4fce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202102020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e981ffd-ef79-4af6-afa7-b6aed3900ffb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d26f2657-2a59-4f17-b8ee-1ff4dacf001c", - "Date" : "Tue, 24 May 2022 13:02:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11138,Microsoft.Compute/GetVMImageFromLocation30Min;72138", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:d26f2657-2a59-4f17-b8ee-1ff4dacf001c", - "Expires" : "-1", - "x-ms-request-id" : "7f458a40-1905-4342-ab08-1e9073d6a491", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202102020\"\r\n}", - "x-ms-client-request-id" : "2e981ffd-ef79-4af6-afa7-b6aed3900ffb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb8abcfa-7819-49c4-bb8a-b1493d70b569", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a171e20-4154-40f8-9432-935a6f7deb2c", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11137,Microsoft.Compute/GetVMImageFromLocation30Min;72137", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:8a171e20-4154-40f8-9432-935a6f7deb2c", - "Expires" : "-1", - "x-ms-request-id" : "b0edc77e-7ecc-46f4-8dce-815c6df46ba5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202103160\"\r\n}", - "x-ms-client-request-id" : "eb8abcfa-7819-49c4-bb8a-b1493d70b569", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201611150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08f05c67-806a-496c-a4e3-7e9ace7078ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac01d057-7008-417e-9869-c47746fde3cb", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11136,Microsoft.Compute/GetVMImageFromLocation30Min;72136", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130221Z:ac01d057-7008-417e-9869-c47746fde3cb", - "Expires" : "-1", - "x-ms-request-id" : "500d2b0a-2c64-473c-80fe-429b523b82e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201611150\"\r\n}", - "x-ms-client-request-id" : "08f05c67-806a-496c-a4e3-7e9ace7078ae", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "967debd2-8452-4f74-a85e-66566f451ae5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "927", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01f533d9-816d-4645-9220-cd204384433a", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15840,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130222Z:01f533d9-816d-4645-9220-cd204384433a", - "Expires" : "-1", - "x-ms-request-id" : "2e90703c-f239-47cd-86a9-2783b05b94f9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202106230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202108040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202109280\"\r\n }\r\n]", - "x-ms-client-request-id" : "967debd2-8452-4f74-a85e-66566f451ae5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-daily-lts-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e845dc60-7cf6-48e5-b4eb-78d82c7f621e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "772", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "069594aa-040e-4079-b0ce-5e676d2532ca", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11135,Microsoft.Compute/GetVMImageFromLocation30Min;72135", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130222Z:069594aa-040e-4079-b0ce-5e676d2532ca", - "Expires" : "-1", - "x-ms-request-id" : "791c69c2-3278-4790-81c6-9f8af1b77a2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "e845dc60-7cf6-48e5-b4eb-78d82c7f621e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-daily-lts-gen2/versions/16.04.202108040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72d86e8d-b1f1-4c24-a720-725e1703e4a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "772", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be00800b-5a1e-4935-ba74-6e38898939b5", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11134,Microsoft.Compute/GetVMImageFromLocation30Min;72134", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130222Z:be00800b-5a1e-4935-ba74-6e38898939b5", - "Expires" : "-1", - "x-ms-request-id" : "2ff65585-964c-4671-91bd-7aafa41b10ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202108040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202108040\"\r\n}", - "x-ms-client-request-id" : "72d86e8d-b1f1-4c24-a720-725e1703e4a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-daily-lts-gen2/versions/16.04.202106230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d11d0d2a-6d4e-42a4-bcde-6ab86e11b623", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "772", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf151981-9bfe-4c0d-83ea-4ff51ed9a2e3", - "Date" : "Tue, 24 May 2022 13:02:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11133,Microsoft.Compute/GetVMImageFromLocation30Min;72133", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130222Z:bf151981-9bfe-4c0d-83ea-4ff51ed9a2e3", - "Expires" : "-1", - "x-ms-request-id" : "b3d3aeaa-93dd-4dae-bcc9-14933b9314cc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-daily-lts-gen2/Versions/16.04.202106230\"\r\n}", - "x-ms-client-request-id" : "d11d0d2a-6d4e-42a4-bcde-6ab86e11b623", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebf15c52-dea5-4920-9af7-042343e6b66c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "12989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca149e1c-e58a-4971-b6d7-074541d220f6", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15839,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130222Z:ca149e1c-e58a-4971-b6d7-074541d220f6", - "Expires" : "-1", - "x-ms-request-id" : "fb4ebfb3-a697-4db9-9135-a144356cc6ca", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201908220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201909030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201909110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202001070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202001290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202002040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202002120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202002181\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202004010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202004070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202005290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202007161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202008070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202009040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202009220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202011120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202012030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202102020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202102260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202103291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202104140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202109280\"\r\n }\r\n]", - "x-ms-client-request-id" : "ebf15c52-dea5-4920-9af7-042343e6b66c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201909030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d654906f-a276-4cd1-b8f6-fd1c7b6faad6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "077adc57-2cfb-4b3a-8248-d57f4e4d909d", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11132,Microsoft.Compute/GetVMImageFromLocation30Min;72132", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:077adc57-2cfb-4b3a-8248-d57f4e4d909d", - "Expires" : "-1", - "x-ms-request-id" : "b8dab17e-3acd-47f5-a14f-6d3bdb6a91e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201909030\"\r\n}", - "x-ms-client-request-id" : "d654906f-a276-4cd1-b8f6-fd1c7b6faad6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201910110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3bc9a4c-be02-43c2-aef9-9d4674104c57", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aebe017e-ce1f-4682-ad33-3c5810c1ea77", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11129,Microsoft.Compute/GetVMImageFromLocation30Min;72129", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:aebe017e-ce1f-4682-ad33-3c5810c1ea77", - "Expires" : "-1", - "x-ms-request-id" : "87f9b84b-156e-4906-9df1-03f658c540e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910110\"\r\n}", - "x-ms-client-request-id" : "f3bc9a4c-be02-43c2-aef9-9d4674104c57", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70afc2b6-3fd5-4e25-ae48-fc443d10ddf1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb07dbe8-dd77-45d4-ab54-4ef046e019f7", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11120,Microsoft.Compute/GetVMImageFromLocation30Min;72120", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:eb07dbe8-dd77-45d4-ab54-4ef046e019f7", - "Expires" : "-1", - "x-ms-request-id" : "fd4e8158-8b2a-428d-a3a5-0a1614e0c27c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202007290\"\r\n}", - "x-ms-client-request-id" : "70afc2b6-3fd5-4e25-ae48-fc443d10ddf1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9eeddae6-7ad2-42c6-9429-79f7a5f0d2fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bc64790-7797-4faa-97cd-33444a35cf4f", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11117,Microsoft.Compute/GetVMImageFromLocation30Min;72117", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:8bc64790-7797-4faa-97cd-33444a35cf4f", - "Expires" : "-1", - "x-ms-request-id" : "3cd51307-8922-4d63-8c16-69a623ca9ca1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202004290\"\r\n}", - "x-ms-client-request-id" : "9eeddae6-7ad2-42c6-9429-79f7a5f0d2fc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202002040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d993f3d-6973-4acf-a862-c8a25f5aa114", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08e1a3c6-c35b-4e02-9a1a-a6913e618fd4", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11125,Microsoft.Compute/GetVMImageFromLocation30Min;72125", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:08e1a3c6-c35b-4e02-9a1a-a6913e618fd4", - "Expires" : "-1", - "x-ms-request-id" : "3129ec8b-99af-404e-9b5b-044db924246b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202002040\"\r\n}", - "x-ms-client-request-id" : "9d993f3d-6973-4acf-a862-c8a25f5aa114", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55faef74-1e6e-4156-b0f0-982e674441d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "153b17c8-90e6-4368-ae88-2ec10cdcead9", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11124,Microsoft.Compute/GetVMImageFromLocation30Min;72124", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:153b17c8-90e6-4368-ae88-2ec10cdcead9", - "Expires" : "-1", - "x-ms-request-id" : "f5d82d94-bd74-4d6a-8a27-fd9b8484660f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202010140\"\r\n}", - "x-ms-client-request-id" : "55faef74-1e6e-4156-b0f0-982e674441d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201908220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d8f8f59-620b-4c7a-a88b-d9b84345fce5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95dabcb7-a696-4bdc-a1f0-9273ce53888a", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11111,Microsoft.Compute/GetVMImageFromLocation30Min;72111", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:95dabcb7-a696-4bdc-a1f0-9273ce53888a", - "Expires" : "-1", - "x-ms-request-id" : "f926329f-667f-4310-9c8e-77f30393a57a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201908220\"\r\n}", - "x-ms-client-request-id" : "5d8f8f59-620b-4c7a-a88b-d9b84345fce5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202008070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c220241-4115-4d7d-8628-99a8186e300a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d6a3ffe-9cbd-41f3-93dd-e106c1d803a3", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11122,Microsoft.Compute/GetVMImageFromLocation30Min;72122", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:3d6a3ffe-9cbd-41f3-93dd-e106c1d803a3", - "Expires" : "-1", - "x-ms-request-id" : "6f4eb826-30e5-4001-8209-cf218a5e9fe3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202008070\"\r\n}", - "x-ms-client-request-id" : "1c220241-4115-4d7d-8628-99a8186e300a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31e7c882-ce16-4bb1-b744-958817ff5b59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60b12236-951e-4682-abce-5c8ed560ce68", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11131,Microsoft.Compute/GetVMImageFromLocation30Min;72131", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:60b12236-951e-4682-abce-5c8ed560ce68", - "Expires" : "-1", - "x-ms-request-id" : "d4c6a4af-33d7-4130-aebc-649f73df69ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201911130\"\r\n}", - "x-ms-client-request-id" : "31e7c882-ce16-4bb1-b744-958817ff5b59", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201912110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c62d4a0d-d694-4f8c-aae8-5bae3ca4c891", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ada119db-9b39-4767-8c3c-64ad02837d01", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11121,Microsoft.Compute/GetVMImageFromLocation30Min;72121", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:ada119db-9b39-4767-8c3c-64ad02837d01", - "Expires" : "-1", - "x-ms-request-id" : "479f57df-6d40-4797-a1bf-e083a6a2a62f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912110\"\r\n}", - "x-ms-client-request-id" : "c62d4a0d-d694-4f8c-aae8-5bae3ca4c891", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202001070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dad22f16-537c-4f5c-a03b-0a0dd3184a88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ed06d4a-095d-4c99-a267-9f4ec4e7e51a", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11128,Microsoft.Compute/GetVMImageFromLocation30Min;72128", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:9ed06d4a-095d-4c99-a267-9f4ec4e7e51a", - "Expires" : "-1", - "x-ms-request-id" : "d06c814c-fd33-4c19-9731-7504e08d5165", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202001070\"\r\n}", - "x-ms-client-request-id" : "dad22f16-537c-4f5c-a03b-0a0dd3184a88", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202011120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62114679-2745-4524-9ce7-828810762027", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcd4189f-9208-41f9-90b4-1e21b7b14234", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11116,Microsoft.Compute/GetVMImageFromLocation30Min;72116", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:fcd4189f-9208-41f9-90b4-1e21b7b14234", - "Expires" : "-1", - "x-ms-request-id" : "0b5c0013-9496-4aae-a865-42e75e40a988", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202011120\"\r\n}", - "x-ms-client-request-id" : "62114679-2745-4524-9ce7-828810762027", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202004070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28058dd6-031c-4669-a2f5-510069ae933e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eeddef4c-7cc9-4592-a960-a2d3c5b73fff", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11126,Microsoft.Compute/GetVMImageFromLocation30Min;72126", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:eeddef4c-7cc9-4592-a960-a2d3c5b73fff", - "Expires" : "-1", - "x-ms-request-id" : "8ecdcb92-0e25-444b-8fd6-2f696b142464", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202004070\"\r\n}", - "x-ms-client-request-id" : "28058dd6-031c-4669-a2f5-510069ae933e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51b752b3-ea96-447e-b919-c83f8c727d5d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf02f5e8-08a4-4d5c-831c-75cb37d842d6", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11130,Microsoft.Compute/GetVMImageFromLocation30Min;72130", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:bf02f5e8-08a4-4d5c-831c-75cb37d842d6", - "Expires" : "-1", - "x-ms-request-id" : "e00a8ba2-d4d6-42f0-9f14-14cea512c52f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201912170\"\r\n}", - "x-ms-client-request-id" : "51b752b3-ea96-447e-b919-c83f8c727d5d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d08016d4-6654-4b3d-8863-2212e96f1ef6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30633328-00d4-4d47-8fd8-d7d15615bc14", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11114,Microsoft.Compute/GetVMImageFromLocation30Min;72114", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:30633328-00d4-4d47-8fd8-d7d15615bc14", - "Expires" : "-1", - "x-ms-request-id" : "ed66be7c-4c3a-4b26-8bf1-fde7610fa691", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202101120\"\r\n}", - "x-ms-client-request-id" : "d08016d4-6654-4b3d-8863-2212e96f1ef6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28eb76d9-176f-488d-8baf-3823d15c7a2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c80c7e4-34c7-49d8-814c-7d05d30fd31c", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11118,Microsoft.Compute/GetVMImageFromLocation30Min;72118", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:4c80c7e4-34c7-49d8-814c-7d05d30fd31c", - "Expires" : "-1", - "x-ms-request-id" : "096ad226-61e2-4a2f-9b1d-0b759b6ee6e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202012010\"\r\n}", - "x-ms-client-request-id" : "28eb76d9-176f-488d-8baf-3823d15c7a2e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7576c2db-7dd3-4cc3-9c15-4af7d3ec59cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b90ac89-ad87-4078-87b2-2a5de8bd7985", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11113,Microsoft.Compute/GetVMImageFromLocation30Min;72113", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:0b90ac89-ad87-4078-87b2-2a5de8bd7985", - "Expires" : "-1", - "x-ms-request-id" : "60e5d2b7-1d85-488e-8bf4-6127495ac8cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202103160\"\r\n}", - "x-ms-client-request-id" : "7576c2db-7dd3-4cc3-9c15-4af7d3ec59cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202002181?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7cc0613-913b-4caf-bf89-440787a566f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c6521b9-1139-4e93-84e9-7103742a0763", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11127,Microsoft.Compute/GetVMImageFromLocation30Min;72127", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:3c6521b9-1139-4e93-84e9-7103742a0763", - "Expires" : "-1", - "x-ms-request-id" : "04ab5ab4-499a-4583-a60c-bf78cf8947ce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202002181\"\r\n}", - "x-ms-client-request-id" : "a7cc0613-913b-4caf-bf89-440787a566f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202005290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1686be3-f1e7-49c0-bac3-2e3b25e86db6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11806", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e6df67d-9486-41b1-a1fb-3eef4568bf5b", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11123,Microsoft.Compute/GetVMImageFromLocation30Min;72123", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:2e6df67d-9486-41b1-a1fb-3eef4568bf5b", - "Expires" : "-1", - "x-ms-request-id" : "72feeb3e-81f1-4b85-a175-850b488f91ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202005290\"\r\n}", - "x-ms-client-request-id" : "c1686be3-f1e7-49c0-bac3-2e3b25e86db6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e343ce14-9032-4f62-b7d9-355f8849eaf6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e31c4d98-765f-4f52-8431-ed97d6ef6dff", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11115,Microsoft.Compute/GetVMImageFromLocation30Min;72115", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:e31c4d98-765f-4f52-8431-ed97d6ef6dff", - "Expires" : "-1", - "x-ms-request-id" : "9a73990f-4651-4393-b203-62e39295900c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202003170\"\r\n}", - "x-ms-client-request-id" : "e343ce14-9032-4f62-b7d9-355f8849eaf6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202007161?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1595e2ad-7d53-482e-ba30-fa630d0248cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cc04493-21fd-4372-ac43-85905e74e35b", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11094,Microsoft.Compute/GetVMImageFromLocation30Min;72094", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:5cc04493-21fd-4372-ac43-85905e74e35b", - "Expires" : "-1", - "x-ms-request-id" : "0324df4b-ff22-4484-b2e5-24d0498a2d87", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202007161\"\r\n}", - "x-ms-client-request-id" : "1595e2ad-7d53-482e-ba30-fa630d0248cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202002120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ee8ea5d-6636-4402-bde2-a69c6bf9c430", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7631d01a-935f-49ea-9760-a492dfea0ce0", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11109,Microsoft.Compute/GetVMImageFromLocation30Min;72109", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:7631d01a-935f-49ea-9760-a492dfea0ce0", - "Expires" : "-1", - "x-ms-request-id" : "4177d1f7-419e-447f-9d7f-cc9572c32c15", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202002120\"\r\n}", - "x-ms-client-request-id" : "0ee8ea5d-6636-4402-bde2-a69c6bf9c430", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201909110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca009a48-9f90-4328-a1dc-98084a69bfa6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e36f174-fa3c-4373-847c-0dc1d8e03aeb", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11095,Microsoft.Compute/GetVMImageFromLocation30Min;72095", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:9e36f174-fa3c-4373-847c-0dc1d8e03aeb", - "Expires" : "-1", - "x-ms-request-id" : "2d690b04-f210-4c97-b544-ef98b4875a09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201909110\"\r\n}", - "x-ms-client-request-id" : "ca009a48-9f90-4328-a1dc-98084a69bfa6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f23db910-bce2-4154-b9ef-8be531204789", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c29538d-950b-4923-9f7a-4dcc49082c72", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11098,Microsoft.Compute/GetVMImageFromLocation30Min;72098", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:0c29538d-950b-4923-9f7a-4dcc49082c72", - "Expires" : "-1", - "x-ms-request-id" : "67cf815b-786f-4c3d-b300-a427b93bc3d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201909180\"\r\n}", - "x-ms-client-request-id" : "f23db910-bce2-4154-b9ef-8be531204789", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202001290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0d8017a-62d1-4d08-80ea-e0f0c913c651", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed1f9f97-46a4-439f-bbdd-b4dc42030749", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11096,Microsoft.Compute/GetVMImageFromLocation30Min;72096", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:ed1f9f97-46a4-439f-bbdd-b4dc42030749", - "Expires" : "-1", - "x-ms-request-id" : "b885f28a-5ea7-42f1-a084-f357c9642cee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202001290\"\r\n}", - "x-ms-client-request-id" : "a0d8017a-62d1-4d08-80ea-e0f0c913c651", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.201910310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68061b46-6709-48f5-af06-b7d530a8ee8e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bf75c3e-0d9e-498d-80ee-8bd21d01c41b", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11104,Microsoft.Compute/GetVMImageFromLocation30Min;72104", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:6bf75c3e-0d9e-498d-80ee-8bd21d01c41b", - "Expires" : "-1", - "x-ms-request-id" : "8d44668a-233c-4198-be25-220f9ed5e50f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.201910310\"\r\n}", - "x-ms-client-request-id" : "68061b46-6709-48f5-af06-b7d530a8ee8e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202009040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4dee8287-9dc2-49b9-939d-6161de2c2639", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c6f978a-38df-45f5-9d3e-c548bb76aefd", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11092,Microsoft.Compute/GetVMImageFromLocation30Min;72092", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:7c6f978a-38df-45f5-9d3e-c548bb76aefd", - "Expires" : "-1", - "x-ms-request-id" : "98be5a87-48f7-4366-9373-ad5c69206dbb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202009040\"\r\n}", - "x-ms-client-request-id" : "4dee8287-9dc2-49b9-939d-6161de2c2639", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202102020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a8e0f77-4743-4038-a607-51a51153af5c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3630c777-663c-46c8-86a8-54f880259c61", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11100,Microsoft.Compute/GetVMImageFromLocation30Min;72100", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:3630c777-663c-46c8-86a8-54f880259c61", - "Expires" : "-1", - "x-ms-request-id" : "07b2768a-1084-4f06-957f-309974db4685", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202102020\"\r\n}", - "x-ms-client-request-id" : "0a8e0f77-4743-4038-a607-51a51153af5c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f32cec62-cd1c-4806-9915-cc8bfc923e52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8493c50f-15b7-44b6-b6d5-e850199e3072", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11110,Microsoft.Compute/GetVMImageFromLocation30Min;72110", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:8493c50f-15b7-44b6-b6d5-e850199e3072", - "Expires" : "-1", - "x-ms-request-id" : "c67efd57-930e-4f4b-9393-29ed31faf4aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "f32cec62-cd1c-4806-9915-cc8bfc923e52", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b907291-7def-46bb-a733-18349f78554d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1aecbf47-5d50-4153-82ef-dc0972f0e3e8", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11101,Microsoft.Compute/GetVMImageFromLocation30Min;72101", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:1aecbf47-5d50-4153-82ef-dc0972f0e3e8", - "Expires" : "-1", - "x-ms-request-id" : "f22d5dbb-10bd-4aae-a4bf-bc80efb61665", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202009080\"\r\n}", - "x-ms-client-request-id" : "5b907291-7def-46bb-a733-18349f78554d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202009220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "baf4f254-960f-4ed6-b091-583eacd58351", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a491c86d-087e-4af9-8827-5aea1ff678e1", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11108,Microsoft.Compute/GetVMImageFromLocation30Min;72108", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:a491c86d-087e-4af9-8827-5aea1ff678e1", - "Expires" : "-1", - "x-ms-request-id" : "a601a09c-3901-41c8-8155-890b83ea2666", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202009220\"\r\n}", - "x-ms-client-request-id" : "baf4f254-960f-4ed6-b091-583eacd58351", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202012030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c93a10d-3a00-4a81-923e-1e75bb938025", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc7939a4-a140-4c9b-9480-d07e585cecd4", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11097,Microsoft.Compute/GetVMImageFromLocation30Min;72097", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:dc7939a4-a140-4c9b-9480-d07e585cecd4", - "Expires" : "-1", - "x-ms-request-id" : "90d5a33a-452e-4e0d-abcc-ea8ad5435e90", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202012030\"\r\n}", - "x-ms-client-request-id" : "2c93a10d-3a00-4a81-923e-1e75bb938025", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e07b8784-eb31-4023-a963-7ec754b11d1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e84e6e12-26a1-43cb-b35f-5afd1f7811f8", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11103,Microsoft.Compute/GetVMImageFromLocation30Min;72103", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:e84e6e12-26a1-43cb-b35f-5afd1f7811f8", - "Expires" : "-1", - "x-ms-request-id" : "7e8c0c22-a1cf-4893-a0f9-579f511e3cf3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "e07b8784-eb31-4023-a963-7ec754b11d1f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67cc3b1a-f37d-4af1-9e88-e4fd19032fb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e4e23e6-2f2d-455e-90a6-140f8bf84165", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11099,Microsoft.Compute/GetVMImageFromLocation30Min;72099", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:8e4e23e6-2f2d-455e-90a6-140f8bf84165", - "Expires" : "-1", - "x-ms-request-id" : "25466018-21d7-400a-98f6-82380eac8fe6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "67cc3b1a-f37d-4af1-9e88-e4fd19032fb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202102260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9c3dae3-b34d-4fe4-8dd4-5904db9c5712", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3348adc-5d10-4984-a7b8-6a7dd34f3b28", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11102,Microsoft.Compute/GetVMImageFromLocation30Min;72102", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:a3348adc-5d10-4984-a7b8-6a7dd34f3b28", - "Expires" : "-1", - "x-ms-request-id" : "5b68b396-cc5d-45bc-a5c1-4f5108cafe9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202102260\"\r\n}", - "x-ms-client-request-id" : "b9c3dae3-b34d-4fe4-8dd4-5904db9c5712", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202103291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "886533b9-e30f-4330-b1bc-a8bdbff6ca59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f07c5b3-ce76-471b-901c-f7fb520790b7", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11093,Microsoft.Compute/GetVMImageFromLocation30Min;72093", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:9f07c5b3-ce76-471b-901c-f7fb520790b7", - "Expires" : "-1", - "x-ms-request-id" : "45c053a8-3fd7-4dcb-b606-fcb4cf8c714b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202103291\"\r\n}", - "x-ms-client-request-id" : "886533b9-e30f-4330-b1bc-a8bdbff6ca59", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202104140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "751993cb-386c-4d41-b5e8-830bd85d89d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39aa3156-ce12-4319-9c36-c5c5714f72e3", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11112,Microsoft.Compute/GetVMImageFromLocation30Min;72112", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:39aa3156-ce12-4319-9c36-c5c5714f72e3", - "Expires" : "-1", - "x-ms-request-id" : "006bcfa8-df49-408d-a8ce-194101e85f77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202104140\"\r\n}", - "x-ms-client-request-id" : "751993cb-386c-4d41-b5e8-830bd85d89d5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "770d083e-d3e1-4789-b3d8-adfc759e8cf2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6457806c-540e-428f-9bb9-bdf56bd3174a", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11105,Microsoft.Compute/GetVMImageFromLocation30Min;72105", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:6457806c-540e-428f-9bb9-bdf56bd3174a", - "Expires" : "-1", - "x-ms-request-id" : "3262a015-b591-4022-ad02-fa80bfd3e859", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "770d083e-d3e1-4789-b3d8-adfc759e8cf2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c905630-dcdc-409c-b1a0-b9500163d58f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c4ea8bea-3642-4173-a030-73bb1d96212f", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11107,Microsoft.Compute/GetVMImageFromLocation30Min;72107", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:c4ea8bea-3642-4173-a030-73bb1d96212f", - "Expires" : "-1", - "x-ms-request-id" : "8029a7de-053e-4481-abd8-083ed691906f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "2c905630-dcdc-409c-b1a0-b9500163d58f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202004010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbfbfaeb-9522-4ef4-b931-d8019da57cde", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3014e2f0-d241-4370-b2df-346136b0e382", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11090,Microsoft.Compute/GetVMImageFromLocation30Min;72090", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:3014e2f0-d241-4370-b2df-346136b0e382", - "Expires" : "-1", - "x-ms-request-id" : "eb8bfa12-7bad-493a-b54c-02e60f35d1c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202004010\"\r\n}", - "x-ms-client-request-id" : "cbfbfaeb-9522-4ef4-b931-d8019da57cde", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9d9b24f-423f-43ae-b9bd-4bb348e6ef02", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ee5fccd-a26d-45fb-adef-369f7ae4b7d0", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11106,Microsoft.Compute/GetVMImageFromLocation30Min;72106", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:5ee5fccd-a26d-45fb-adef-369f7ae4b7d0", - "Expires" : "-1", - "x-ms-request-id" : "d60e95aa-d534-485c-b9d0-ab1268057b0f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202006100\"\r\n}", - "x-ms-client-request-id" : "c9d9b24f-423f-43ae-b9bd-4bb348e6ef02", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc43a310-5515-4043-942e-d6b48ec929d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "53c15696-d302-4684-8e2e-b557bf7c39f5", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11119,Microsoft.Compute/GetVMImageFromLocation30Min;72119", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:53c15696-d302-4684-8e2e-b557bf7c39f5", - "Expires" : "-1", - "x-ms-request-id" : "618d8697-5df8-4509-8568-121e716df0b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202007080\"\r\n}", - "x-ms-client-request-id" : "dc43a310-5515-4043-942e-d6b48ec929d0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04-lts-gen2/versions/16.04.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d39711a-854a-4c4b-b503-3f5abfaea591", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "766", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54fbf6f6-ff15-432e-9d2d-5002f87c86cf", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11091,Microsoft.Compute/GetVMImageFromLocation30Min;72091", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:54fbf6f6-ff15-432e-9d2d-5002f87c86cf", - "Expires" : "-1", - "x-ms-request-id" : "e534c45b-b657-42fc-bc67-8817f028f55e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04-lts-gen2/Versions/16.04.202012100\"\r\n}", - "x-ms-client-request-id" : "1d39711a-854a-4c4b-b503-3f5abfaea591", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f31274c9-8807-40f2-810b-16b9bf47da39", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "13075", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e83457bc-ac55-449d-8e42-b76f9c973416", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15838,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:e83457bc-ac55-449d-8e42-b76f9c973416", - "Expires" : "-1", - "x-ms-request-id" : "4041b1af-3b1e-42cb-991f-8dbd92f377f1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201908220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201909030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201909110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202001070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202001290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202002040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202002120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202002181\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202004010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202004070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202005290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202006100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202007161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202008070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202009040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202009220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202011120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202012030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202012100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202101190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202102020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202102260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202103160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202103291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202104140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202104160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202104290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202106110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202109280\"\r\n }\r\n]", - "x-ms-client-request-id" : "f31274c9-8807-40f2-810b-16b9bf47da39", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201909030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d8c9c3d-ca45-4eef-9f5d-afc7c4b445d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d009d441-ec18-4c43-9219-68490f809cad", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11089,Microsoft.Compute/GetVMImageFromLocation30Min;72089", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:d009d441-ec18-4c43-9219-68490f809cad", - "Expires" : "-1", - "x-ms-request-id" : "5b8e9a38-bc7d-481a-9f9a-9735813d52c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201909030\"\r\n}", - "x-ms-client-request-id" : "7d8c9c3d-ca45-4eef-9f5d-afc7c4b445d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201908220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc7c14bb-5f93-42f9-8713-67967b6952eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d26bb36c-811b-4140-90f1-92dfa660b13e", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11087,Microsoft.Compute/GetVMImageFromLocation30Min;72087", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:d26bb36c-811b-4140-90f1-92dfa660b13e", - "Expires" : "-1", - "x-ms-request-id" : "e2e04a4e-42ce-4e5d-95c0-2c4e8d46bb3f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201908220\"\r\n}", - "x-ms-client-request-id" : "fc7c14bb-5f93-42f9-8713-67967b6952eb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d73c398-daf4-43ad-b3d8-4079e5b72022", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "357cbe85-dbb7-4416-9c81-2903bb5bdbd1", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11085,Microsoft.Compute/GetVMImageFromLocation30Min;72085", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:357cbe85-dbb7-4416-9c81-2903bb5bdbd1", - "Expires" : "-1", - "x-ms-request-id" : "31f177c2-1377-47b5-a030-3f3e8237bb63", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912170\"\r\n}", - "x-ms-client-request-id" : "1d73c398-daf4-43ad-b3d8-4079e5b72022", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "045ca20c-9500-4d52-bda3-02085badf931", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "825206fc-45a3-4234-9618-49970a61a246", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11082,Microsoft.Compute/GetVMImageFromLocation30Min;72082", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:825206fc-45a3-4234-9618-49970a61a246", - "Expires" : "-1", - "x-ms-request-id" : "1be6957d-c1a2-49b8-8c6d-7b25fc32134a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202004290\"\r\n}", - "x-ms-client-request-id" : "045ca20c-9500-4d52-bda3-02085badf931", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201912110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60b94828-b52b-46ff-a6d5-cc1c0b667b67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77159743-7dc8-4e76-870d-15e6d366f296", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11079,Microsoft.Compute/GetVMImageFromLocation30Min;72079", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:77159743-7dc8-4e76-870d-15e6d366f296", - "Expires" : "-1", - "x-ms-request-id" : "040e55c5-a731-4cf9-a26c-bea58c119703", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201912110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201912110\"\r\n}", - "x-ms-client-request-id" : "60b94828-b52b-46ff-a6d5-cc1c0b667b67", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "83870dc0-4716-4e50-8f18-c3cc64dcbb6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "50f2992d-bb98-4def-9c09-26526dffdf90", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11080,Microsoft.Compute/GetVMImageFromLocation30Min;72080", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:50f2992d-bb98-4def-9c09-26526dffdf90", - "Expires" : "-1", - "x-ms-request-id" : "f79649fa-d352-4723-9fd8-c46356228d9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202010140\"\r\n}", - "x-ms-client-request-id" : "83870dc0-4716-4e50-8f18-c3cc64dcbb6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c5e51f1-bc82-418d-b999-00e53316a58c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9de2a015-c545-4ed0-9047-64438c480eec", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11084,Microsoft.Compute/GetVMImageFromLocation30Min;72084", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:9de2a015-c545-4ed0-9047-64438c480eec", - "Expires" : "-1", - "x-ms-request-id" : "a6769ab5-ff2a-4f17-b0d8-05ccacc6a86d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202007290\"\r\n}", - "x-ms-client-request-id" : "4c5e51f1-bc82-418d-b999-00e53316a58c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202012100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc5eb2a9-5709-439b-ba64-ecc37e029254", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b4a1e52-29a1-4956-9129-a8829ecc4d75", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11074,Microsoft.Compute/GetVMImageFromLocation30Min;72074", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:8b4a1e52-29a1-4956-9129-a8829ecc4d75", - "Expires" : "-1", - "x-ms-request-id" : "331d9613-67a8-44b8-bcec-7614bfc9e937", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202012100\"\r\n}", - "x-ms-client-request-id" : "cc5eb2a9-5709-439b-ba64-ecc37e029254", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202106110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c83c8d34-49b8-4636-b59a-4547901dc654", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9afeadd-d3bf-42c2-8e03-ab4c8ea0770c", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11072,Microsoft.Compute/GetVMImageFromLocation30Min;72072", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:b9afeadd-d3bf-42c2-8e03-ab4c8ea0770c", - "Expires" : "-1", - "x-ms-request-id" : "464834ed-afee-4b35-819c-80d40aa62180", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202106110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202106110\"\r\n}", - "x-ms-client-request-id" : "c83c8d34-49b8-4636-b59a-4547901dc654", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da1f63e3-749d-434e-a591-cbd5d859b74b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68ea76d9-c250-4edd-a166-a8a5cee15255", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11088,Microsoft.Compute/GetVMImageFromLocation30Min;72088", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:68ea76d9-c250-4edd-a166-a8a5cee15255", - "Expires" : "-1", - "x-ms-request-id" : "82d46119-5dbd-4bde-8757-e2a907be61d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201909180\"\r\n}", - "x-ms-client-request-id" : "da1f63e3-749d-434e-a591-cbd5d859b74b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94506532-24a1-44d6-8ecb-f885137eb227", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ebb2c37-772b-43c5-869e-01f2cad8e5f3", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11077,Microsoft.Compute/GetVMImageFromLocation30Min;72077", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:4ebb2c37-772b-43c5-869e-01f2cad8e5f3", - "Expires" : "-1", - "x-ms-request-id" : "6af420f2-7461-49df-bf20-710ca7fa9955", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201911130\"\r\n}", - "x-ms-client-request-id" : "94506532-24a1-44d6-8ecb-f885137eb227", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202009040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20286988-66e2-4c6c-aa48-bce7b1bedab1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2088333b-d86d-48db-9ec8-53c143bac289", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11067,Microsoft.Compute/GetVMImageFromLocation30Min;72067", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:2088333b-d86d-48db-9ec8-53c143bac289", - "Expires" : "-1", - "x-ms-request-id" : "697e2d21-7a7f-42e8-ba52-c37b52ea984a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202009040\"\r\n}", - "x-ms-client-request-id" : "20286988-66e2-4c6c-aa48-bce7b1bedab1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ccb61ce9-d82f-4ea2-909b-c891b49e9dbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec170aa7-916f-40d0-9769-a18036edec83", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11073,Microsoft.Compute/GetVMImageFromLocation30Min;72073", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:ec170aa7-916f-40d0-9769-a18036edec83", - "Expires" : "-1", - "x-ms-request-id" : "597588ff-31fa-4afd-ab08-1bd252ab35b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202007080\"\r\n}", - "x-ms-client-request-id" : "ccb61ce9-d82f-4ea2-909b-c891b49e9dbb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202007161?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d038be9-eb3e-4fea-982c-ac6b9f3d5fc3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed99e805-a0e9-4410-89ee-6ca6d5b277e6", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11081,Microsoft.Compute/GetVMImageFromLocation30Min;72081", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:ed99e805-a0e9-4410-89ee-6ca6d5b277e6", - "Expires" : "-1", - "x-ms-request-id" : "d15fb09a-1ded-42bf-a2f4-8273ae17a0e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202007161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202007161\"\r\n}", - "x-ms-client-request-id" : "7d038be9-eb3e-4fea-982c-ac6b9f3d5fc3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fb0ac52-c5f5-4e3b-94eb-d159ca718440", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d487695-1fe2-4f34-be8c-85ed4b15d0c3", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11070,Microsoft.Compute/GetVMImageFromLocation30Min;72070", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:2d487695-1fe2-4f34-be8c-85ed4b15d0c3", - "Expires" : "-1", - "x-ms-request-id" : "d02ba31c-2af2-441e-bfcb-cd895c766b30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202009080\"\r\n}", - "x-ms-client-request-id" : "6fb0ac52-c5f5-4e3b-94eb-d159ca718440", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202102020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dab3fd53-b5b1-4ec4-bb9c-ff83d77b3153", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b38585ac-ffe4-4171-9f5c-72a406722ff5", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11076,Microsoft.Compute/GetVMImageFromLocation30Min;72076", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:b38585ac-ffe4-4171-9f5c-72a406722ff5", - "Expires" : "-1", - "x-ms-request-id" : "52a86c4e-023a-4378-9dc3-18d103d26952", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202102020\"\r\n}", - "x-ms-client-request-id" : "dab3fd53-b5b1-4ec4-bb9c-ff83d77b3153", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202103160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dffad90d-e5fc-42f8-b7ea-ef102ea8ac68", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "221797ca-a2c7-4c8c-915d-a9dd8778f84e", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11075,Microsoft.Compute/GetVMImageFromLocation30Min;72075", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:221797ca-a2c7-4c8c-915d-a9dd8778f84e", - "Expires" : "-1", - "x-ms-request-id" : "855916a7-d91b-43dd-8e9e-a9bf857154a6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202103160\"\r\n}", - "x-ms-client-request-id" : "dffad90d-e5fc-42f8-b7ea-ef102ea8ac68", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ac9a3c8-53b5-4822-a61b-67fd08fd59b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95b1d2fd-cafc-42ae-adc2-f47c255d11d4", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11071,Microsoft.Compute/GetVMImageFromLocation30Min;72071", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:95b1d2fd-cafc-42ae-adc2-f47c255d11d4", - "Expires" : "-1", - "x-ms-request-id" : "df6b2afa-a039-439b-b60a-ad7384ff4bee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202003170\"\r\n}", - "x-ms-client-request-id" : "1ac9a3c8-53b5-4822-a61b-67fd08fd59b1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202004010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90b493af-2d18-459e-8dc9-37b6cd543422", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a86eeef5-08a6-4429-96ca-c54ac208d5b1", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11068,Microsoft.Compute/GetVMImageFromLocation30Min;72068", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:a86eeef5-08a6-4429-96ca-c54ac208d5b1", - "Expires" : "-1", - "x-ms-request-id" : "2f988ee2-6971-4ea8-84c5-35f2fa6138aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202004010\"\r\n}", - "x-ms-client-request-id" : "90b493af-2d18-459e-8dc9-37b6cd543422", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202011120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3122cdf-30bf-4b77-b3bb-fc87d50190d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ef61601-1e5f-4e5c-a7ed-34168e355056", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11066,Microsoft.Compute/GetVMImageFromLocation30Min;72066", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:6ef61601-1e5f-4e5c-a7ed-34168e355056", - "Expires" : "-1", - "x-ms-request-id" : "67a8af96-1dfd-4cd8-bbcd-33cb3407189c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202011120\"\r\n}", - "x-ms-client-request-id" : "c3122cdf-30bf-4b77-b3bb-fc87d50190d6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202005290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12bd3e32-aca9-4b30-b87b-893361f2ee22", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "688fc607-ebe7-4a51-be30-603ac04a9e15", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11060,Microsoft.Compute/GetVMImageFromLocation30Min;72060", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:688fc607-ebe7-4a51-be30-603ac04a9e15", - "Expires" : "-1", - "x-ms-request-id" : "7d72df80-1a46-48ed-8b4b-1127f3c0c533", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202005290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202005290\"\r\n}", - "x-ms-client-request-id" : "12bd3e32-aca9-4b30-b87b-893361f2ee22", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202008070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90d2f3b8-6631-4d55-80b0-04200af0f5db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39bb9f81-6fc9-4c21-a583-ed30fc203474", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11069,Microsoft.Compute/GetVMImageFromLocation30Min;72069", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:39bb9f81-6fc9-4c21-a583-ed30fc203474", - "Expires" : "-1", - "x-ms-request-id" : "c8c15126-98c0-433e-9ff5-098240bbe75f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202008070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202008070\"\r\n}", - "x-ms-client-request-id" : "90d2f3b8-6631-4d55-80b0-04200af0f5db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34d1c943-d0c1-41a1-aa20-c528492f369f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f94b265b-ac29-42c7-b0e1-d3f2417303f5", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11061,Microsoft.Compute/GetVMImageFromLocation30Min;72061", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:f94b265b-ac29-42c7-b0e1-d3f2417303f5", - "Expires" : "-1", - "x-ms-request-id" : "c2388815-552f-4bda-9d01-00810ca7227a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202101120\"\r\n}", - "x-ms-client-request-id" : "34d1c943-d0c1-41a1-aa20-c528492f369f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202103291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd5944e0-0397-4ac1-b84d-d6ae510f9fa4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a25bf4c-bc61-4045-b0f8-4c10b9857879", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11059,Microsoft.Compute/GetVMImageFromLocation30Min;72059", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:4a25bf4c-bc61-4045-b0f8-4c10b9857879", - "Expires" : "-1", - "x-ms-request-id" : "b8e5479d-5a54-42ac-9274-dc20e87c2586", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202103291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202103291\"\r\n}", - "x-ms-client-request-id" : "cd5944e0-0397-4ac1-b84d-d6ae510f9fa4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202104160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd20a1db-e1d9-4bd2-a313-2017e9e4af2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aad9181d-fe11-45a6-8eb7-c00a3c70e16e", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11064,Microsoft.Compute/GetVMImageFromLocation30Min;72064", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:aad9181d-fe11-45a6-8eb7-c00a3c70e16e", - "Expires" : "-1", - "x-ms-request-id" : "e66e5d60-59b7-435b-a1b7-273eda8933ee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202104160\"\r\n}", - "x-ms-client-request-id" : "cd20a1db-e1d9-4bd2-a313-2017e9e4af2d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201910110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b391cebb-effd-41a6-8958-308e5ffb6b75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a141fbd-124e-4eb9-b94f-30df34f1cbc2", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11083,Microsoft.Compute/GetVMImageFromLocation30Min;72083", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:4a141fbd-124e-4eb9-b94f-30df34f1cbc2", - "Expires" : "-1", - "x-ms-request-id" : "d81bd903-ee43-48bc-aa42-889b28b6623f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910110\"\r\n}", - "x-ms-client-request-id" : "b391cebb-effd-41a6-8958-308e5ffb6b75", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201910310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42c14d99-17b9-4581-b0d8-3a4c25d7a17a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c4056dc3-ceed-4c9d-b4cb-7bd4669be12f", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11086,Microsoft.Compute/GetVMImageFromLocation30Min;72086", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:c4056dc3-ceed-4c9d-b4cb-7bd4669be12f", - "Expires" : "-1", - "x-ms-request-id" : "62526701-6789-4a08-b71e-7a95b5bf30a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201910310\"\r\n}", - "x-ms-client-request-id" : "42c14d99-17b9-4581-b0d8-3a4c25d7a17a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202001290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a06a924-c556-4402-ab33-7512f29a7fa2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "72955575-1949-422d-a02c-e130efe3c321", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11063,Microsoft.Compute/GetVMImageFromLocation30Min;72063", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:72955575-1949-422d-a02c-e130efe3c321", - "Expires" : "-1", - "x-ms-request-id" : "e5a37db1-df17-4ded-b138-cfb71fb22f22", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202001290\"\r\n}", - "x-ms-client-request-id" : "9a06a924-c556-4402-ab33-7512f29a7fa2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50e30536-a95a-4cc1-946d-c84500639f9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43365f78-b616-4ff6-981a-609cca5c0fff", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11065,Microsoft.Compute/GetVMImageFromLocation30Min;72065", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:43365f78-b616-4ff6-981a-609cca5c0fff", - "Expires" : "-1", - "x-ms-request-id" : "ea1de124-7605-4da1-ad6a-0cf07ad55492", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202012010\"\r\n}", - "x-ms-client-request-id" : "50e30536-a95a-4cc1-946d-c84500639f9d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "046f0cb4-92bc-4b59-88da-6732533854ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfc8137c-d4dd-4ac6-8463-5ca022119b42", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11058,Microsoft.Compute/GetVMImageFromLocation30Min;72058", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:cfc8137c-d4dd-4ac6-8463-5ca022119b42", - "Expires" : "-1", - "x-ms-request-id" : "10d10639-382e-418d-9fca-fe16364e1b4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202109280\"\r\n}", - "x-ms-client-request-id" : "046f0cb4-92bc-4b59-88da-6732533854ee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202104140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80ba8196-aa7d-4046-8bbc-1879055dbfce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c49d430-fba1-4a39-94c2-f8c7204992d9", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11062,Microsoft.Compute/GetVMImageFromLocation30Min;72062", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:9c49d430-fba1-4a39-94c2-f8c7204992d9", - "Expires" : "-1", - "x-ms-request-id" : "e017d1c5-cded-43c6-bf63-b11c00ad8128", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202104140\"\r\n}", - "x-ms-client-request-id" : "80ba8196-aa7d-4046-8bbc-1879055dbfce", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202002181?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ac1371d-f630-4a6c-bb93-3c283b288369", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aabb0d46-62c8-4493-bfd1-d4380ce4952a", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11057,Microsoft.Compute/GetVMImageFromLocation30Min;72057", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:aabb0d46-62c8-4493-bfd1-d4380ce4952a", - "Expires" : "-1", - "x-ms-request-id" : "ebf5b82f-cdcc-4ced-b219-2fc8047f53b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202002181\"\r\n}", - "x-ms-client-request-id" : "2ac1371d-f630-4a6c-bb93-3c283b288369", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202002040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a9c1b53-6016-4aa6-ad8e-66597d4be3ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9411983-a347-4947-93c9-167a09f4e737", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11055,Microsoft.Compute/GetVMImageFromLocation30Min;72055", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:e9411983-a347-4947-93c9-167a09f4e737", - "Expires" : "-1", - "x-ms-request-id" : "51ab8105-784b-4896-8733-9a31d01e8dad", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202002040\"\r\n}", - "x-ms-client-request-id" : "4a9c1b53-6016-4aa6-ad8e-66597d4be3ca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202006100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15714a05-90be-4500-9cfc-6793905bec36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7eed9465-ce5e-4978-83b9-1e16736b0a7b", - "Date" : "Tue, 24 May 2022 13:02:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11056,Microsoft.Compute/GetVMImageFromLocation30Min;72056", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:7eed9465-ce5e-4978-83b9-1e16736b0a7b", - "Expires" : "-1", - "x-ms-request-id" : "98c0c041-01e9-42b5-a9c4-bf43e9c2c860", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202006100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202006100\"\r\n}", - "x-ms-client-request-id" : "15714a05-90be-4500-9cfc-6793905bec36", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202012030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c337ae3a-4d5a-4c1d-8211-2ec190ee7e5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "194b52bd-dc2e-4e1c-a008-3f68110afb1c", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11054,Microsoft.Compute/GetVMImageFromLocation30Min;72054", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:194b52bd-dc2e-4e1c-a008-3f68110afb1c", - "Expires" : "-1", - "x-ms-request-id" : "f41b90ee-d08a-43e5-a1cb-3d3ef25e3061", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202012030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202012030\"\r\n}", - "x-ms-client-request-id" : "c337ae3a-4d5a-4c1d-8211-2ec190ee7e5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202104290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b932a38-3f2f-4e5e-9ef8-7edfd6a0ce18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "016c1a21-d1e1-4600-89ee-bd7091c23a50", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11049,Microsoft.Compute/GetVMImageFromLocation30Min;72049", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:016c1a21-d1e1-4600-89ee-bd7091c23a50", - "Expires" : "-1", - "x-ms-request-id" : "a91279b3-7f0c-4921-ae5f-7ee133a9e5c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202104290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202104290\"\r\n}", - "x-ms-client-request-id" : "0b932a38-3f2f-4e5e-9ef8-7edfd6a0ce18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202004070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d997179-345f-4316-a9bc-514b749b2213", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28b4bff0-df2d-4650-829b-56a29af49e4c", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11052,Microsoft.Compute/GetVMImageFromLocation30Min;72052", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:28b4bff0-df2d-4650-829b-56a29af49e4c", - "Expires" : "-1", - "x-ms-request-id" : "f597f9cd-ef11-4ec7-a6dd-c0e0695e8bdc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202004070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202004070\"\r\n}", - "x-ms-client-request-id" : "4d997179-345f-4316-a9bc-514b749b2213", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202101190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "440cc439-48c2-479b-bc8b-4724f55e4fd5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "414699dc-ac46-4b53-af2b-6b3cd1e83265", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11053,Microsoft.Compute/GetVMImageFromLocation30Min;72053", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:414699dc-ac46-4b53-af2b-6b3cd1e83265", - "Expires" : "-1", - "x-ms-request-id" : "0c7bb2c7-45c0-4e88-b288-21784c8ad58a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202101190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202101190\"\r\n}", - "x-ms-client-request-id" : "440cc439-48c2-479b-bc8b-4724f55e4fd5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202009220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59d7a5ee-47cf-420f-b252-9c9362410607", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "144b2dc9-5a37-444c-b6cd-f576dca4bbc7", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11078,Microsoft.Compute/GetVMImageFromLocation30Min;72078", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:144b2dc9-5a37-444c-b6cd-f576dca4bbc7", - "Expires" : "-1", - "x-ms-request-id" : "5eae27fb-a17e-4969-a3e3-7e883b8fa769", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202009220\"\r\n}", - "x-ms-client-request-id" : "59d7a5ee-47cf-420f-b252-9c9362410607", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202002120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f959933-edb0-4d36-8aac-d97e25544229", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b4604d3-a17e-487e-a0ce-2b521d69b9bc", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11048,Microsoft.Compute/GetVMImageFromLocation30Min;72048", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:7b4604d3-a17e-487e-a0ce-2b521d69b9bc", - "Expires" : "-1", - "x-ms-request-id" : "b0df9e5b-450d-45dc-b7b6-434436058a39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202002120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202002120\"\r\n}", - "x-ms-client-request-id" : "9f959933-edb0-4d36-8aac-d97e25544229", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.201909110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53f12345-3c6e-4908-a0e6-86c31eb3cff6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56683339-1a8b-4061-99e8-08444fb10042", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11051,Microsoft.Compute/GetVMImageFromLocation30Min;72051", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:56683339-1a8b-4061-99e8-08444fb10042", - "Expires" : "-1", - "x-ms-request-id" : "06a1ffe5-b8d5-458c-a22f-645903051dcc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201909110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.201909110\"\r\n}", - "x-ms-client-request-id" : "53f12345-3c6e-4908-a0e6-86c31eb3cff6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202001070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6bd35b6-d65a-4693-835a-70aee00b556c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ad1d197-23b8-4f3e-924b-1a46cb910f69", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11050,Microsoft.Compute/GetVMImageFromLocation30Min;72050", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:3ad1d197-23b8-4f3e-924b-1a46cb910f69", - "Expires" : "-1", - "x-ms-request-id" : "76ab5f3e-8908-4a07-9088-1e1e1c93b469", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202001070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202001070\"\r\n}", - "x-ms-client-request-id" : "f6bd35b6-d65a-4693-835a-70aee00b556c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16_04_0-lts-gen2/versions/16.04.202102260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "543c6eda-2719-4b47-b00f-235ccef0a50f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7bbe046-5e67-452f-ae8f-eb7cc22ae801", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11047,Microsoft.Compute/GetVMImageFromLocation30Min;72047", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130223Z:f7bbe046-5e67-452f-ae8f-eb7cc22ae801", - "Expires" : "-1", - "x-ms-request-id" : "c9382570-e658-4aa4-a8ea-2b6b93b913c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.202102260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16_04_0-lts-gen2/Versions/16.04.202102260\"\r\n}", - "x-ms-client-request-id" : "543c6eda-2719-4b47-b00f-235ccef0a50f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd348115-ac54-4334-bbfd-4dbc0411128d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5154", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c6c9a11-b167-4aee-85bd-b248407abb8c", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15837,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:6c6c9a11-b167-4aee-85bd-b248407abb8c", - "Expires" : "-1", - "x-ms-request-id" : "2623be85-426f-4eaa-adcb-0f6acc485021", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908011\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908011\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205180\"\r\n }\r\n]", - "x-ms-client-request-id" : "dd348115-ac54-4334-bbfd-4dbc0411128d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201907260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3e349dc-1190-4df9-b2c9-0021dc40dd99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed604dbc-d8b9-4919-b37a-03efc7b944b9", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11043,Microsoft.Compute/GetVMImageFromLocation30Min;72043", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:ed604dbc-d8b9-4919-b37a-03efc7b944b9", - "Expires" : "-1", - "x-ms-request-id" : "3dafde7c-e8cf-450c-af30-77d40c189fe0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907260\"\r\n}", - "x-ms-client-request-id" : "e3e349dc-1190-4df9-b2c9-0021dc40dd99", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "800b1047-8c81-4bd2-b0fd-cba2aa8d3796", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1e1da962-e408-4eb8-91e2-860664aca828", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11041,Microsoft.Compute/GetVMImageFromLocation30Min;72041", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:1e1da962-e408-4eb8-91e2-860664aca828", - "Expires" : "-1", - "x-ms-request-id" : "54d09dd8-4725-452e-9928-4a288cedeb9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205180\"\r\n}", - "x-ms-client-request-id" : "800b1047-8c81-4bd2-b0fd-cba2aa8d3796", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ceec10c-cd20-4a2f-a5b8-a04a43ca0d9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4efc3679-dfbc-46fd-bc98-5db0a28b5c22", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11039,Microsoft.Compute/GetVMImageFromLocation30Min;72039", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:4efc3679-dfbc-46fd-bc98-5db0a28b5c22", - "Expires" : "-1", - "x-ms-request-id" : "7531de31-4257-4d4e-973b-a1c5e25ff689", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205060\"\r\n}", - "x-ms-client-request-id" : "4ceec10c-cd20-4a2f-a5b8-a04a43ca0d9f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b736b8aa-8b92-4277-8636-4fb7bc07657c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3796135f-53cf-4d18-b588-cb50917f1931", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11038,Microsoft.Compute/GetVMImageFromLocation30Min;72038", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:3796135f-53cf-4d18-b588-cb50917f1931", - "Expires" : "-1", - "x-ms-request-id" : "f751cc7b-4c34-4c0b-804c-698b9b6595ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205090\"\r\n}", - "x-ms-client-request-id" : "b736b8aa-8b92-4277-8636-4fb7bc07657c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6f3cbc9-ea6a-4f1d-966d-65f044a75e62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41ad0eac-ba2d-4c1d-8205-d0627bbfa5af", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11044,Microsoft.Compute/GetVMImageFromLocation30Min;72044", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:41ad0eac-ba2d-4c1d-8205-d0627bbfa5af", - "Expires" : "-1", - "x-ms-request-id" : "32fa0800-8e9a-4f90-a8be-5fe196d230e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205100\"\r\n}", - "x-ms-client-request-id" : "e6f3cbc9-ea6a-4f1d-966d-65f044a75e62", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202205130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00ee5a7a-9909-40fe-a24e-6fe6615bda20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77af32c4-a643-4868-9e34-c09e906ccd51", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11042,Microsoft.Compute/GetVMImageFromLocation30Min;72042", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:77af32c4-a643-4868-9e34-c09e906ccd51", - "Expires" : "-1", - "x-ms-request-id" : "62a99b09-ad6f-48ef-ae90-2dc63a608fce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205130\"\r\n}", - "x-ms-client-request-id" : "00ee5a7a-9909-40fe-a24e-6fe6615bda20", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201907221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1482f2d6-e16d-483c-aa6f-a6f98bb2b71d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88cf50e7-4aff-4d62-baa2-3f3aaf38c69f", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11045,Microsoft.Compute/GetVMImageFromLocation30Min;72045", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:88cf50e7-4aff-4d62-baa2-3f3aaf38c69f", - "Expires" : "-1", - "x-ms-request-id" : "dff00f6a-15ba-46af-b0b3-91d1343ec15a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907221\"\r\n}", - "x-ms-client-request-id" : "1482f2d6-e16d-483c-aa6f-a6f98bb2b71d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a501f3f0-97da-4b6b-bd8b-a4ccdefa1251", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47bee9f2-5b83-4bf7-86ea-6e0215ead904", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11040,Microsoft.Compute/GetVMImageFromLocation30Min;72040", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:47bee9f2-5b83-4bf7-86ea-6e0215ead904", - "Expires" : "-1", - "x-ms-request-id" : "37244006-62f2-4042-b688-511afac6538b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202205050\"\r\n}", - "x-ms-client-request-id" : "a501f3f0-97da-4b6b-bd8b-a4ccdefa1251", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201908140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b507478f-ae8f-4908-90b6-dc55e7b8e979", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c1bfdcb-d821-4466-8a4b-a62917cc9c83", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11046,Microsoft.Compute/GetVMImageFromLocation30Min;72046", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:0c1bfdcb-d821-4466-8a4b-a62917cc9c83", - "Expires" : "-1", - "x-ms-request-id" : "63a8ad73-33be-4d6d-aa68-e0e4b9d9cdd8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908140\"\r\n}", - "x-ms-client-request-id" : "b507478f-ae8f-4908-90b6-dc55e7b8e979", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201908070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "964d2923-c9b7-454b-831c-eaae4d33d580", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11786", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1f4ee62-529a-476c-a244-5a3500cfa6bc", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11035,Microsoft.Compute/GetVMImageFromLocation30Min;72035", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:e1f4ee62-529a-476c-a244-5a3500cfa6bc", - "Expires" : "-1", - "x-ms-request-id" : "0e74bb8f-8d20-43c4-be0f-0c2b03fbf8b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908070\"\r\n}", - "x-ms-client-request-id" : "964d2923-c9b7-454b-831c-eaae4d33d580", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201908131?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "623bc5a5-11ff-4605-a883-364b757022dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b32e9162-f045-48e4-b7f9-88abd8f12bb4", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11034,Microsoft.Compute/GetVMImageFromLocation30Min;72034", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:b32e9162-f045-48e4-b7f9-88abd8f12bb4", - "Expires" : "-1", - "x-ms-request-id" : "51455b69-b4b5-4209-81a1-08ec7155ffd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908131\"\r\n}", - "x-ms-client-request-id" : "623bc5a5-11ff-4605-a883-364b757022dd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201907241?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7dfa190-cb18-45fc-b5b7-e77be9674cc5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bf83e38-daf1-4feb-9023-8c6d68d51ba4", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11033,Microsoft.Compute/GetVMImageFromLocation30Min;72033", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:1bf83e38-daf1-4feb-9023-8c6d68d51ba4", - "Expires" : "-1", - "x-ms-request-id" : "17629de3-f05e-4b7b-ac17-d63fb4a4dc62", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907241\"\r\n}", - "x-ms-client-request-id" : "c7dfa190-cb18-45fc-b5b7-e77be9674cc5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201908011?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52e04f99-1abc-4868-a256-8976c672cc18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c81ebf8-a2ee-4897-9a90-96012847f64a", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11037,Microsoft.Compute/GetVMImageFromLocation30Min;72037", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:7c81ebf8-a2ee-4897-9a90-96012847f64a", - "Expires" : "-1", - "x-ms-request-id" : "bbd3308a-ff43-4322-b622-1c3993c9ad18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908011\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201908011\"\r\n}", - "x-ms-client-request-id" : "52e04f99-1abc-4868-a256-8976c672cc18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201907310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac0c2152-26c1-4b12-8068-a4b6f8784a3c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "120ceef4-f367-44a3-8fb0-fce4c548e952", - "Date" : "Tue, 24 May 2022 13:02:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11036,Microsoft.Compute/GetVMImageFromLocation30Min;72036", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:120ceef4-f367-44a3-8fb0-fce4c548e952", - "Expires" : "-1", - "x-ms-request-id" : "7d61a593-8626-4d42-8212-1b9c019ecdda", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201907310\"\r\n}", - "x-ms-client-request-id" : "ac0c2152-26c1-4b12-8068-a4b6f8784a3c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201909140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62c48c94-44a2-4da7-988a-7abfab0c6661", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce706e9c-19cd-42fa-9f97-d751a07ffebe", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11032,Microsoft.Compute/GetVMImageFromLocation30Min;72032", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:ce706e9c-19cd-42fa-9f97-d751a07ffebe", - "Expires" : "-1", - "x-ms-request-id" : "a5a1f1dc-62df-4668-b8ca-e001e8001b23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909140\"\r\n}", - "x-ms-client-request-id" : "62c48c94-44a2-4da7-988a-7abfab0c6661", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.201909030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c43db8c-112f-4fcf-a111-1d1f75a97532", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "90f5a321-7e45-4d8d-8b0f-5054144d409c", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11031,Microsoft.Compute/GetVMImageFromLocation30Min;72031", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130224Z:90f5a321-7e45-4d8d-8b0f-5054144d409c", - "Expires" : "-1", - "x-ms-request-id" : "2a2eb0b5-d7b0-4bc9-adf7-d4023ef24608", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.201909030\"\r\n}", - "x-ms-client-request-id" : "5c43db8c-112f-4fcf-a111-1d1f75a97532", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-DAILY-LTS/versions/18.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04e993a4-b93e-425a-b334-7223ab7c4bc4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1064", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31203c58-6581-499e-8053-dc3922691418", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11030,Microsoft.Compute/GetVMImageFromLocation30Min;72030", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:31203c58-6581-499e-8053-dc3922691418", - "Expires" : "-1", - "x-ms-request-id" : "39f9bcf6-b812-4633-a8d9-4bdf0ca66012", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-DAILY-LTS/Versions/18.04.202204290\"\r\n}", - "x-ms-client-request-id" : "04e993a4-b93e-425a-b334-7223ab7c4bc4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf13d8e7-c2ee-45e5-a40b-b4d3109b9459", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "33564", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4268edef-7fc5-48dc-8fd0-e62f30ccafa5", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15836,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:4268edef-7fc5-48dc-8fd0-e62f30ccafa5", - "Expires" : "-1", - "x-ms-request-id" : "2867bf7e-31dc-498c-b899-f908aae2b6fe", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201804262\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201804262\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201805170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201805170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201805220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201806130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201806130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201806170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201806170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201807240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201807240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201809110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201809110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201810030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201810030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201810240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201810240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201810290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201810290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201811010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201811010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201812031\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201812031\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201812040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201812040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201812060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201812060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201902060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201902060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201902121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201902121\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201902190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201902190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201903060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201903060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201903121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201903121\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201903200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201903200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201904020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201904020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201904170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201904170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201905290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201905290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201906040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201906040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201906170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201906170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201906271\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201906271\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201907080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201907221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201908131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201908220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202001210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202001291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202003250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202004080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202005220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202005220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202006101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202006101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202007081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202007160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202008120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202008180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202009010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202009220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202011120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202012111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202102240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202102240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202103151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202105010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202105120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202106040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202110250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202112020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202202020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202205100\"\r\n }\r\n]", - "x-ms-client-request-id" : "bf13d8e7-c2ee-45e5-a40b-b4d3109b9459", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201806130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ea29f73-144f-4bbe-ad9a-0b377015e40b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b3fde68-a778-45f8-8063-6915100263b9", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11029,Microsoft.Compute/GetVMImageFromLocation30Min;72029", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:5b3fde68-a778-45f8-8063-6915100263b9", - "Expires" : "-1", - "x-ms-request-id" : "c233fe67-9776-41a5-ae5f-248e263092f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201806130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201806130\"\r\n}", - "x-ms-client-request-id" : "9ea29f73-144f-4bbe-ad9a-0b377015e40b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201810030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb692c68-9b98-4af0-8ef7-4eaa81f3ad2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19e33c77-0060-4f01-a17a-0818fdae24e7", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11021,Microsoft.Compute/GetVMImageFromLocation30Min;72021", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:19e33c77-0060-4f01-a17a-0818fdae24e7", - "Expires" : "-1", - "x-ms-request-id" : "8cd31e2c-6294-4b29-aecf-e162b610a637", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201810030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201810030\"\r\n}", - "x-ms-client-request-id" : "cb692c68-9b98-4af0-8ef7-4eaa81f3ad2d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201902190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db57893e-b72a-4e55-a3f0-b16450f87def", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c173aa9-d6ed-4c17-b970-2f7fb540591c", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11019,Microsoft.Compute/GetVMImageFromLocation30Min;72019", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:0c173aa9-d6ed-4c17-b970-2f7fb540591c", - "Expires" : "-1", - "x-ms-request-id" : "17e1a42f-d19d-425f-8c2d-422758a4ac5b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201902190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201902190\"\r\n}", - "x-ms-client-request-id" : "db57893e-b72a-4e55-a3f0-b16450f87def", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201808080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1637a53-6aa0-4d26-a818-b799639a2ec2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e47d895-05f9-4c71-ac4f-e19dadfc10e9", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11026,Microsoft.Compute/GetVMImageFromLocation30Min;72026", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:4e47d895-05f9-4c71-ac4f-e19dadfc10e9", - "Expires" : "-1", - "x-ms-request-id" : "5e4f7058-427a-4579-96bd-b0f252ef285d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808080\"\r\n}", - "x-ms-client-request-id" : "d1637a53-6aa0-4d26-a818-b799639a2ec2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201811010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b459d74-b87e-4312-9b23-df7ceb5e8570", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "832b0d93-6d7b-4de7-9244-69160104da71", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11018,Microsoft.Compute/GetVMImageFromLocation30Min;72018", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:832b0d93-6d7b-4de7-9244-69160104da71", - "Expires" : "-1", - "x-ms-request-id" : "7d47ff23-b286-4d7f-91af-5f068a24575f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201811010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201811010\"\r\n}", - "x-ms-client-request-id" : "6b459d74-b87e-4312-9b23-df7ceb5e8570", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201901140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8cf0075-5250-4e7f-b98c-91ed887d055c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6210deb7-841d-497b-9724-00c424197d14", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11024,Microsoft.Compute/GetVMImageFromLocation30Min;72024", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:6210deb7-841d-497b-9724-00c424197d14", - "Expires" : "-1", - "x-ms-request-id" : "b56bf753-3297-42cc-a894-35580c1a5a76", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901140\"\r\n}", - "x-ms-client-request-id" : "b8cf0075-5250-4e7f-b98c-91ed887d055c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201902060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00dc2a9a-941d-4dfb-83f3-0e2eb1cea838", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03960833-ce21-4472-8f5e-31639f37acaa", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11012,Microsoft.Compute/GetVMImageFromLocation30Min;72012", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:03960833-ce21-4472-8f5e-31639f37acaa", - "Expires" : "-1", - "x-ms-request-id" : "80303f11-2666-4fbf-b3b1-8e4581bb38a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201902060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201902060\"\r\n}", - "x-ms-client-request-id" : "00dc2a9a-941d-4dfb-83f3-0e2eb1cea838", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201809110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b116c48c-6821-451d-a8f5-efd840279251", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a634be3f-6045-4f54-82c5-f5e1cef762c4", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11022,Microsoft.Compute/GetVMImageFromLocation30Min;72022", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:a634be3f-6045-4f54-82c5-f5e1cef762c4", - "Expires" : "-1", - "x-ms-request-id" : "eeb4f6ea-6826-49ee-aa85-c73e560545bd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201809110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201809110\"\r\n}", - "x-ms-client-request-id" : "b116c48c-6821-451d-a8f5-efd840279251", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201901220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c59b4e8-0b32-4898-a987-f737dbedb249", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5d8777b-68ff-417f-9726-6c8c6eb71f01", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11017,Microsoft.Compute/GetVMImageFromLocation30Min;72017", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:a5d8777b-68ff-417f-9726-6c8c6eb71f01", - "Expires" : "-1", - "x-ms-request-id" : "dad567d7-a890-43c4-8a7c-c7487adb1841", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901220\"\r\n}", - "x-ms-client-request-id" : "6c59b4e8-0b32-4898-a987-f737dbedb249", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201903060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9cf4c0c-144d-41da-916a-7bbdf408a5ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1a2622f-aac3-4a3c-a2a0-318812c17041", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11014,Microsoft.Compute/GetVMImageFromLocation30Min;72014", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:d1a2622f-aac3-4a3c-a2a0-318812c17041", - "Expires" : "-1", - "x-ms-request-id" : "b6ecee03-7487-40c9-b752-f6b950bb135f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201903060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201903060\"\r\n}", - "x-ms-client-request-id" : "c9cf4c0c-144d-41da-916a-7bbdf408a5ea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201812040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "005648a9-4b56-4ed5-8ed3-f75b15f451e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01d3fcf2-80a2-4941-b836-ea5277228e08", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11007,Microsoft.Compute/GetVMImageFromLocation30Min;72007", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:01d3fcf2-80a2-4941-b836-ea5277228e08", - "Expires" : "-1", - "x-ms-request-id" : "7cabe772-b2bb-4bc9-8748-2ef82ccb6011", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201812040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201812040\"\r\n}", - "x-ms-client-request-id" : "005648a9-4b56-4ed5-8ed3-f75b15f451e7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201904170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd2372a6-b4b1-4ae4-996b-7a8bbb4eafcc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b5c9f19-607c-4e22-92ba-32aad9794d1c", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11013,Microsoft.Compute/GetVMImageFromLocation30Min;72013", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:1b5c9f19-607c-4e22-92ba-32aad9794d1c", - "Expires" : "-1", - "x-ms-request-id" : "5b5dc52f-97b2-4dbd-88b4-11e419190d3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201904170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201904170\"\r\n}", - "x-ms-client-request-id" : "bd2372a6-b4b1-4ae4-996b-7a8bbb4eafcc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1c94680-b790-4799-9097-86a24c2a9777", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "619049a1-f48e-42ff-8c72-b46b0c1a1d83", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11008,Microsoft.Compute/GetVMImageFromLocation30Min;72008", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:619049a1-f48e-42ff-8c72-b46b0c1a1d83", - "Expires" : "-1", - "x-ms-request-id" : "32e3e15d-c18c-4945-83da-b913155fe67e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201905140\"\r\n}", - "x-ms-client-request-id" : "c1c94680-b790-4799-9097-86a24c2a9777", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201905290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bba4337a-0d7b-4e1a-a1af-3470efe2b977", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9f7c80a-8e11-416a-be0d-1e4925cb4d08", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11011,Microsoft.Compute/GetVMImageFromLocation30Min;72011", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:d9f7c80a-8e11-416a-be0d-1e4925cb4d08", - "Expires" : "-1", - "x-ms-request-id" : "db7a61b2-11ca-46c2-bcfc-ab05f080477e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201905290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201905290\"\r\n}", - "x-ms-client-request-id" : "bba4337a-0d7b-4e1a-a1af-3470efe2b977", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201907080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da7c89b5-8f2b-4bb5-a120-d31be05e909e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d4b3578-38d6-4d64-8074-8840e4ee1f4f", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11010,Microsoft.Compute/GetVMImageFromLocation30Min;72010", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:6d4b3578-38d6-4d64-8074-8840e4ee1f4f", - "Expires" : "-1", - "x-ms-request-id" : "641e31e4-1813-4255-9c11-0ce3275cc35b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201907080\"\r\n}", - "x-ms-client-request-id" : "da7c89b5-8f2b-4bb5-a120-d31be05e909e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201810290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eecdfd51-756c-425e-94d8-e47215f7eb38", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e55af8f4-b9e2-4088-bdb6-8dfbc2522edc", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11023,Microsoft.Compute/GetVMImageFromLocation30Min;72023", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:e55af8f4-b9e2-4088-bdb6-8dfbc2522edc", - "Expires" : "-1", - "x-ms-request-id" : "318d4554-6e4e-47db-9140-6335d5c69023", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201810290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201810290\"\r\n}", - "x-ms-client-request-id" : "eecdfd51-756c-425e-94d8-e47215f7eb38", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201908131?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0560ae2-a04b-4ca2-a649-b7d003d9218a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75a1a27b-9d13-4b5c-bae3-5fcedc117ceb", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11002,Microsoft.Compute/GetVMImageFromLocation30Min;72002", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:75a1a27b-9d13-4b5c-bae3-5fcedc117ceb", - "Expires" : "-1", - "x-ms-request-id" : "e98dda4f-b1e3-406f-ab56-da606e04aa7c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201908131\"\r\n}", - "x-ms-client-request-id" : "a0560ae2-a04b-4ca2-a649-b7d003d9218a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201807240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f40a831-8206-4003-ac32-0cd6e3b1d0a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d236a64-ad58-4b92-bd57-9e33e67af45b", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11027,Microsoft.Compute/GetVMImageFromLocation30Min;72027", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:3d236a64-ad58-4b92-bd57-9e33e67af45b", - "Expires" : "-1", - "x-ms-request-id" : "8bf50aa9-d097-4ec8-b0ef-24b26a99f7e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201807240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201807240\"\r\n}", - "x-ms-client-request-id" : "2f40a831-8206-4003-ac32-0cd6e3b1d0a1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201810240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "393d7c29-adb5-4661-a327-13f5ececdbe1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "086962ff-71c4-49bb-8ac7-705066fa31ba", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11000,Microsoft.Compute/GetVMImageFromLocation30Min;72000", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:086962ff-71c4-49bb-8ac7-705066fa31ba", - "Expires" : "-1", - "x-ms-request-id" : "a3f90c8d-0325-4434-9808-f814542b2f70", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201810240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201810240\"\r\n}", - "x-ms-client-request-id" : "393d7c29-adb5-4661-a327-13f5ececdbe1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201902121?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f13c6e7-0bb2-42fa-808b-8b28db07917d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "efcc08f0-9269-43ac-85e1-561fb09bae0e", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10996,Microsoft.Compute/GetVMImageFromLocation30Min;71996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:efcc08f0-9269-43ac-85e1-561fb09bae0e", - "Expires" : "-1", - "x-ms-request-id" : "3a30e8aa-5961-4fce-a71d-4bb971c4f5f2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201902121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201902121\"\r\n}", - "x-ms-client-request-id" : "6f13c6e7-0bb2-42fa-808b-8b28db07917d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201909020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "750b44d3-0e25-4f6d-a82f-ad086bb298e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10462f76-c083-4a3c-a86e-2ad418c3a5c8", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11006,Microsoft.Compute/GetVMImageFromLocation30Min;72006", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:10462f76-c083-4a3c-a86e-2ad418c3a5c8", - "Expires" : "-1", - "x-ms-request-id" : "5532645a-ea1c-4531-afac-8515d55ba16e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909020\"\r\n}", - "x-ms-client-request-id" : "750b44d3-0e25-4f6d-a82f-ad086bb298e8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201909030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4488bf7-9f30-4db3-a517-e83a55863f53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9be42669-9bee-4bd8-a217-4aebf4305fdd", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10994,Microsoft.Compute/GetVMImageFromLocation30Min;71994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:9be42669-9bee-4bd8-a217-4aebf4305fdd", - "Expires" : "-1", - "x-ms-request-id" : "e88d2bf2-eba6-4a38-acbe-99aa10401ba2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909030\"\r\n}", - "x-ms-client-request-id" : "e4488bf7-9f30-4db3-a517-e83a55863f53", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201805170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23267eed-6dc3-41de-93c8-8bc5dc0c3e9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8ebcb43-ea88-47d8-a8b3-c2d450c0419a", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11001,Microsoft.Compute/GetVMImageFromLocation30Min;72001", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:b8ebcb43-ea88-47d8-a8b3-c2d450c0419a", - "Expires" : "-1", - "x-ms-request-id" : "7840a7d7-5a98-4641-a88a-6be0e06fce08", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201805170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201805170\"\r\n}", - "x-ms-client-request-id" : "23267eed-6dc3-41de-93c8-8bc5dc0c3e9f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201804262?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcebfc54-5034-4bd2-990e-098715f9571c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebe09840-46ae-4539-b58d-2a5dd6a3ac2c", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11020,Microsoft.Compute/GetVMImageFromLocation30Min;72020", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:ebe09840-46ae-4539-b58d-2a5dd6a3ac2c", - "Expires" : "-1", - "x-ms-request-id" : "655395ec-1ea7-4fbd-a97e-0e7502c70f6c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201804262\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201804262\"\r\n}", - "x-ms-client-request-id" : "fcebfc54-5034-4bd2-990e-098715f9571c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201812060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "beef7aa9-7b76-411f-9d9b-b0ab99c8c54b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c998cba-29ec-466a-96a7-4d715367e385", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10999,Microsoft.Compute/GetVMImageFromLocation30Min;71999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:5c998cba-29ec-466a-96a7-4d715367e385", - "Expires" : "-1", - "x-ms-request-id" : "9787c025-c45b-45fd-84d8-da71309a8f71", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201812060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201812060\"\r\n}", - "x-ms-client-request-id" : "beef7aa9-7b76-411f-9d9b-b0ab99c8c54b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201903121?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20b23b03-1b0b-4eb2-bbff-dc37ad96f587", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0eab102-9780-4e38-be7c-ddcf583276dc", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11003,Microsoft.Compute/GetVMImageFromLocation30Min;72003", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:d0eab102-9780-4e38-be7c-ddcf583276dc", - "Expires" : "-1", - "x-ms-request-id" : "89ec2a4f-27cc-4dd2-8f37-0d4b20a2f735", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201903121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201903121\"\r\n}", - "x-ms-client-request-id" : "20b23b03-1b0b-4eb2-bbff-dc37ad96f587", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201909120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee5d37b7-05fa-439a-a109-9febfe4fa628", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "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" : "7398c69d-ec8a-4228-81d3-1f4745168336", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10997,Microsoft.Compute/GetVMImageFromLocation30Min;71997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:7398c69d-ec8a-4228-81d3-1f4745168336", - "Expires" : "-1", - "x-ms-request-id" : "4537a142-576a-4c77-be11-0541d750ef7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909120\"\r\n}", - "x-ms-client-request-id" : "ee5d37b7-05fa-439a-a109-9febfe4fa628", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201904020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd1f14f6-3956-4c41-b41c-d92864f8fedb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b8b27ea-0089-4863-a6f6-485afb6c3777", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11004,Microsoft.Compute/GetVMImageFromLocation30Min;72004", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:9b8b27ea-0089-4863-a6f6-485afb6c3777", - "Expires" : "-1", - "x-ms-request-id" : "c92b6560-a54a-4a72-b99c-97f3731e2b04", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201904020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201904020\"\r\n}", - "x-ms-client-request-id" : "fd1f14f6-3956-4c41-b41c-d92864f8fedb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201910030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46f9b02a-d1d8-4233-9976-aa0b362f427b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66b03171-ccf7-4b62-af39-fd4ad6f6dd6b", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11005,Microsoft.Compute/GetVMImageFromLocation30Min;72005", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:66b03171-ccf7-4b62-af39-fd4ad6f6dd6b", - "Expires" : "-1", - "x-ms-request-id" : "8f23c94d-c87b-4ab3-85c8-cc4127ef6f10", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910030\"\r\n}", - "x-ms-client-request-id" : "46f9b02a-d1d8-4233-9976-aa0b362f427b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201910070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0099596-4473-4281-a46d-fd8f81715115", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b522f230-ce98-4762-9318-6f4e7d364982", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10990,Microsoft.Compute/GetVMImageFromLocation30Min;71990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:b522f230-ce98-4762-9318-6f4e7d364982", - "Expires" : "-1", - "x-ms-request-id" : "45b283e8-b633-4b80-a09c-2105d2fd6f93", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910070\"\r\n}", - "x-ms-client-request-id" : "c0099596-4473-4281-a46d-fd8f81715115", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201910080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6adae3a-e497-4cae-95f0-79ecf3a10d92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64c9020b-40d0-4624-9b92-5b8edd3c1897", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10995,Microsoft.Compute/GetVMImageFromLocation30Min;71995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:64c9020b-40d0-4624-9b92-5b8edd3c1897", - "Expires" : "-1", - "x-ms-request-id" : "bea5aaef-f8d0-402e-9a5b-a67f3d0c8969", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910080\"\r\n}", - "x-ms-client-request-id" : "a6adae3a-e497-4cae-95f0-79ecf3a10d92", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201912050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c2540b7-b5fc-4645-80cf-2ea78f1e5800", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93079c7c-60c1-4adc-a8a4-9f65327ebdee", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10998,Microsoft.Compute/GetVMImageFromLocation30Min;71998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:93079c7c-60c1-4adc-a8a4-9f65327ebdee", - "Expires" : "-1", - "x-ms-request-id" : "d074fe92-7976-4406-a8b4-f2d11dbc0dd3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912050\"\r\n}", - "x-ms-client-request-id" : "6c2540b7-b5fc-4645-80cf-2ea78f1e5800", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201912180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aaa75f5-08e3-413f-bbea-90bb6bf9afb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f02a5471-092f-4530-93b8-54fa5a8b5b1c", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10992,Microsoft.Compute/GetVMImageFromLocation30Min;71992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:f02a5471-092f-4530-93b8-54fa5a8b5b1c", - "Expires" : "-1", - "x-ms-request-id" : "b7cfe39d-247e-4a60-b3e0-3386ea786301", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201912180\"\r\n}", - "x-ms-client-request-id" : "6aaa75f5-08e3-413f-bbea-90bb6bf9afb7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c21c13fe-a4a5-4439-aac5-6702cd62b501", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "882e5937-a2e2-448b-a18f-0f34605af37d", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10989,Microsoft.Compute/GetVMImageFromLocation30Min;71989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:882e5937-a2e2-448b-a18f-0f34605af37d", - "Expires" : "-1", - "x-ms-request-id" : "0c04845b-de92-4572-b6e3-e4bcad08e192", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002040\"\r\n}", - "x-ms-client-request-id" : "c21c13fe-a4a5-4439-aac5-6702cd62b501", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201901310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "181355c8-1bf6-41a8-86c0-1afb77edc611", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b4dae10f-c3a6-4923-8836-69ee4fb07a02", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11025,Microsoft.Compute/GetVMImageFromLocation30Min;72025", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:b4dae10f-c3a6-4923-8836-69ee4fb07a02", - "Expires" : "-1", - "x-ms-request-id" : "18d41a65-4789-4b45-bfed-7f4be8c044c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901310\"\r\n}", - "x-ms-client-request-id" : "181355c8-1bf6-41a8-86c0-1afb77edc611", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202009010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5dabeb8-de2e-4ceb-95c7-9d5bbd9e01ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10ca53ae-f69c-4497-b214-0e7e5cd4bcc4", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10981,Microsoft.Compute/GetVMImageFromLocation30Min;71981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:10ca53ae-f69c-4497-b214-0e7e5cd4bcc4", - "Expires" : "-1", - "x-ms-request-id" : "484a2477-c9cc-4807-aa20-db4341106954", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202009010\"\r\n}", - "x-ms-client-request-id" : "c5dabeb8-de2e-4ceb-95c7-9d5bbd9e01ca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca1a9d27-4bc2-4a69-ac6a-ac3eb2d39cc9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b2937db-86c5-4cce-bda3-9a9a12fa9b46", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10973,Microsoft.Compute/GetVMImageFromLocation30Min;71973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:5b2937db-86c5-4cce-bda3-9a9a12fa9b46", - "Expires" : "-1", - "x-ms-request-id" : "62baf438-4f57-4206-87b6-daead9c837ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "ca1a9d27-4bc2-4a69-ac6a-ac3eb2d39cc9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202101060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e1738e4-e5a4-4ce4-b6fc-c12613adf40a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31f8d6fb-a75e-485c-9e88-e56a720f1694", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10974,Microsoft.Compute/GetVMImageFromLocation30Min;71974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:31f8d6fb-a75e-485c-9e88-e56a720f1694", - "Expires" : "-1", - "x-ms-request-id" : "be17cfbd-60a9-47f7-b08a-591830155108", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101060\"\r\n}", - "x-ms-client-request-id" : "3e1738e4-e5a4-4ce4-b6fc-c12613adf40a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202011120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0043f875-6596-4535-899c-a0966bd825a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "168d34d6-14fb-4fbb-8226-4e76dbe121bd", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10975,Microsoft.Compute/GetVMImageFromLocation30Min;71975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:168d34d6-14fb-4fbb-8226-4e76dbe121bd", - "Expires" : "-1", - "x-ms-request-id" : "af87de96-2d60-40bc-b5cd-222a34e1cebe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202011120\"\r\n}", - "x-ms-client-request-id" : "0043f875-6596-4535-899c-a0966bd825a1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201806170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8af3854-4ca3-4218-b5c8-d3b4a9be96e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "790a6e6a-28ef-4d31-93ea-ac72c6a7e640", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10991,Microsoft.Compute/GetVMImageFromLocation30Min;71991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:790a6e6a-28ef-4d31-93ea-ac72c6a7e640", - "Expires" : "-1", - "x-ms-request-id" : "f8eacc7b-9cbd-481b-a5b5-8db4aa5970aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201806170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201806170\"\r\n}", - "x-ms-client-request-id" : "f8af3854-4ca3-4218-b5c8-d3b4a9be96e6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201908220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a42cde7e-c561-4fd2-8395-b44d650c665c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab66bb54-fa79-43bf-82f5-08f9fb8ceddc", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11009,Microsoft.Compute/GetVMImageFromLocation30Min;72009", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:ab66bb54-fa79-43bf-82f5-08f9fb8ceddc", - "Expires" : "-1", - "x-ms-request-id" : "14b3bd51-3d11-4287-a217-8cbec7e1b7ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201908220\"\r\n}", - "x-ms-client-request-id" : "a42cde7e-c561-4fd2-8395-b44d650c665c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202012111?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ffcb2de5-13c2-4fd6-8b08-6ab4ee568bf9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7a822fc-782c-4b39-b22f-d1249d6d1741", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10977,Microsoft.Compute/GetVMImageFromLocation30Min;71977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:a7a822fc-782c-4b39-b22f-d1249d6d1741", - "Expires" : "-1", - "x-ms-request-id" : "2a4511e6-8d04-4231-a42a-84f979a594a2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202012111\"\r\n}", - "x-ms-client-request-id" : "ffcb2de5-13c2-4fd6-8b08-6ab4ee568bf9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201906271?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fb3daa3-0eaf-4a59-89ad-1d58f3bf371e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6be24277-a8ca-46fd-93d7-2bce8edb9ae0", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10979,Microsoft.Compute/GetVMImageFromLocation30Min;71979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:6be24277-a8ca-46fd-93d7-2bce8edb9ae0", - "Expires" : "-1", - "x-ms-request-id" : "c0e691b4-d795-4a34-9e4a-4b0a36f4b9df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201906271\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201906271\"\r\n}", - "x-ms-client-request-id" : "1fb3daa3-0eaf-4a59-89ad-1d58f3bf371e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202001210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db6bf4ec-306d-4233-ae1b-7fb527e5300a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19f6876a-f29e-44ab-b410-3f66a658e065", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10986,Microsoft.Compute/GetVMImageFromLocation30Min;71986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:19f6876a-f29e-44ab-b410-3f66a658e065", - "Expires" : "-1", - "x-ms-request-id" : "64101f8d-3e5b-4cf2-b4d9-059bff7e933e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202001210\"\r\n}", - "x-ms-client-request-id" : "db6bf4ec-306d-4233-ae1b-7fb527e5300a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4349006-457c-4fd1-b2bb-6bd2611e15a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3e028ad-840b-4cff-88a0-fd3d3f6b0da9", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10988,Microsoft.Compute/GetVMImageFromLocation30Min;71988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:e3e028ad-840b-4cff-88a0-fd3d3f6b0da9", - "Expires" : "-1", - "x-ms-request-id" : "661ebe10-b6e5-4293-97b3-ab33c83b1238", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002080\"\r\n}", - "x-ms-client-request-id" : "e4349006-457c-4fd1-b2bb-6bd2611e15a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebf10515-7aba-401e-99e1-210890740c9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7fbcb38-baf1-46c0-88ea-d6ea23c491b4", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10984,Microsoft.Compute/GetVMImageFromLocation30Min;71984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:a7fbcb38-baf1-46c0-88ea-d6ea23c491b4", - "Expires" : "-1", - "x-ms-request-id" : "1bfa2d6e-8830-4385-8102-b8da273a559b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n}", - "x-ms-client-request-id" : "ebf10515-7aba-401e-99e1-210890740c9d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a49ce3d7-fc5c-4bd6-b9ee-435ca56d01cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9cfb60f9-f851-4050-8d88-6e0518308ee1", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10980,Microsoft.Compute/GetVMImageFromLocation30Min;71980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:9cfb60f9-f851-4050-8d88-6e0518308ee1", - "Expires" : "-1", - "x-ms-request-id" : "0289f20b-7852-4429-840b-afc382f82b69", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202009080\"\r\n}", - "x-ms-client-request-id" : "a49ce3d7-fc5c-4bd6-b9ee-435ca56d01cd", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202003250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb7e6f85-6f2f-4997-9d51-73a9ad36dfe5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f3de594-13e3-4f9f-850f-3ffd904dcf39", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10982,Microsoft.Compute/GetVMImageFromLocation30Min;71982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:5f3de594-13e3-4f9f-850f-3ffd904dcf39", - "Expires" : "-1", - "x-ms-request-id" : "ca40c773-2a09-4971-8157-2bddf3c69948", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202003250\"\r\n}", - "x-ms-client-request-id" : "cb7e6f85-6f2f-4997-9d51-73a9ad36dfe5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202004080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef0ff2b0-5ba4-4d65-b2c7-abe0b7af79e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4507eff-faf1-4637-a9b0-d9ac0304346a", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10983,Microsoft.Compute/GetVMImageFromLocation30Min;71983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:d4507eff-faf1-4637-a9b0-d9ac0304346a", - "Expires" : "-1", - "x-ms-request-id" : "d6cb45d4-a5bc-4c00-bfda-4971c6d68184", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202004080\"\r\n}", - "x-ms-client-request-id" : "ef0ff2b0-5ba4-4d65-b2c7-abe0b7af79e5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202009220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd987f37-77f0-4946-86ef-f7dca3d7187a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ccf34a8-c51b-4d93-a331-99d62cd63f88", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10958,Microsoft.Compute/GetVMImageFromLocation30Min;71958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:1ccf34a8-c51b-4d93-a331-99d62cd63f88", - "Expires" : "-1", - "x-ms-request-id" : "cf360e7e-50cc-45bc-843b-dcf47efa5df2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202009220\"\r\n}", - "x-ms-client-request-id" : "dd987f37-77f0-4946-86ef-f7dca3d7187a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202103151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08871975-b681-44dd-a8c5-ee0a11102616", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "182a29e3-3606-43f5-bace-c14b1ddb7af0", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10968,Microsoft.Compute/GetVMImageFromLocation30Min;71968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:182a29e3-3606-43f5-bace-c14b1ddb7af0", - "Expires" : "-1", - "x-ms-request-id" : "176951bf-ca56-4fcd-8e3d-38ab11d747f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202103151\"\r\n}", - "x-ms-client-request-id" : "08871975-b681-44dd-a8c5-ee0a11102616", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201907221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ba743bf-0bc1-4920-a50a-2a3c93b16415", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9a0690f-7995-492d-9549-36093513d33f", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10978,Microsoft.Compute/GetVMImageFromLocation30Min;71978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:e9a0690f-7995-492d-9549-36093513d33f", - "Expires" : "-1", - "x-ms-request-id" : "0b25ee9d-5649-4cf4-b4da-6132154fecaa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201907221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201907221\"\r\n}", - "x-ms-client-request-id" : "8ba743bf-0bc1-4920-a50a-2a3c93b16415", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201805220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d650a77b-b326-4c84-92c3-852dd5ea1e75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06ace1c7-f611-4666-82b5-3dc55c39fb1d", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11028,Microsoft.Compute/GetVMImageFromLocation30Min;72028", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:06ace1c7-f611-4666-82b5-3dc55c39fb1d", - "Expires" : "-1", - "x-ms-request-id" : "8856d500-d4c6-4041-92e4-001d440db584", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201805220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201805220\"\r\n}", - "x-ms-client-request-id" : "d650a77b-b326-4c84-92c3-852dd5ea1e75", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202101081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "257fc488-29ac-4696-b23d-2b52b9ac0f73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db3b6223-3c3b-424b-8c17-a5235d1823fb", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10966,Microsoft.Compute/GetVMImageFromLocation30Min;71966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:db3b6223-3c3b-424b-8c17-a5235d1823fb", - "Expires" : "-1", - "x-ms-request-id" : "07f64d23-5684-4b6f-93aa-59230af78252", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101081\"\r\n}", - "x-ms-client-request-id" : "257fc488-29ac-4696-b23d-2b52b9ac0f73", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13b02179-7bdd-419f-ba5c-9648c10ab9f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "566955bf-b4b7-40d5-8639-fd9bf904dfd4", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10961,Microsoft.Compute/GetVMImageFromLocation30Min;71961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:566955bf-b4b7-40d5-8639-fd9bf904dfd4", - "Expires" : "-1", - "x-ms-request-id" : "6c67561e-5dd4-48a7-ad8e-3fbc51f6763d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202010140\"\r\n}", - "x-ms-client-request-id" : "13b02179-7bdd-419f-ba5c-9648c10ab9f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "953d242a-69df-4ba6-b6a8-a034ecf95b29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9c97d97-0e40-43ef-a308-5fbda231599b", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10964,Microsoft.Compute/GetVMImageFromLocation30Min;71964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:d9c97d97-0e40-43ef-a308-5fbda231599b", - "Expires" : "-1", - "x-ms-request-id" : "3b3e3f3a-0509-4357-9321-6d7143881908", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "953d242a-69df-4ba6-b6a8-a034ecf95b29", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da3e82b4-7b31-40ff-b364-36aacadda1a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "317433a9-7af6-4d5a-b49f-e9ac4076bdf4", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10967,Microsoft.Compute/GetVMImageFromLocation30Min;71967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:317433a9-7af6-4d5a-b49f-e9ac4076bdf4", - "Expires" : "-1", - "x-ms-request-id" : "5c79b07c-6a8e-4ae6-a60e-bd3f67d78ca5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "da3e82b4-7b31-40ff-b364-36aacadda1a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202101290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84182512-c6cf-47f3-bb41-e2a7d624e4db", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01c5777a-edc8-4783-8d2e-5dbb543abce2", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10969,Microsoft.Compute/GetVMImageFromLocation30Min;71969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:01c5777a-edc8-4783-8d2e-5dbb543abce2", - "Expires" : "-1", - "x-ms-request-id" : "d76d175b-06ef-48cb-bab5-78a14409297d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101290\"\r\n}", - "x-ms-client-request-id" : "84182512-c6cf-47f3-bb41-e2a7d624e4db", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202106040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72469108-6fea-4e23-9f55-26a135e684b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f707a248-70a7-41fd-a860-7b49889e12a8", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10972,Microsoft.Compute/GetVMImageFromLocation30Min;71972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:f707a248-70a7-41fd-a860-7b49889e12a8", - "Expires" : "-1", - "x-ms-request-id" : "ca9dbb03-3fc2-453c-ad7a-5b62127b03f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202106040\"\r\n}", - "x-ms-client-request-id" : "72469108-6fea-4e23-9f55-26a135e684b2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "516d5394-67dd-438e-af45-c1c23e9e2521", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ec351eb-1d5e-425f-8035-8bfd24d5597f", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10971,Microsoft.Compute/GetVMImageFromLocation30Min;71971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:8ec351eb-1d5e-425f-8035-8bfd24d5597f", - "Expires" : "-1", - "x-ms-request-id" : "ea660eaf-faf2-43c3-b914-8ff3d5c54213", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "516d5394-67dd-438e-af45-c1c23e9e2521", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3acc3390-e853-4092-867c-0495326e6df9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adbaea0a-5101-42c3-8a9f-fb25b553d175", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10956,Microsoft.Compute/GetVMImageFromLocation30Min;71956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:adbaea0a-5101-42c3-8a9f-fb25b553d175", - "Expires" : "-1", - "x-ms-request-id" : "f54ca996-bb45-414d-9b0c-892a4adb358e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202011230\"\r\n}", - "x-ms-client-request-id" : "3acc3390-e853-4092-867c-0495326e6df9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201808060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aac5aa64-5bb6-4915-a316-fef26d1fded1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "16c30347-9e78-419f-9531-1daead9f518f", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10987,Microsoft.Compute/GetVMImageFromLocation30Min;71987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:16c30347-9e78-419f-9531-1daead9f518f", - "Expires" : "-1", - "x-ms-request-id" : "c4eb3124-5f0c-4b80-ac3b-6588e4c96c40", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808060\"\r\n}", - "x-ms-client-request-id" : "aac5aa64-5bb6-4915-a316-fef26d1fded1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "721ed77f-e493-42c1-bb1d-8e7444d764d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbd46cae-fd49-4007-8137-59c7a95e4a5b", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10965,Microsoft.Compute/GetVMImageFromLocation30Min;71965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:bbd46cae-fd49-4007-8137-59c7a95e4a5b", - "Expires" : "-1", - "x-ms-request-id" : "64ece479-10dc-42c5-8dab-270c0da06d01", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202012010\"\r\n}", - "x-ms-client-request-id" : "721ed77f-e493-42c1-bb1d-8e7444d764d7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201901300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c3e8f3f-66d1-4b67-a870-2aa19fc9e781", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ef98e00-088d-4029-a5f4-67cde128e20a", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11015,Microsoft.Compute/GetVMImageFromLocation30Min;72015", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:3ef98e00-088d-4029-a5f4-67cde128e20a", - "Expires" : "-1", - "x-ms-request-id" : "c0cc4cf0-07e6-4eba-a5e7-eb5b397e9ab2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201901300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201901300\"\r\n}", - "x-ms-client-request-id" : "1c3e8f3f-66d1-4b67-a870-2aa19fc9e781", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "99eb1b30-dd89-4cd6-abac-6accacd62a7f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "018e8ff8-dfb6-416d-b0c3-8261816f3ba9", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10976,Microsoft.Compute/GetVMImageFromLocation30Min;71976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:018e8ff8-dfb6-416d-b0c3-8261816f3ba9", - "Expires" : "-1", - "x-ms-request-id" : "6e0dbd71-4ba9-41da-9a5b-37e7832ca79e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202004290\"\r\n}", - "x-ms-client-request-id" : "99eb1b30-dd89-4cd6-abac-6accacd62a7f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202005220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b2260d8-e616-440e-91aa-be6bd2149e7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4fe6c9e-2578-48eb-b191-f46860d50192", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10960,Microsoft.Compute/GetVMImageFromLocation30Min;71960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:a4fe6c9e-2578-48eb-b191-f46860d50192", - "Expires" : "-1", - "x-ms-request-id" : "7c6dc226-a6ba-45a1-ba47-6917c3f6382b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202005220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202005220\"\r\n}", - "x-ms-client-request-id" : "6b2260d8-e616-440e-91aa-be6bd2149e7d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e5a873e-c603-4e2a-9aeb-97feadd44e2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a7c38c8-34ad-4e15-b078-98defd269c20", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10970,Microsoft.Compute/GetVMImageFromLocation30Min;71970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:5a7c38c8-34ad-4e15-b078-98defd269c20", - "Expires" : "-1", - "x-ms-request-id" : "d0e52da5-85ef-43c6-830e-4e77772c8724", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "8e5a873e-c603-4e2a-9aeb-97feadd44e2f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbc0128a-4a44-45f3-b2d1-e07e10f7dd9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "583e0f5c-1ad7-44f1-85fc-5701ceba216b", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10993,Microsoft.Compute/GetVMImageFromLocation30Min;71993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:583e0f5c-1ad7-44f1-85fc-5701ceba216b", - "Expires" : "-1", - "x-ms-request-id" : "b899b07f-f8d9-4a4c-8efc-b6b3ffcab338", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201911130\"\r\n}", - "x-ms-client-request-id" : "bbc0128a-4a44-45f3-b2d1-e07e10f7dd9e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202001291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "379d4c67-3979-48ee-a854-02a639cc82e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0694da8f-7cce-4514-bf41-f4dc050cbeda", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10985,Microsoft.Compute/GetVMImageFromLocation30Min;71985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:0694da8f-7cce-4514-bf41-f4dc050cbeda", - "Expires" : "-1", - "x-ms-request-id" : "4d947f77-fa99-4372-8f09-4b969feeffa3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202001291\"\r\n}", - "x-ms-client-request-id" : "379d4c67-3979-48ee-a854-02a639cc82e7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202111290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a324e19-e2a5-4b38-8017-e1d1cd771609", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6424c2e0-7744-4554-92e9-146bd3a84b4c", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10954,Microsoft.Compute/GetVMImageFromLocation30Min;71954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:6424c2e0-7744-4554-92e9-146bd3a84b4c", - "Expires" : "-1", - "x-ms-request-id" : "1f727e7b-83f5-41cc-91b5-670b7a571fde", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111290\"\r\n}", - "x-ms-client-request-id" : "3a324e19-e2a5-4b38-8017-e1d1cd771609", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ddd2bc2a-421f-4341-a33c-e0e4af47e1c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94beae6a-0328-4f7c-90ac-259bdaf7dcb3", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10963,Microsoft.Compute/GetVMImageFromLocation30Min;71963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:94beae6a-0328-4f7c-90ac-259bdaf7dcb3", - "Expires" : "-1", - "x-ms-request-id" : "3f2e3c45-d3e4-4305-ac5e-d9d3c8fb9e64", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "ddd2bc2a-421f-4341-a33c-e0e4af47e1c0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202111230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c9c8a43-d2b0-4532-a934-9779cbe291e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3eb68f03-9455-4dc7-93be-7621d889d6ca", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10962,Microsoft.Compute/GetVMImageFromLocation30Min;71962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:3eb68f03-9455-4dc7-93be-7621d889d6ca", - "Expires" : "-1", - "x-ms-request-id" : "88637ebc-708c-4175-8a54-c9eb4b8abe61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111230\"\r\n}", - "x-ms-client-request-id" : "5c9c8a43-d2b0-4532-a934-9779cbe291e0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202102240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae45e960-411f-4d96-85db-1354c06a8200", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaf82934-b8dd-4925-af98-32029273a9b1", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10953,Microsoft.Compute/GetVMImageFromLocation30Min;71953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:aaf82934-b8dd-4925-af98-32029273a9b1", - "Expires" : "-1", - "x-ms-request-id" : "cfe5df53-acb2-4243-913e-2a3b48741036", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202102240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202102240\"\r\n}", - "x-ms-client-request-id" : "ae45e960-411f-4d96-85db-1354c06a8200", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "17e804cd-c541-46b0-85ad-d828214f4151", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e5aa7d5-0755-4d17-8611-a816c46e7313", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10955,Microsoft.Compute/GetVMImageFromLocation30Min;71955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:5e5aa7d5-0755-4d17-8611-a816c46e7313", - "Expires" : "-1", - "x-ms-request-id" : "c89d33f8-9e17-420b-906c-fa9d2eb76647", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202007290\"\r\n}", - "x-ms-client-request-id" : "17e804cd-c541-46b0-85ad-d828214f4151", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9a50472-dfbc-4df8-8123-8133ea3ba994", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5e0d5e1-e641-435f-85d6-4c4b427e4ee2", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10952,Microsoft.Compute/GetVMImageFromLocation30Min;71952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:f5e0d5e1-e641-435f-85d6-4c4b427e4ee2", - "Expires" : "-1", - "x-ms-request-id" : "49fcc91e-2690-425e-8908-63ad17a79af2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201909180\"\r\n}", - "x-ms-client-request-id" : "b9a50472-dfbc-4df8-8123-8133ea3ba994", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202111300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fde293af-fd40-402a-bcea-a0bb577a7a7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3774ab73-6934-49ce-95a9-0234adbc1ad3", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10957,Microsoft.Compute/GetVMImageFromLocation30Min;71957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:3774ab73-6934-49ce-95a9-0234adbc1ad3", - "Expires" : "-1", - "x-ms-request-id" : "2b02a39f-1a18-4337-8173-43f0994af2b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111300\"\r\n}", - "x-ms-client-request-id" : "fde293af-fd40-402a-bcea-a0bb577a7a7a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202006101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b043b96-88dd-4e25-a274-589167872601", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3e63a97-f399-43c5-add7-e56c915e0aef", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10959,Microsoft.Compute/GetVMImageFromLocation30Min;71959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:b3e63a97-f399-43c5-add7-e56c915e0aef", - "Expires" : "-1", - "x-ms-request-id" : "9586e488-02ac-4ca5-b255-29673a4270f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202006101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202006101\"\r\n}", - "x-ms-client-request-id" : "8b043b96-88dd-4e25-a274-589167872601", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201910210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "270eb7eb-b378-4a34-a292-cd1548108de8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e28c27a-cab8-4d6b-8e83-eb2fc3863306", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10950,Microsoft.Compute/GetVMImageFromLocation30Min;71950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:8e28c27a-cab8-4d6b-8e83-eb2fc3863306", - "Expires" : "-1", - "x-ms-request-id" : "23cf4b78-7810-462a-914f-dcb26786407e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201910210\"\r\n}", - "x-ms-client-request-id" : "270eb7eb-b378-4a34-a292-cd1548108de8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3858df79-77c1-49a9-92aa-d66d6abb3221", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32c7fcef-1966-45ef-a15b-36110294ec9b", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10951,Microsoft.Compute/GetVMImageFromLocation30Min;71951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:32c7fcef-1966-45ef-a15b-36110294ec9b", - "Expires" : "-1", - "x-ms-request-id" : "bcf2e1d1-4041-469e-bdd8-40c151a0a2d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "3858df79-77c1-49a9-92aa-d66d6abb3221", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4fc4c2a9-b4c1-43ca-b829-5718bdecbd30", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21f38f57-af13-423b-bb63-787d2351c678", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10949,Microsoft.Compute/GetVMImageFromLocation30Min;71949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:21f38f57-af13-423b-bb63-787d2351c678", - "Expires" : "-1", - "x-ms-request-id" : "3eb51f4e-b9a2-4753-b62c-05c041cb7bf7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "4fc4c2a9-b4c1-43ca-b829-5718bdecbd30", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201808310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2454e11-d56a-4dbd-9494-69220e52a3c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a35e007-3bda-44a3-a90c-09650903cbbf", - "Date" : "Tue, 24 May 2022 13:02:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10948,Microsoft.Compute/GetVMImageFromLocation30Min;71948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130225Z:8a35e007-3bda-44a3-a90c-09650903cbbf", - "Expires" : "-1", - "x-ms-request-id" : "9305296d-9d45-444e-9515-4b929f61f86d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808310\"\r\n}", - "x-ms-client-request-id" : "c2454e11-d56a-4dbd-9494-69220e52a3c4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201808140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a13b99a-0ea8-45c3-9c72-b44b9e030228", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "715597d4-e8f1-45e6-9257-638961f4540e", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;11016,Microsoft.Compute/GetVMImageFromLocation30Min;72016", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:715597d4-e8f1-45e6-9257-638961f4540e", - "Expires" : "-1", - "x-ms-request-id" : "ad62d222-df0d-4d74-a70e-33e3bb4bc383", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201808140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201808140\"\r\n}", - "x-ms-client-request-id" : "0a13b99a-0ea8-45c3-9c72-b44b9e030228", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201906040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6ace762-d68d-47cc-b21a-b6322fad6cd5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83ce31b1-046b-46b0-a619-43e0eb34c3df", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10946,Microsoft.Compute/GetVMImageFromLocation30Min;71946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:83ce31b1-046b-46b0-a619-43e0eb34c3df", - "Expires" : "-1", - "x-ms-request-id" : "0db6cd53-efb2-4772-bbd1-90b38eb24b16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201906040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201906040\"\r\n}", - "x-ms-client-request-id" : "c6ace762-d68d-47cc-b21a-b6322fad6cd5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201906170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c301c5a5-f562-47ae-9c25-ec9bc97e634c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70972c52-c73b-4747-b01a-0fbdff361466", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10947,Microsoft.Compute/GetVMImageFromLocation30Min;71947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:70972c52-c73b-4747-b01a-0fbdff361466", - "Expires" : "-1", - "x-ms-request-id" : "aaf470fa-a31f-4672-ba33-f05df5428333", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201906170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201906170\"\r\n}", - "x-ms-client-request-id" : "c301c5a5-f562-47ae-9c25-ec9bc97e634c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201812031?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95152061-2a39-41f1-83a2-fc738cbd00d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a8c7920-0c20-4c10-9b28-1034d31b44c9", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10945,Microsoft.Compute/GetVMImageFromLocation30Min;71945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:5a8c7920-0c20-4c10-9b28-1034d31b44c9", - "Expires" : "-1", - "x-ms-request-id" : "15985158-f84c-4118-aa4c-6a6ebf0e1e7a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201812031\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201812031\"\r\n}", - "x-ms-client-request-id" : "95152061-2a39-41f1-83a2-fc738cbd00d3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.201903200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "be0f59af-d0bf-4d32-aaa3-c9047d5c7ff3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ef894e7-e465-4c2f-8425-0fca436cd197", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10944,Microsoft.Compute/GetVMImageFromLocation30Min;71944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:6ef894e7-e465-4c2f-8425-0fca436cd197", - "Expires" : "-1", - "x-ms-request-id" : "fb22390f-a138-457a-b186-5b78288e3a3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201903200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.201903200\"\r\n}", - "x-ms-client-request-id" : "be0f59af-d0bf-4d32-aaa3-c9047d5c7ff3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "698972a5-1634-4a49-9fb9-03ff99b5fa8f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60411caf-d8df-48e2-b5d0-018751453ad9", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10943,Microsoft.Compute/GetVMImageFromLocation30Min;71943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:60411caf-d8df-48e2-b5d0-018751453ad9", - "Expires" : "-1", - "x-ms-request-id" : "b7c95938-6a3a-4d8d-b2b5-8672e257e8f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202003170\"\r\n}", - "x-ms-client-request-id" : "698972a5-1634-4a49-9fb9-03ff99b5fa8f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7671a9f8-0aa0-4916-9578-2a08459ddef2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c5312d8-c8f4-42c9-abb3-b6f2e5de525a", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10942,Microsoft.Compute/GetVMImageFromLocation30Min;71942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:1c5312d8-c8f4-42c9-abb3-b6f2e5de525a", - "Expires" : "-1", - "x-ms-request-id" : "61c9c805-e2ce-43e3-95cb-ccc2abcea6bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202007081\"\r\n}", - "x-ms-client-request-id" : "7671a9f8-0aa0-4916-9578-2a08459ddef2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b5bc764-f444-4bbb-8bb4-a6e6e35298e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bda45ae7-4384-4141-b020-dbca5ec8da95", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10941,Microsoft.Compute/GetVMImageFromLocation30Min;71941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:bda45ae7-4384-4141-b020-dbca5ec8da95", - "Expires" : "-1", - "x-ms-request-id" : "7c9a73f0-826f-4e05-93aa-5b81ecc07010", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "4b5bc764-f444-4bbb-8bb4-a6e6e35298e1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82caadd2-f217-4b8f-8dba-f10b42010139", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5fc1d511-3194-4d4d-b06b-9c6c00eeb0f8", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10940,Microsoft.Compute/GetVMImageFromLocation30Min;71940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:5fc1d511-3194-4d4d-b06b-9c6c00eeb0f8", - "Expires" : "-1", - "x-ms-request-id" : "d63cc778-dd34-44e6-8578-20fa7409f082", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "82caadd2-f217-4b8f-8dba-f10b42010139", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202105010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e4a70b7-03f5-4eb6-8f4f-733ce5ee841a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5732c134-26e9-44bc-88ee-4293dc0a2fa7", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10939,Microsoft.Compute/GetVMImageFromLocation30Min;71939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:5732c134-26e9-44bc-88ee-4293dc0a2fa7", - "Expires" : "-1", - "x-ms-request-id" : "2759f2b4-e410-4672-a43b-f39b7fd674e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202105010\"\r\n}", - "x-ms-client-request-id" : "4e4a70b7-03f5-4eb6-8f4f-733ce5ee841a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202105120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "147e3f6c-b283-46bf-a840-7492fa70fccf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f615eb7-ac0e-48af-92c1-c4c23c3d96bc", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10938,Microsoft.Compute/GetVMImageFromLocation30Min;71938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:6f615eb7-ac0e-48af-92c1-c4c23c3d96bc", - "Expires" : "-1", - "x-ms-request-id" : "2dd9202b-ecaa-48cd-b651-8e26bf41c5cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202105120\"\r\n}", - "x-ms-client-request-id" : "147e3f6c-b283-46bf-a840-7492fa70fccf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39feb538-04e8-4f1b-9d91-414fe25224f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2740c5a-4034-4e73-9078-33b778dbec00", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10936,Microsoft.Compute/GetVMImageFromLocation30Min;71936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:a2740c5a-4034-4e73-9078-33b778dbec00", - "Expires" : "-1", - "x-ms-request-id" : "0359c3d9-2d25-46b2-a30d-df0c425a0f69", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "39feb538-04e8-4f1b-9d91-414fe25224f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24e99af9-8509-4fdc-bc3d-e5a371f78922", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ddf70a68-d1a9-4ac6-8415-d68f59d9d6ab", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10935,Microsoft.Compute/GetVMImageFromLocation30Min;71935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:ddf70a68-d1a9-4ac6-8415-d68f59d9d6ab", - "Expires" : "-1", - "x-ms-request-id" : "d84af0e1-c2d7-4ce1-bb7e-a8f2724454cc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "24e99af9-8509-4fdc-bc3d-e5a371f78922", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d464b3da-cc2c-4871-b76d-def6b04b2273", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8df49306-273e-4951-96a3-223e9e3101e2", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10937,Microsoft.Compute/GetVMImageFromLocation30Min;71937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:8df49306-273e-4951-96a3-223e9e3101e2", - "Expires" : "-1", - "x-ms-request-id" : "c15a1e09-7e07-4546-828d-ffe66f536512", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "d464b3da-cc2c-4871-b76d-def6b04b2273", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "65392e2b-650d-4c8f-9e0a-fc815120b8ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c97bb512-7a34-47b3-9704-7c5a519da6fb", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10932,Microsoft.Compute/GetVMImageFromLocation30Min;71932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:c97bb512-7a34-47b3-9704-7c5a519da6fb", - "Expires" : "-1", - "x-ms-request-id" : "58d051ff-0606-4f18-b1dc-c3a9fbd001e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "65392e2b-650d-4c8f-9e0a-fc815120b8ac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e00c90ac-f9d7-470a-bb25-39a2c4086d9a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07e5186f-d0eb-4b2b-9d9f-b91a07f76160", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10933,Microsoft.Compute/GetVMImageFromLocation30Min;71933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:07e5186f-d0eb-4b2b-9d9f-b91a07f76160", - "Expires" : "-1", - "x-ms-request-id" : "de81cdb9-8df2-4381-9d8d-0ca62f287d93", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "e00c90ac-f9d7-470a-bb25-39a2c4086d9a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202008180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c63be03-a5bc-43b9-af07-2495605bde8d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9559cd03-b2a7-4938-b345-2a31a940a9c3", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10934,Microsoft.Compute/GetVMImageFromLocation30Min;71934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:9559cd03-b2a7-4938-b345-2a31a940a9c3", - "Expires" : "-1", - "x-ms-request-id" : "3f827727-1c33-4550-89ad-69f94510184e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202008180\"\r\n}", - "x-ms-client-request-id" : "5c63be03-a5bc-43b9-af07-2495605bde8d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "088a59a6-dfa5-408b-9955-66589c429743", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "72660ebf-cef2-4bde-b024-9b1311e17626", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10931,Microsoft.Compute/GetVMImageFromLocation30Min;71931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:72660ebf-cef2-4bde-b024-9b1311e17626", - "Expires" : "-1", - "x-ms-request-id" : "1ce03b5b-35d5-4605-a26f-a5fb1f41f9b2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202205060\"\r\n}", - "x-ms-client-request-id" : "088a59a6-dfa5-408b-9955-66589c429743", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eedc1006-17d4-41d2-9882-d4074bbae38a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d0698ff-eb9d-45ba-a0b7-a58b37dcdbcc", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10929,Microsoft.Compute/GetVMImageFromLocation30Min;71929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:0d0698ff-eb9d-45ba-a0b7-a58b37dcdbcc", - "Expires" : "-1", - "x-ms-request-id" : "8245e66b-b63c-45e0-9bf5-1f545c24fe6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "eedc1006-17d4-41d2-9882-d4074bbae38a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d00b5e0d-e978-41e5-831c-4046696b3da6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f5cd633-3757-42ba-8ac5-d2405caca38e", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10928,Microsoft.Compute/GetVMImageFromLocation30Min;71928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:4f5cd633-3757-42ba-8ac5-d2405caca38e", - "Expires" : "-1", - "x-ms-request-id" : "82ad7009-e003-4c46-ab5e-1ec529fe530f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202101120\"\r\n}", - "x-ms-client-request-id" : "d00b5e0d-e978-41e5-831c-4046696b3da6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202008120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1fbd2e9-3019-4362-8cd9-953085add0c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31cd93f7-37ae-4502-9cec-81333121cbc1", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10930,Microsoft.Compute/GetVMImageFromLocation30Min;71930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:31cd93f7-37ae-4502-9cec-81333121cbc1", - "Expires" : "-1", - "x-ms-request-id" : "cc0ba25c-f87f-4b86-9907-401dd75e7b5e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202008120\"\r\n}", - "x-ms-client-request-id" : "d1fbd2e9-3019-4362-8cd9-953085add0c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202112020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "68a63007-c535-42be-8719-15ac3fbaeb14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fdb33e9-ce42-43ec-bf05-d50b946d727d", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10927,Microsoft.Compute/GetVMImageFromLocation30Min;71927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:0fdb33e9-ce42-43ec-bf05-d50b946d727d", - "Expires" : "-1", - "x-ms-request-id" : "7433dbc1-4e9f-49f6-a1c7-3f00661020b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202112020\"\r\n}", - "x-ms-client-request-id" : "68a63007-c535-42be-8719-15ac3fbaeb14", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202110250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8def57e2-1aa6-4dc8-915a-d58960e66fe7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "766d66ef-43ff-4439-aaae-54dbe84c8c11", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10926,Microsoft.Compute/GetVMImageFromLocation30Min;71926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:766d66ef-43ff-4439-aaae-54dbe84c8c11", - "Expires" : "-1", - "x-ms-request-id" : "6794bd69-ba59-403c-9e30-01520083431f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202110250\"\r\n}", - "x-ms-client-request-id" : "8def57e2-1aa6-4dc8-915a-d58960e66fe7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0378149a-a3ef-4db2-9c0e-73206e752546", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "137eef50-2e77-48e8-b128-c460a6e153fb", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10925,Microsoft.Compute/GetVMImageFromLocation30Min;71925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:137eef50-2e77-48e8-b128-c460a6e153fb", - "Expires" : "-1", - "x-ms-request-id" : "1e4c2809-2185-43e6-82a0-e53537cd94d4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202007160\"\r\n}", - "x-ms-client-request-id" : "0378149a-a3ef-4db2-9c0e-73206e752546", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202202020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8dcc41dc-a48c-4017-a585-cb411449e33a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68c73c50-953b-47bf-bbf5-a69c4ffa9c49", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10924,Microsoft.Compute/GetVMImageFromLocation30Min;71924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:68c73c50-953b-47bf-bbf5-a69c4ffa9c49", - "Expires" : "-1", - "x-ms-request-id" : "ddb3ea0c-80ec-470d-ae46-028d1b1f075c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202202020\"\r\n}", - "x-ms-client-request-id" : "8dcc41dc-a48c-4017-a585-cb411449e33a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2da6796-c85f-4e67-8fc5-bcf755639559", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcee258a-10ae-493f-ab1d-5120372c0a80", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10923,Microsoft.Compute/GetVMImageFromLocation30Min;71923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:fcee258a-10ae-493f-ab1d-5120372c0a80", - "Expires" : "-1", - "x-ms-request-id" : "41abb172-cc83-458f-9a26-f863b81488c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202205100\"\r\n}", - "x-ms-client-request-id" : "b2da6796-c85f-4e67-8fc5-bcf755639559", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202111250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54722288-3e41-4ef3-bab0-98f303ee6896", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbcb5676-bd21-4535-bf2d-3bfee96bd0f8", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10922,Microsoft.Compute/GetVMImageFromLocation30Min;71922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:fbcb5676-bd21-4535-bf2d-3bfee96bd0f8", - "Expires" : "-1", - "x-ms-request-id" : "8b6375d5-4e77-4feb-9778-8c84e2967025", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202111250\"\r\n}", - "x-ms-client-request-id" : "54722288-3e41-4ef3-bab0-98f303ee6896", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2bed5d63-7b4f-41db-a764-7d941889a334", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2457b7a-a44e-4e1c-8ca4-6ddc62b0cf86", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10921,Microsoft.Compute/GetVMImageFromLocation30Min;71921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:b2457b7a-a44e-4e1c-8ca4-6ddc62b0cf86", - "Expires" : "-1", - "x-ms-request-id" : "a3d731f3-9224-4db0-854b-d114c2d66cd2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "2bed5d63-7b4f-41db-a764-7d941889a334", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32fbec10-cd97-431b-946c-cbfdec141e82", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "597f03d2-a700-4dda-a127-9e4fdf1a70ec", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10920,Microsoft.Compute/GetVMImageFromLocation30Min;71920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:597f03d2-a700-4dda-a127-9e4fdf1a70ec", - "Expires" : "-1", - "x-ms-request-id" : "2fc12b31-8b7f-4177-9108-de4d8c6da352", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "32fbec10-cd97-431b-946c-cbfdec141e82", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4651d28e-6d69-45af-b559-7c4da83c2939", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb8c8ac8-9cf8-46cd-bc1a-76b0e46a289f", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10918,Microsoft.Compute/GetVMImageFromLocation30Min;71918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:bb8c8ac8-9cf8-46cd-bc1a-76b0e46a289f", - "Expires" : "-1", - "x-ms-request-id" : "e56f1913-7d88-40a8-81cd-640476b6ba72", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202204190\"\r\n}", - "x-ms-client-request-id" : "4651d28e-6d69-45af-b559-7c4da83c2939", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d8a4133-8f22-4274-9d8c-9fd80803f99a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed5d474f-1c05-48e5-bbd7-c123888f400a", - "Date" : "Tue, 24 May 2022 13:02:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10917,Microsoft.Compute/GetVMImageFromLocation30Min;71917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:ed5d474f-1c05-48e5-bbd7-c123888f400a", - "Expires" : "-1", - "x-ms-request-id" : "85b871f0-ce5f-4e17-a0d8-03183ddd45d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202201060\"\r\n}", - "x-ms-client-request-id" : "8d8a4133-8f22-4274-9d8c-9fd80803f99a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f6991a2-21c5-4318-a410-da60fa26046c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1057", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45e825ba-f0a7-4e1b-807f-6df2c1a67f49", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10919,Microsoft.Compute/GetVMImageFromLocation30Min;71919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:45e825ba-f0a7-4e1b-807f-6df2c1a67f49", - "Expires" : "-1", - "x-ms-request-id" : "0a6d2087-3d15-406a-90fd-652f407d6f58", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "2f6991a2-21c5-4318-a410-da60fa26046c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.10/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35acaebe-dfbe-4556-ab88-7a8af8759356", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f02668b5-5893-4d76-8d8f-ce94e95203d9", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15835,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130226Z:f02668b5-5893-4d76-8d8f-ce94e95203d9", - "Expires" : "-1", - "x-ms-request-id" : "8924ab05-b255-44bb-8be6-dda1a47251dd", - "Body" : "[]", - "x-ms-client-request-id" : "35acaebe-dfbe-4556-ab88-7a8af8759356", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.10-DAILY/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36da5371-5ded-431c-bbf5-46f1080ef214", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37315560-b6f0-4c07-8925-d62009975ddf", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15834,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:37315560-b6f0-4c07-8925-d62009975ddf", - "Expires" : "-1", - "x-ms-request-id" : "3ed60a28-4034-47f0-8d2c-f9ca69d25984", - "Body" : "[]", - "x-ms-client-request-id" : "36da5371-5ded-431c-bbf5-46f1080ef214", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80ffd735-6070-4c71-b2d8-1e23ab21ea5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2159", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "413cf7cf-dbe4-4244-968f-c908c484d65f", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15833,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:413cf7cf-dbe4-4244-968f-c908c484d65f", - "Expires" : "-1", - "x-ms-request-id" : "3d198780-4c71-4616-8bee-5a67387a4a0e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202204290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205180\"\r\n }\r\n]", - "x-ms-client-request-id" : "80ffd735-6070-4c71-b2d8-1e23ab21ea5a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202204290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ebd2fd6-0ed9-4693-a08c-8ce0bdd91342", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11778", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b52c788-2d8c-4fd2-9430-f47bf216da25", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10914,Microsoft.Compute/GetVMImageFromLocation30Min;71914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:5b52c788-2d8c-4fd2-9430-f47bf216da25", - "Expires" : "-1", - "x-ms-request-id" : "d5f24b95-e5b8-4b62-9489-8ce061d6fcb0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202204290\"\r\n}", - "x-ms-client-request-id" : "3ebd2fd6-0ed9-4693-a08c-8ce0bdd91342", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd0a574a-a7b3-4240-9073-d0bf8685e83c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0415565f-e394-4b85-a80c-dce30660764a", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10912,Microsoft.Compute/GetVMImageFromLocation30Min;71912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:0415565f-e394-4b85-a80c-dce30660764a", - "Expires" : "-1", - "x-ms-request-id" : "84dc4eb7-093e-441a-bfff-3ecb82084277", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205100\"\r\n}", - "x-ms-client-request-id" : "fd0a574a-a7b3-4240-9073-d0bf8685e83c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202205130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0238ee45-57e8-417c-b8fb-0153c2a31c6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da6c5d3a-2f60-454d-a6d0-f34cb1332a22", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10913,Microsoft.Compute/GetVMImageFromLocation30Min;71913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:da6c5d3a-2f60-454d-a6d0-f34cb1332a22", - "Expires" : "-1", - "x-ms-request-id" : "5c36f294-e400-409d-bf0d-18e7451d1fee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205130\"\r\n}", - "x-ms-client-request-id" : "0238ee45-57e8-417c-b8fb-0153c2a31c6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202205050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5dae495d-7821-46f9-9649-b97e694dbcbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41b7a047-ca4f-4026-bd93-41566627b1d7", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10915,Microsoft.Compute/GetVMImageFromLocation30Min;71915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:41b7a047-ca4f-4026-bd93-41566627b1d7", - "Expires" : "-1", - "x-ms-request-id" : "22add73e-4079-48ac-82a6-9d10b420c4f7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205050\"\r\n}", - "x-ms-client-request-id" : "5dae495d-7821-46f9-9649-b97e694dbcbb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202205090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bac0fdf-93b5-4ef7-8d26-61edc9151cb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5052bd78-6169-4b24-a37a-34ae17e5071b", - "Date" : "Tue, 24 May 2022 13:02:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10911,Microsoft.Compute/GetVMImageFromLocation30Min;71911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:5052bd78-6169-4b24-a37a-34ae17e5071b", - "Expires" : "-1", - "x-ms-request-id" : "8dcb2dd2-f439-4936-b04d-eedc3ea11746", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205090\"\r\n}", - "x-ms-client-request-id" : "5bac0fdf-93b5-4ef7-8d26-61edc9151cb2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27e822c5-cd86-4ef3-8fd5-57f52ccb67c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13fd6116-4bb9-4642-86c0-7b3249a773a4", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10916,Microsoft.Compute/GetVMImageFromLocation30Min;71916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:13fd6116-4bb9-4642-86c0-7b3249a773a4", - "Expires" : "-1", - "x-ms-request-id" : "b4d077ea-ba94-4a31-8cdf-74a21f13040e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205060\"\r\n}", - "x-ms-client-request-id" : "27e822c5-cd86-4ef3-8fd5-57f52ccb67c0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-daily-lts-gen2/versions/18.04.202205180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "83e76d91-0384-465b-9a94-a98eae5aa797", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e14c601e-4cb5-42db-9a88-33f6527db478", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10910,Microsoft.Compute/GetVMImageFromLocation30Min;71910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:e14c601e-4cb5-42db-9a88-33f6527db478", - "Expires" : "-1", - "x-ms-request-id" : "edf08948-7fe3-477f-8cbb-d66556043c39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-daily-lts-gen2/Versions/18.04.202205180\"\r\n}", - "x-ms-client-request-id" : "83e76d91-0384-465b-9a94-a98eae5aa797", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4372411b-e279-4da8-915f-b76e89b20bf2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "22351", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23c54fae-ef44-4bcf-b2b8-99ddf2f59df5", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15832,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130227Z:23c54fae-ef44-4bcf-b2b8-99ddf2f59df5", - "Expires" : "-1", - "x-ms-request-id" : "7030b8dd-4bf0-4a11-aeaa-f7a32feb2e0c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201908220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201909020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201909120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202001210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202001291\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202002040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202002080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202002180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202003170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202003250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202004080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202004290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202005220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202005220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202006101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202006101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202007081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202007160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202007290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202008120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202008180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202009010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202009080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202009220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202010140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202011120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202011230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202012010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202012111\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101081\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202102240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202102240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202103151\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202103250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202104150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202105010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202105080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202105120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202106040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202106220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202107200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202108170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202108250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202109180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202109280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202110120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202110250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202112020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202201060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202201180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202202020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202202130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202203020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202203080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202203250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202204010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202204190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202205060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202205100\"\r\n }\r\n]", - "x-ms-client-request-id" : "4372411b-e279-4da8-915f-b76e89b20bf2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d7e82a6-61b6-448b-9366-5fdf3d1c0285", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd066fab-969d-438a-a9e4-03e338ed16e9", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10909,Microsoft.Compute/GetVMImageFromLocation30Min;71909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:bd066fab-969d-438a-a9e4-03e338ed16e9", - "Expires" : "-1", - "x-ms-request-id" : "332910de-c1cf-44f3-a48d-cc153e0b7786", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201909180\"\r\n}", - "x-ms-client-request-id" : "5d7e82a6-61b6-448b-9366-5fdf3d1c0285", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201910030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b7e050d-7d60-4868-9c8a-efc0386c7061", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "849daf44-0265-42aa-9414-de7c56097e6b", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10906,Microsoft.Compute/GetVMImageFromLocation30Min;71906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:849daf44-0265-42aa-9414-de7c56097e6b", - "Expires" : "-1", - "x-ms-request-id" : "47d3591d-7260-434c-86f2-595859be2182", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910030\"\r\n}", - "x-ms-client-request-id" : "3b7e050d-7d60-4868-9c8a-efc0386c7061", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201910080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb3ea1a4-baa3-4482-b59e-d6844a34feac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce50c0c8-c1f2-406b-8cd3-175fb0c42e47", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10908,Microsoft.Compute/GetVMImageFromLocation30Min;71908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:ce50c0c8-c1f2-406b-8cd3-175fb0c42e47", - "Expires" : "-1", - "x-ms-request-id" : "06ac3801-c925-47d7-b3fb-4c88f36085fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910080\"\r\n}", - "x-ms-client-request-id" : "bb3ea1a4-baa3-4482-b59e-d6844a34feac", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202009080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa1e27d8-a2c4-47b7-b96c-ece42974e2be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c06e2753-a399-4b0c-bbf4-fb180c4ad2fe", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10898,Microsoft.Compute/GetVMImageFromLocation30Min;71898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:c06e2753-a399-4b0c-bbf4-fb180c4ad2fe", - "Expires" : "-1", - "x-ms-request-id" : "7e3e3043-783b-4361-b7f9-2b688bb6b8bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202009080\"\r\n}", - "x-ms-client-request-id" : "fa1e27d8-a2c4-47b7-b96c-ece42974e2be", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202001291?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a34ffba1-e213-477e-b45f-6085ca4cdd19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8a97c7b-447c-44a6-8ae7-39999b8bf5c6", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10896,Microsoft.Compute/GetVMImageFromLocation30Min;71896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b8a97c7b-447c-44a6-8ae7-39999b8bf5c6", - "Expires" : "-1", - "x-ms-request-id" : "7d5844b3-c21d-4c1c-b37e-73d690fc8d14", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001291\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202001291\"\r\n}", - "x-ms-client-request-id" : "a34ffba1-e213-477e-b45f-6085ca4cdd19", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202011230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d06364b-28d7-4fc8-990d-65ad3fb195fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41ac3c2f-3a36-4695-9cba-f8d9f47bbc87", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10893,Microsoft.Compute/GetVMImageFromLocation30Min;71893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:41ac3c2f-3a36-4695-9cba-f8d9f47bbc87", - "Expires" : "-1", - "x-ms-request-id" : "696e24a1-d1bb-4c49-a484-5219c2c93f8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202011230\"\r\n}", - "x-ms-client-request-id" : "5d06364b-28d7-4fc8-990d-65ad3fb195fe", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202003250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "650ee954-7a1e-45cb-bf37-35265c04412f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f391d07a-1040-47ee-bd46-df6d37dd6a20", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10895,Microsoft.Compute/GetVMImageFromLocation30Min;71895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:f391d07a-1040-47ee-bd46-df6d37dd6a20", - "Expires" : "-1", - "x-ms-request-id" : "c616f5a3-1ca2-4628-80da-50e93a0c5162", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202003250\"\r\n}", - "x-ms-client-request-id" : "650ee954-7a1e-45cb-bf37-35265c04412f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202101191?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54ebcb4c-3237-4dd2-99ac-1d7c50d0b3c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c0a1e52-9d6b-431c-b8b9-bb09b5ad1bbf", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10897,Microsoft.Compute/GetVMImageFromLocation30Min;71897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:6c0a1e52-9d6b-431c-b8b9-bb09b5ad1bbf", - "Expires" : "-1", - "x-ms-request-id" : "985efcf4-f8a6-4957-b6f4-a8a59b7ad4fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101191\"\r\n}", - "x-ms-client-request-id" : "54ebcb4c-3237-4dd2-99ac-1d7c50d0b3c7", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "680e39c5-18ae-482a-89d6-8e405739bd9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10b640f5-a1dd-417d-84cd-5197ccc5728b", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10899,Microsoft.Compute/GetVMImageFromLocation30Min;71899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:10b640f5-a1dd-417d-84cd-5197ccc5728b", - "Expires" : "-1", - "x-ms-request-id" : "c9e81d6f-98ab-4e0f-a695-509c5e67908b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201911130\"\r\n}", - "x-ms-client-request-id" : "680e39c5-18ae-482a-89d6-8e405739bd9e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201909120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4bd652ff-ed7c-458d-a223-728227cb69ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8614201-a7e5-48c3-8cab-56e1609345fe", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10903,Microsoft.Compute/GetVMImageFromLocation30Min;71903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b8614201-a7e5-48c3-8cab-56e1609345fe", - "Expires" : "-1", - "x-ms-request-id" : "f459fc55-f399-4316-a533-90e44cfbfbad", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201909120\"\r\n}", - "x-ms-client-request-id" : "4bd652ff-ed7c-458d-a223-728227cb69ff", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201912050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae123dda-3f0a-4420-99e2-b1da00410d7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa39bcaa-1214-4b77-91b2-0068346b5339", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10907,Microsoft.Compute/GetVMImageFromLocation30Min;71907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:fa39bcaa-1214-4b77-91b2-0068346b5339", - "Expires" : "-1", - "x-ms-request-id" : "510fef32-b92d-4162-9549-d4c4adad6e75", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912050\"\r\n}", - "x-ms-client-request-id" : "ae123dda-3f0a-4420-99e2-b1da00410d7a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201912180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab48b665-8a47-4bda-b62c-9f9e489c3a8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44ef09c1-dc4b-4f26-8ce7-580bef8ff374", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10901,Microsoft.Compute/GetVMImageFromLocation30Min;71901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:44ef09c1-dc4b-4f26-8ce7-580bef8ff374", - "Expires" : "-1", - "x-ms-request-id" : "06c1ccc9-da24-4623-858a-495c402a67e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201912180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201912180\"\r\n}", - "x-ms-client-request-id" : "ab48b665-8a47-4bda-b62c-9f9e489c3a8c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202008120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87f8949c-fc17-4b1e-9321-fc42d9f3ccf4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc6635ff-b7f4-451d-aaca-32f5e179aa26", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10905,Microsoft.Compute/GetVMImageFromLocation30Min;71905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:bc6635ff-b7f4-451d-aaca-32f5e179aa26", - "Expires" : "-1", - "x-ms-request-id" : "8313a881-dacc-4e2d-a685-20632c4695d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202008120\"\r\n}", - "x-ms-client-request-id" : "87f8949c-fc17-4b1e-9321-fc42d9f3ccf4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202006101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cdbded03-78dc-4163-b9ab-43a4e6640eec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9a17bb0-ff9d-4e1c-80c3-d080ef84a07c", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10894,Microsoft.Compute/GetVMImageFromLocation30Min;71894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:c9a17bb0-ff9d-4e1c-80c3-d080ef84a07c", - "Expires" : "-1", - "x-ms-request-id" : "3b3addc4-92fc-4c66-a7a9-8d42ab7e450a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202006101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202006101\"\r\n}", - "x-ms-client-request-id" : "cdbded03-78dc-4163-b9ab-43a4e6640eec", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202009010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "562c68c5-29b4-43de-94bf-3fc73b67f75b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bf53f10-18d5-45b3-ab6d-88b2c066d89f", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10904,Microsoft.Compute/GetVMImageFromLocation30Min;71904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:8bf53f10-18d5-45b3-ab6d-88b2c066d89f", - "Expires" : "-1", - "x-ms-request-id" : "9cfdeab8-1770-465d-8dc4-c31e7427a824", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202009010\"\r\n}", - "x-ms-client-request-id" : "562c68c5-29b4-43de-94bf-3fc73b67f75b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202002040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01e69266-5e56-45b1-854d-599ff501855c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63fabbbf-30e0-459c-b07f-436190638ec9", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10876,Microsoft.Compute/GetVMImageFromLocation30Min;71876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:63fabbbf-30e0-459c-b07f-436190638ec9", - "Expires" : "-1", - "x-ms-request-id" : "0a3f11f1-372b-4362-a15d-abf4783824f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202002040\"\r\n}", - "x-ms-client-request-id" : "01e69266-5e56-45b1-854d-599ff501855c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202103250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73a3d894-42e0-495a-bf42-18d7207518b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57c8caff-613c-4fcc-8337-eec45dc4dd04", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10891,Microsoft.Compute/GetVMImageFromLocation30Min;71891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:57c8caff-613c-4fcc-8337-eec45dc4dd04", - "Expires" : "-1", - "x-ms-request-id" : "339667a9-2d6d-43dc-a0a7-a30e8ad77f80", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202103250\"\r\n}", - "x-ms-client-request-id" : "73a3d894-42e0-495a-bf42-18d7207518b4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202107200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "033b5873-b14f-45f8-bee9-ceae2efffda2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d29db47f-3939-419c-9cfc-8175a07939a0", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10875,Microsoft.Compute/GetVMImageFromLocation30Min;71875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:d29db47f-3939-419c-9cfc-8175a07939a0", - "Expires" : "-1", - "x-ms-request-id" : "0ba967bf-de53-4530-a9df-fbaf0a76e96d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202107200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202107200\"\r\n}", - "x-ms-client-request-id" : "033b5873-b14f-45f8-bee9-ceae2efffda2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202101081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50232b65-54d6-4b4d-b3c5-6e978f70947b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed4ef194-5959-4b7a-b474-619262c5e67c", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10892,Microsoft.Compute/GetVMImageFromLocation30Min;71892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:ed4ef194-5959-4b7a-b474-619262c5e67c", - "Expires" : "-1", - "x-ms-request-id" : "450ba2ab-c12f-47be-8715-25986139e9fc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101081\"\r\n}", - "x-ms-client-request-id" : "50232b65-54d6-4b4d-b3c5-6e978f70947b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202109280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "136436b8-a8bb-4984-9598-0e286c8f6603", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "500ee886-c3e3-4a28-8e96-a9d57c8dbb24", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10865,Microsoft.Compute/GetVMImageFromLocation30Min;71865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:500ee886-c3e3-4a28-8e96-a9d57c8dbb24", - "Expires" : "-1", - "x-ms-request-id" : "394c40a7-522e-4a8e-b059-4dec940a026b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202109280\"\r\n}", - "x-ms-client-request-id" : "136436b8-a8bb-4984-9598-0e286c8f6603", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202111080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b4039a5-a501-4d0a-bedf-42f278554c2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2067436-c82d-47b4-85ef-1da7a1e2b497", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10872,Microsoft.Compute/GetVMImageFromLocation30Min;71872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:f2067436-c82d-47b4-85ef-1da7a1e2b497", - "Expires" : "-1", - "x-ms-request-id" : "240f6d7e-f5ec-43e8-a92f-24919a951c6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111080\"\r\n}", - "x-ms-client-request-id" : "7b4039a5-a501-4d0a-bedf-42f278554c2a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202007081?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7f91b6a-89ae-4f29-98d8-ffc38003efeb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d715261b-8612-4c54-b425-56ec8f9d9a18", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10888,Microsoft.Compute/GetVMImageFromLocation30Min;71888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:d715261b-8612-4c54-b425-56ec8f9d9a18", - "Expires" : "-1", - "x-ms-request-id" : "b1223613-3028-4c0a-bca9-4c339c6d5e49", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007081\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202007081\"\r\n}", - "x-ms-client-request-id" : "e7f91b6a-89ae-4f29-98d8-ffc38003efeb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202001210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8344e6d4-132a-47b4-950b-f45f13c7fe84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4044cbac-0743-45d8-bbb2-f3d0b349084f", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10867,Microsoft.Compute/GetVMImageFromLocation30Min;71867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:4044cbac-0743-45d8-bbb2-f3d0b349084f", - "Expires" : "-1", - "x-ms-request-id" : "9d9006c0-bd25-45c1-bb8b-2107e1ccb1a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202001210\"\r\n}", - "x-ms-client-request-id" : "8344e6d4-132a-47b4-950b-f45f13c7fe84", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202002080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01794b3e-93a4-4f77-8872-727c8e4f5c70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a77e0c99-3bd6-43bc-af39-62cee0e94102", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10868,Microsoft.Compute/GetVMImageFromLocation30Min;71868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:a77e0c99-3bd6-43bc-af39-62cee0e94102", - "Expires" : "-1", - "x-ms-request-id" : "cf531d2e-d923-4b85-a327-ab3195cb71c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202002080\"\r\n}", - "x-ms-client-request-id" : "01794b3e-93a4-4f77-8872-727c8e4f5c70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202012010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da681fe8-2cee-4d08-9a22-8f3c2fa13a3b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71fa648c-139b-46be-bc38-1f8cce14bd8e", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10869,Microsoft.Compute/GetVMImageFromLocation30Min;71869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:71fa648c-139b-46be-bc38-1f8cce14bd8e", - "Expires" : "-1", - "x-ms-request-id" : "5bade8b7-4405-4759-aae1-7f2573fb3cf3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202012010\"\r\n}", - "x-ms-client-request-id" : "da681fe8-2cee-4d08-9a22-8f3c2fa13a3b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202105010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d520c2bc-6b79-4fff-aeaa-ca15c7a2507b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "892fbf6a-3e49-48a0-b6f2-962303ececb1", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10884,Microsoft.Compute/GetVMImageFromLocation30Min;71884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:892fbf6a-3e49-48a0-b6f2-962303ececb1", - "Expires" : "-1", - "x-ms-request-id" : "9e95e69a-15bb-4087-a9e7-d06c6390094a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202105010\"\r\n}", - "x-ms-client-request-id" : "d520c2bc-6b79-4fff-aeaa-ca15c7a2507b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202105120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cc6ce51-3c44-45ca-b73d-ef56bb74e20f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d046e414-ae26-4af4-81ff-78eb759576ed", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10863,Microsoft.Compute/GetVMImageFromLocation30Min;71863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:d046e414-ae26-4af4-81ff-78eb759576ed", - "Expires" : "-1", - "x-ms-request-id" : "a79c6901-06af-4bd4-8ea4-eae9f8d97d82", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202105120\"\r\n}", - "x-ms-client-request-id" : "8cc6ce51-3c44-45ca-b73d-ef56bb74e20f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202108250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db0129be-8384-4287-bdfa-9e3ee3f3df49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b3a4733-54aa-4d82-90fb-541c02d84575", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10889,Microsoft.Compute/GetVMImageFromLocation30Min;71889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:7b3a4733-54aa-4d82-90fb-541c02d84575", - "Expires" : "-1", - "x-ms-request-id" : "0346cf61-017c-44e9-9614-d4e19c35dc6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202108250\"\r\n}", - "x-ms-client-request-id" : "db0129be-8384-4287-bdfa-9e3ee3f3df49", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202101120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3cfa096-4b72-4a0b-834f-8cedd1a93bcc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f7adffb-5b77-478f-aa15-021cf576abcf", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10864,Microsoft.Compute/GetVMImageFromLocation30Min;71864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:2f7adffb-5b77-478f-aa15-021cf576abcf", - "Expires" : "-1", - "x-ms-request-id" : "5540cb74-657b-4a52-9cf2-c1b109ae1785", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101120\"\r\n}", - "x-ms-client-request-id" : "f3cfa096-4b72-4a0b-834f-8cedd1a93bcc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202101290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a2a97aa-a1d5-4143-b23a-e27cf57c876d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9785b81a-a8ba-4858-ae8d-31bb5b8d4e88", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10885,Microsoft.Compute/GetVMImageFromLocation30Min;71885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:9785b81a-a8ba-4858-ae8d-31bb5b8d4e88", - "Expires" : "-1", - "x-ms-request-id" : "feac3408-765f-4173-ada8-604bb82e1ebe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101290\"\r\n}", - "x-ms-client-request-id" : "8a2a97aa-a1d5-4143-b23a-e27cf57c876d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202004080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "756dffd0-2b83-45e0-9cc5-7759b5122537", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58489f3c-83f9-42f9-ac7b-9c378a14b94d", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10900,Microsoft.Compute/GetVMImageFromLocation30Min;71900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:58489f3c-83f9-42f9-ac7b-9c378a14b94d", - "Expires" : "-1", - "x-ms-request-id" : "df184e0e-5871-4956-946d-5a2aab829c6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202004080\"\r\n}", - "x-ms-client-request-id" : "756dffd0-2b83-45e0-9cc5-7759b5122537", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202112020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37fa2464-bcd5-4511-a392-867c1adde168", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff903614-884f-4f0f-8210-724eb0a85114", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10871,Microsoft.Compute/GetVMImageFromLocation30Min;71871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:ff903614-884f-4f0f-8210-724eb0a85114", - "Expires" : "-1", - "x-ms-request-id" : "dcc81e47-1997-48e7-a3be-f8fbcaaa39e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202112020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202112020\"\r\n}", - "x-ms-client-request-id" : "37fa2464-bcd5-4511-a392-867c1adde168", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202007160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40a9bc44-fae0-4c48-b845-d72cecc6d35c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7b204f8-ecdd-404a-8e45-eb48c7d576ff", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10870,Microsoft.Compute/GetVMImageFromLocation30Min;71870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:e7b204f8-ecdd-404a-8e45-eb48c7d576ff", - "Expires" : "-1", - "x-ms-request-id" : "c2bf6799-fd2d-4774-980a-9bf679d8f5bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202007160\"\r\n}", - "x-ms-client-request-id" : "40a9bc44-fae0-4c48-b845-d72cecc6d35c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202201060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fea12f85-2483-49b9-9ed2-4a70f9046b6e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f4956b7-ac5b-4db8-8e2f-2dbfc01284f8", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10851,Microsoft.Compute/GetVMImageFromLocation30Min;71851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:6f4956b7-ac5b-4db8-8e2f-2dbfc01284f8", - "Expires" : "-1", - "x-ms-request-id" : "be602a11-e517-41c2-ad86-ce3332d959e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202201060\"\r\n}", - "x-ms-client-request-id" : "fea12f85-2483-49b9-9ed2-4a70f9046b6e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202009220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd082f68-b61c-4f9b-bb17-5620040e8186", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "717c0f72-0e26-4ea7-a300-307efee7d84f", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10857,Microsoft.Compute/GetVMImageFromLocation30Min;71857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:717c0f72-0e26-4ea7-a300-307efee7d84f", - "Expires" : "-1", - "x-ms-request-id" : "20693667-6052-4353-b853-09a4c8fcd00b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202009220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202009220\"\r\n}", - "x-ms-client-request-id" : "dd082f68-b61c-4f9b-bb17-5620040e8186", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202010140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab8152ce-3ea7-47b4-9f88-363867816ad1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84d48a21-995c-4afa-824c-a5b7c1c5f65b", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10890,Microsoft.Compute/GetVMImageFromLocation30Min;71890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:84d48a21-995c-4afa-824c-a5b7c1c5f65b", - "Expires" : "-1", - "x-ms-request-id" : "0a71d511-c4ed-4a89-84c4-93ddaaaeace1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202010140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202010140\"\r\n}", - "x-ms-client-request-id" : "ab8152ce-3ea7-47b4-9f88-363867816ad1", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202012111?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "658aa1e3-166c-40de-b2a9-123b47d61105", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "81f0877f-8bc8-4f7f-9783-5c1963dd0fb2", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10858,Microsoft.Compute/GetVMImageFromLocation30Min;71858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:81f0877f-8bc8-4f7f-9783-5c1963dd0fb2", - "Expires" : "-1", - "x-ms-request-id" : "f325ff18-25db-4ed2-9e25-10982e25811c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202012111\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202012111\"\r\n}", - "x-ms-client-request-id" : "658aa1e3-166c-40de-b2a9-123b47d61105", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202108170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e6df0dc-f439-489c-8923-601dcdc0bfb4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ce9af10-ff36-4c72-87a0-6e0234969b80", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10880,Microsoft.Compute/GetVMImageFromLocation30Min;71880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:9ce9af10-ff36-4c72-87a0-6e0234969b80", - "Expires" : "-1", - "x-ms-request-id" : "3067d0ba-4c3b-49b6-a1e6-7081e2431635", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202108170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202108170\"\r\n}", - "x-ms-client-request-id" : "3e6df0dc-f439-489c-8923-601dcdc0bfb4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202204190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd35ba45-9e1c-4ce0-83bb-4c4c11ae2682", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9b59174-48e4-478c-9563-49988680046f", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10855,Microsoft.Compute/GetVMImageFromLocation30Min;71855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:a9b59174-48e4-478c-9563-49988680046f", - "Expires" : "-1", - "x-ms-request-id" : "1e527f18-2317-47f6-8d2f-0432d94d6578", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202204190\"\r\n}", - "x-ms-client-request-id" : "cd35ba45-9e1c-4ce0-83bb-4c4c11ae2682", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201909020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f4a9ce0-6e71-4cf0-a846-24e25211a294", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ddf82c4-87e1-4e83-9a5f-6e2703d15ad5", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10866,Microsoft.Compute/GetVMImageFromLocation30Min;71866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:0ddf82c4-87e1-4e83-9a5f-6e2703d15ad5", - "Expires" : "-1", - "x-ms-request-id" : "a51bb13b-16d3-4f77-a776-2009b9129bf5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201909020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201909020\"\r\n}", - "x-ms-client-request-id" : "8f4a9ce0-6e71-4cf0-a846-24e25211a294", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202007290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ddb39d0-eeac-47fd-b46b-a3f65f61af77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e27dbba-9219-4e53-8e89-e0086fc39d5d", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10902,Microsoft.Compute/GetVMImageFromLocation30Min;71902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:9e27dbba-9219-4e53-8e89-e0086fc39d5d", - "Expires" : "-1", - "x-ms-request-id" : "54a8cf5d-a7f8-402e-bc19-cfa9830730e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202007290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202007290\"\r\n}", - "x-ms-client-request-id" : "8ddb39d0-eeac-47fd-b46b-a3f65f61af77", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201910070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0b09f9b-14c1-4486-ac74-c2b287ab9aea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc6002fd-5d61-4302-abbb-3159a257e593", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10854,Microsoft.Compute/GetVMImageFromLocation30Min;71854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:bc6002fd-5d61-4302-abbb-3159a257e593", - "Expires" : "-1", - "x-ms-request-id" : "b781cab8-f022-43d9-9d0a-b75cab4d3a8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910070\"\r\n}", - "x-ms-client-request-id" : "d0b09f9b-14c1-4486-ac74-c2b287ab9aea", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202106040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fafdc775-9ad6-4e65-b89b-a67a6eec93cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6ec0d2a-fb96-4006-baa1-f04fb8201e08", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10856,Microsoft.Compute/GetVMImageFromLocation30Min;71856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:a6ec0d2a-fb96-4006-baa1-f04fb8201e08", - "Expires" : "-1", - "x-ms-request-id" : "f8cf3e5a-2606-44a9-800c-e2bf830001c0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202106040\"\r\n}", - "x-ms-client-request-id" : "fafdc775-9ad6-4e65-b89b-a67a6eec93cf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202002180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20e0fd9b-f6a9-4855-baa1-f4f887397f52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b69b5813-f9f1-4ed0-a851-f9ac0fecec5a", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10882,Microsoft.Compute/GetVMImageFromLocation30Min;71882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b69b5813-f9f1-4ed0-a851-f9ac0fecec5a", - "Expires" : "-1", - "x-ms-request-id" : "342437e6-a730-4d00-a8a5-f58105b6e72f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202002180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202002180\"\r\n}", - "x-ms-client-request-id" : "20e0fd9b-f6a9-4855-baa1-f4f887397f52", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201908220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab53bce4-28c9-44e2-925c-5f05bcfa5b9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a94a5952-24e7-42f5-81bf-4ff7bb9ce200", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10844,Microsoft.Compute/GetVMImageFromLocation30Min;71844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:a94a5952-24e7-42f5-81bf-4ff7bb9ce200", - "Expires" : "-1", - "x-ms-request-id" : "39c249d1-1cdb-4652-a80e-a20fcb531e8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201908220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201908220\"\r\n}", - "x-ms-client-request-id" : "ab53bce4-28c9-44e2-925c-5f05bcfa5b9d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202008180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9784017f-3b6b-4528-919f-f48cd6286689", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2de5986-c43d-4a89-bca8-946454319bbd", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10881,Microsoft.Compute/GetVMImageFromLocation30Min;71881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b2de5986-c43d-4a89-bca8-946454319bbd", - "Expires" : "-1", - "x-ms-request-id" : "854d3176-487c-4031-8de0-cb48e720ca68", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202008180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202008180\"\r\n}", - "x-ms-client-request-id" : "9784017f-3b6b-4528-919f-f48cd6286689", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202202130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bf83645-446b-48f4-9fb2-e089141dead4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0c80c32-1e23-4835-8490-7c114cce3a45", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10850,Microsoft.Compute/GetVMImageFromLocation30Min;71850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b0c80c32-1e23-4835-8490-7c114cce3a45", - "Expires" : "-1", - "x-ms-request-id" : "3fd1dba3-2c61-4090-97d7-ded2fc0c6934", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202202130\"\r\n}", - "x-ms-client-request-id" : "8bf83645-446b-48f4-9fb2-e089141dead4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202203020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f53b8b37-fd1e-4f0a-95e0-4302006e1839", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "accac4d7-550e-41f0-b643-10c785bb9069", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10849,Microsoft.Compute/GetVMImageFromLocation30Min;71849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:accac4d7-550e-41f0-b643-10c785bb9069", - "Expires" : "-1", - "x-ms-request-id" : "c04a607b-ce51-437c-a2b2-7bb87596afc0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202203020\"\r\n}", - "x-ms-client-request-id" : "f53b8b37-fd1e-4f0a-95e0-4302006e1839", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202011120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e931b553-b9d4-4be8-8dd1-417e663cdb49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f177768d-414d-4753-85ad-d6a842c4c285", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10847,Microsoft.Compute/GetVMImageFromLocation30Min;71847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:f177768d-414d-4753-85ad-d6a842c4c285", - "Expires" : "-1", - "x-ms-request-id" : "cbf88cdc-cb30-46af-9e38-097d72f727b6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202011120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202011120\"\r\n}", - "x-ms-client-request-id" : "e931b553-b9d4-4be8-8dd1-417e663cdb49", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.201910210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab16225f-a53f-47f3-8029-afea53702250", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0271f2d-36a0-4e58-b9d7-0488eee18cd9", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10848,Microsoft.Compute/GetVMImageFromLocation30Min;71848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b0271f2d-36a0-4e58-b9d7-0488eee18cd9", - "Expires" : "-1", - "x-ms-request-id" : "6fa18c50-555d-43cd-aee0-93af6ea34b9a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.201910210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.201910210\"\r\n}", - "x-ms-client-request-id" : "ab16225f-a53f-47f3-8029-afea53702250", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202109180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a19ddf1e-d8c8-4583-810a-30630cfa975d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "340a87d0-8c8d-47e2-9b33-00f721ae91d0", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10852,Microsoft.Compute/GetVMImageFromLocation30Min;71852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:340a87d0-8c8d-47e2-9b33-00f721ae91d0", - "Expires" : "-1", - "x-ms-request-id" : "f8dbcac6-66c1-4445-a7a7-b8a9d929f363", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202109180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202109180\"\r\n}", - "x-ms-client-request-id" : "a19ddf1e-d8c8-4583-810a-30630cfa975d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202204010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dba42d7-a195-4405-8469-112f9b2bde0d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "537d854e-4102-4e4c-9400-5ce652d10ccc", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10845,Microsoft.Compute/GetVMImageFromLocation30Min;71845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:537d854e-4102-4e4c-9400-5ce652d10ccc", - "Expires" : "-1", - "x-ms-request-id" : "09c8a624-e5f4-4ce8-8ab4-c3389e5c763e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202204010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202204010\"\r\n}", - "x-ms-client-request-id" : "3dba42d7-a195-4405-8469-112f9b2bde0d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202205100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31772e3c-7ee3-40ee-8cdd-63e7ae9ef0f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f81a7f0b-eec3-4167-b3e5-4c0eaa1405db", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10842,Microsoft.Compute/GetVMImageFromLocation30Min;71842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:f81a7f0b-eec3-4167-b3e5-4c0eaa1405db", - "Expires" : "-1", - "x-ms-request-id" : "d28a6420-d5ec-42a2-bcfb-0c5eca577777", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202205100\"\r\n}", - "x-ms-client-request-id" : "31772e3c-7ee3-40ee-8cdd-63e7ae9ef0f5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202111250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a22d506-bc09-451c-a23d-975e0fb2c8b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c941cdd5-58c2-47c2-ad35-dea45040bd64", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10859,Microsoft.Compute/GetVMImageFromLocation30Min;71859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:c941cdd5-58c2-47c2-ad35-dea45040bd64", - "Expires" : "-1", - "x-ms-request-id" : "a1632117-7e08-4e98-b5ae-0a710b34946f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111250\"\r\n}", - "x-ms-client-request-id" : "2a22d506-bc09-451c-a23d-975e0fb2c8b5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202102240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e0becbb-fd68-4f24-9ac1-074feb3f97ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "240523a7-ae8a-4d3d-abba-f4d5c445b121", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10861,Microsoft.Compute/GetVMImageFromLocation30Min;71861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:240523a7-ae8a-4d3d-abba-f4d5c445b121", - "Expires" : "-1", - "x-ms-request-id" : "1e8f0d9d-cf1f-4a96-b8a7-5b2dadc156d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202102240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202102240\"\r\n}", - "x-ms-client-request-id" : "4e0becbb-fd68-4f24-9ac1-074feb3f97ca", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202111290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c141e089-06d2-46df-95ff-fba32de1b986", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d53f2a1-de5d-40f1-91a4-3fe6358bae0d", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10873,Microsoft.Compute/GetVMImageFromLocation30Min;71873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:2d53f2a1-de5d-40f1-91a4-3fe6358bae0d", - "Expires" : "-1", - "x-ms-request-id" : "0c2a68c7-a162-4193-8928-d68d7de53713", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111290\"\r\n}", - "x-ms-client-request-id" : "c141e089-06d2-46df-95ff-fba32de1b986", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202111300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd3f2a34-37de-47f8-b60e-0a986fde24f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dfcb043d-c4ac-454e-94c8-1149d7c3ebec", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10843,Microsoft.Compute/GetVMImageFromLocation30Min;71843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:dfcb043d-c4ac-454e-94c8-1149d7c3ebec", - "Expires" : "-1", - "x-ms-request-id" : "36cecdc3-4080-4894-968d-74d6bcd5f7bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111300\"\r\n}", - "x-ms-client-request-id" : "bd3f2a34-37de-47f8-b60e-0a986fde24f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202103151?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5748044-cd23-4096-b438-c47cdf3f8a9b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c4f2ee7-a142-4070-b725-5a180de05d1a", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10860,Microsoft.Compute/GetVMImageFromLocation30Min;71860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:5c4f2ee7-a142-4070-b725-5a180de05d1a", - "Expires" : "-1", - "x-ms-request-id" : "b46bc265-e3b5-4e03-ba44-4d11b07ecac9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202103151\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202103151\"\r\n}", - "x-ms-client-request-id" : "c5748044-cd23-4096-b438-c47cdf3f8a9b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202005220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25227216-7e92-49c9-89d9-48662cf821b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "532ef306-6955-417b-a113-9df796d43f72", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10862,Microsoft.Compute/GetVMImageFromLocation30Min;71862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:532ef306-6955-417b-a113-9df796d43f72", - "Expires" : "-1", - "x-ms-request-id" : "8e3c432b-1cbd-43d0-ba5b-0c6bf7f7f2ac", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202005220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202005220\"\r\n}", - "x-ms-client-request-id" : "25227216-7e92-49c9-89d9-48662cf821b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202202020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d5da403-1151-449a-8a98-d4ce98f7974b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d160c10-0b4c-4c88-9e2d-12c935c7dc77", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10846,Microsoft.Compute/GetVMImageFromLocation30Min;71846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:5d160c10-0b4c-4c88-9e2d-12c935c7dc77", - "Expires" : "-1", - "x-ms-request-id" : "e5eb52e9-4ece-4449-b0e4-5d90f23a839d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202202020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202202020\"\r\n}", - "x-ms-client-request-id" : "9d5da403-1151-449a-8a98-d4ce98f7974b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202106220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6af379b0-a9f9-4a20-9943-f4b1b1d0b92d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de230514-b410-480d-8164-fd3dd1834690", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10841,Microsoft.Compute/GetVMImageFromLocation30Min;71841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:de230514-b410-480d-8164-fd3dd1834690", - "Expires" : "-1", - "x-ms-request-id" : "f73988e4-5f75-4a84-82e7-98c7c869c24a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202106220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202106220\"\r\n}", - "x-ms-client-request-id" : "6af379b0-a9f9-4a20-9943-f4b1b1d0b92d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202110250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b89ecfef-966d-4f97-a2de-b49d9265f135", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c45cf58-7908-4429-8aa6-20326f666a87", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10840,Microsoft.Compute/GetVMImageFromLocation30Min;71840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:8c45cf58-7908-4429-8aa6-20326f666a87", - "Expires" : "-1", - "x-ms-request-id" : "2a470972-08ce-4c67-823b-c40901022624", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202110250\"\r\n}", - "x-ms-client-request-id" : "b89ecfef-966d-4f97-a2de-b49d9265f135", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202205060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a754369-b992-4a2e-9d10-765de2c0ff59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a408614-c16a-4069-83f7-8e6d1ea26a98", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10837,Microsoft.Compute/GetVMImageFromLocation30Min;71837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:7a408614-c16a-4069-83f7-8e6d1ea26a98", - "Expires" : "-1", - "x-ms-request-id" : "56773955-3bd4-4032-bb76-4cc3369da0d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202205060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202205060\"\r\n}", - "x-ms-client-request-id" : "6a754369-b992-4a2e-9d10-765de2c0ff59", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202203080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61d6a092-3f24-43cf-b592-b6a8deb54baf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86422e85-11ef-40c8-ab1c-122ab135b9c3", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10836,Microsoft.Compute/GetVMImageFromLocation30Min;71836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:86422e85-11ef-40c8-ab1c-122ab135b9c3", - "Expires" : "-1", - "x-ms-request-id" : "54da3065-3cab-418f-9413-1a0fd29ef6c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202203080\"\r\n}", - "x-ms-client-request-id" : "61d6a092-3f24-43cf-b592-b6a8deb54baf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202203250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5207d2c-9268-4620-9f23-564513f3272e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "077141d4-9d9d-4741-97ea-efafb060b1d8", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10839,Microsoft.Compute/GetVMImageFromLocation30Min;71839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:077141d4-9d9d-4741-97ea-efafb060b1d8", - "Expires" : "-1", - "x-ms-request-id" : "c7b390db-16fa-418d-b8af-4d766bcc7f7b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202203250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202203250\"\r\n}", - "x-ms-client-request-id" : "e5207d2c-9268-4620-9f23-564513f3272e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202201180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e1fd64f-0ff9-4666-86da-dbe512c5d5d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de15c30d-0932-495f-b192-feb0536ffcc6", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10838,Microsoft.Compute/GetVMImageFromLocation30Min;71838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:de15c30d-0932-495f-b192-feb0536ffcc6", - "Expires" : "-1", - "x-ms-request-id" : "69911d59-32bc-4cee-9ea2-18ca275e1932", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202201180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202201180\"\r\n}", - "x-ms-client-request-id" : "3e1fd64f-0ff9-4666-86da-dbe512c5d5d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202101060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b44fbdb-b2e7-4710-8c93-a785ae8471d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aab041b4-689b-4e63-99ca-27d5016d93d2", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10853,Microsoft.Compute/GetVMImageFromLocation30Min;71853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:aab041b4-689b-4e63-99ca-27d5016d93d2", - "Expires" : "-1", - "x-ms-request-id" : "e84383f7-a33e-4a4f-a0ed-ce54a0f0afda", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202101060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202101060\"\r\n}", - "x-ms-client-request-id" : "3b44fbdb-b2e7-4710-8c93-a785ae8471d9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202105080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c7528b3-03fd-4c48-ab30-32699be1c0ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d830b97d-4981-4c65-ac30-244d38f7eff3", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10874,Microsoft.Compute/GetVMImageFromLocation30Min;71874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:d830b97d-4981-4c65-ac30-244d38f7eff3", - "Expires" : "-1", - "x-ms-request-id" : "251fdcfa-fadd-47a6-b431-f199b1351818", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202105080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202105080\"\r\n}", - "x-ms-client-request-id" : "1c7528b3-03fd-4c48-ab30-32699be1c0ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202111230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "536dd386-5d12-4cd1-93a1-0ad4b830eeaf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44f4ba6b-6d26-4ffb-ab72-43def811652d", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10879,Microsoft.Compute/GetVMImageFromLocation30Min;71879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:44f4ba6b-6d26-4ffb-ab72-43def811652d", - "Expires" : "-1", - "x-ms-request-id" : "4fb14369-07d9-4190-bf01-8d03912d9896", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111230\"\r\n}", - "x-ms-client-request-id" : "536dd386-5d12-4cd1-93a1-0ad4b830eeaf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202104150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d63f109f-a5c3-4aa4-9f42-c656e5f00618", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75351412-613f-4c37-8d5f-f12c635546fc", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10886,Microsoft.Compute/GetVMImageFromLocation30Min;71886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:75351412-613f-4c37-8d5f-f12c635546fc", - "Expires" : "-1", - "x-ms-request-id" : "c6c75480-d588-406e-a9fe-100ea6e4a63a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202104150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202104150\"\r\n}", - "x-ms-client-request-id" : "d63f109f-a5c3-4aa4-9f42-c656e5f00618", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202003170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0055e96c-e2cc-46a1-a03f-bebd51f1c152", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd3962a1-8cc1-4319-a503-ad5acae9149e", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10878,Microsoft.Compute/GetVMImageFromLocation30Min;71878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:fd3962a1-8cc1-4319-a503-ad5acae9149e", - "Expires" : "-1", - "x-ms-request-id" : "a1f2c079-d13a-41ce-9a13-f7b8659dc7eb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202003170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202003170\"\r\n}", - "x-ms-client-request-id" : "0055e96c-e2cc-46a1-a03f-bebd51f1c152", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202110120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9554e618-1824-426f-9fff-2d15c0f3111c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5704f32-3327-4086-be3c-b7cc528bd72a", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10883,Microsoft.Compute/GetVMImageFromLocation30Min;71883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:e5704f32-3327-4086-be3c-b7cc528bd72a", - "Expires" : "-1", - "x-ms-request-id" : "de14f1b1-7e91-4cca-ab06-6f6c9eb86f60", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202110120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202110120\"\r\n}", - "x-ms-client-request-id" : "9554e618-1824-426f-9fff-2d15c0f3111c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202004290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4955b4b-cd50-4033-bddb-1a5aaee3f595", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0073a44-0a7f-403a-9165-7eaf716a9cea", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10887,Microsoft.Compute/GetVMImageFromLocation30Min;71887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b0073a44-0a7f-403a-9165-7eaf716a9cea", - "Expires" : "-1", - "x-ms-request-id" : "acffda65-7325-4e4a-a7b2-e7f7805b0aab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202004290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202004290\"\r\n}", - "x-ms-client-request-id" : "b4955b4b-cd50-4033-bddb-1a5aaee3f595", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18_04-lts-gen2/versions/18.04.202111220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd895f8d-7302-4550-bf37-372a9ad3c47a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee3c18ba-a6c1-4833-a698-39f022ff567f", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10877,Microsoft.Compute/GetVMImageFromLocation30Min;71877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:ee3c18ba-a6c1-4833-a698-39f022ff567f", - "Expires" : "-1", - "x-ms-request-id" : "5034ca9b-6a0a-426c-921c-747cedee819b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"18.04.202111220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18_04-lts-gen2/Versions/18.04.202111220\"\r\n}", - "x-ms-client-request-id" : "fd895f8d-7302-4550-bf37-372a9ad3c47a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d005b6a-42e5-464d-abad-39007c899050", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3519", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f491f158-713d-4891-a62c-7effd91a60fc", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15831,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:f491f158-713d-4891-a62c-7effd91a60fc", - "Expires" : "-1", - "x-ms-request-id" : "f13f66a2-d762-4076-82ed-796af84b5d76", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201904170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201904170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201905140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201907040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201907040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201907240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201907240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201907241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201908010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201908140\"\r\n }\r\n]", - "x-ms-client-request-id" : "2d005b6a-42e5-464d-abad-39007c899050", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201906270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81f7f507-6ce5-45ce-bec6-c3ede94fb1e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f8ecccf-0f06-41fd-8b3d-1a9d394d9cd0", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10831,Microsoft.Compute/GetVMImageFromLocation30Min;71831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:8f8ecccf-0f06-41fd-8b3d-1a9d394d9cd0", - "Expires" : "-1", - "x-ms-request-id" : "49c04d24-e37f-44aa-9812-5a4106dbccf1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906270\"\r\n}", - "x-ms-client-request-id" : "81f7f507-6ce5-45ce-bec6-c3ede94fb1e5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201905140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcdcd175-bb6d-443e-bf5e-a5ea23d5f47a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b21350a1-a155-4206-9faf-f62b74a02a42", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10835,Microsoft.Compute/GetVMImageFromLocation30Min;71835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:b21350a1-a155-4206-9faf-f62b74a02a42", - "Expires" : "-1", - "x-ms-request-id" : "ea96bb3e-3cf5-4b06-917b-bfb418249335", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201905140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201905140\"\r\n}", - "x-ms-client-request-id" : "bcdcd175-bb6d-443e-bf5e-a5ea23d5f47a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201906190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd2ac97b-ea17-4cec-a4da-d0b134da8236", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "156dc9f1-a294-4735-b444-5cc080153fe1", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10830,Microsoft.Compute/GetVMImageFromLocation30Min;71830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:156dc9f1-a294-4735-b444-5cc080153fe1", - "Expires" : "-1", - "x-ms-request-id" : "4f2b7dda-788f-4279-a996-398296c92bb1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906190\"\r\n}", - "x-ms-client-request-id" : "dd2ac97b-ea17-4cec-a4da-d0b134da8236", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201908140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40aeb658-1c4a-4f14-98e7-8081cbb0bf5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34df8fee-1f93-48f0-b4a7-d56281a47051", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10828,Microsoft.Compute/GetVMImageFromLocation30Min;71828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:34df8fee-1f93-48f0-b4a7-d56281a47051", - "Expires" : "-1", - "x-ms-request-id" : "5090239c-dec6-4602-b9a3-cc85b49a09ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201908140\"\r\n}", - "x-ms-client-request-id" : "40aeb658-1c4a-4f14-98e7-8081cbb0bf5e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201904170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9920361-ecd1-4c85-a872-2c27585d5ade", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0cbb33a8-d1f0-49f7-8d2b-203860df7f54", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10827,Microsoft.Compute/GetVMImageFromLocation30Min;71827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:0cbb33a8-d1f0-49f7-8d2b-203860df7f54", - "Expires" : "-1", - "x-ms-request-id" : "899d68fb-c8ce-4f12-9a2b-2bd153c0c3a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201904170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201904170\"\r\n}", - "x-ms-client-request-id" : "c9920361-ecd1-4c85-a872-2c27585d5ade", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201906050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8429e6eb-42d3-41de-bf0c-6acd8f839028", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89d0e70f-881a-42ba-a95c-4d84f83a8b1c", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10826,Microsoft.Compute/GetVMImageFromLocation30Min;71826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:89d0e70f-881a-42ba-a95c-4d84f83a8b1c", - "Expires" : "-1", - "x-ms-request-id" : "bb6483cf-6f9c-4fda-906c-36db583a3b7c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906050\"\r\n}", - "x-ms-client-request-id" : "8429e6eb-42d3-41de-bf0c-6acd8f839028", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201907040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aaf492d2-c2e5-4df3-a653-ea8f5ab928f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2437cdf8-d14f-45d4-8b3f-e823175cf46f", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10832,Microsoft.Compute/GetVMImageFromLocation30Min;71832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:2437cdf8-d14f-45d4-8b3f-e823175cf46f", - "Expires" : "-1", - "x-ms-request-id" : "4093d0af-5570-45be-808d-f954cbd75307", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201907040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201907040\"\r\n}", - "x-ms-client-request-id" : "aaf492d2-c2e5-4df3-a653-ea8f5ab928f8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201906040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6584b888-18db-4434-b222-70d61fc97688", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c2e6606-e4bb-4235-9dd7-6be5e9812e80", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10834,Microsoft.Compute/GetVMImageFromLocation30Min;71834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:6c2e6606-e4bb-4235-9dd7-6be5e9812e80", - "Expires" : "-1", - "x-ms-request-id" : "be5a24b4-d680-4ccb-95a0-a6b2e45e0b66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906040\"\r\n}", - "x-ms-client-request-id" : "6584b888-18db-4434-b222-70d61fc97688", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201906280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d90f50c-66b3-42bb-8e49-2880e1835665", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42e67f0f-b3c9-4a17-9d8f-023951765582", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10833,Microsoft.Compute/GetVMImageFromLocation30Min;71833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:42e67f0f-b3c9-4a17-9d8f-023951765582", - "Expires" : "-1", - "x-ms-request-id" : "1db23504-4657-4f69-b19f-524dea3d1147", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201906280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201906280\"\r\n}", - "x-ms-client-request-id" : "3d90f50c-66b3-42bb-8e49-2880e1835665", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201907240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "662e6f12-55ce-402f-b3dc-64cc58c6d48e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dff3e5b7-cba2-4b9a-8256-1a9a0948a5ef", - "Date" : "Tue, 24 May 2022 13:02:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10829,Microsoft.Compute/GetVMImageFromLocation30Min;71829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:dff3e5b7-cba2-4b9a-8256-1a9a0948a5ef", - "Expires" : "-1", - "x-ms-request-id" : "bd1e83b6-b305-4b01-9b0f-3d8db6b242e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201907240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201907240\"\r\n}", - "x-ms-client-request-id" : "662e6f12-55ce-402f-b3dc-64cc58c6d48e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201908010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "faa5a524-b632-4233-997d-83d0fe4905fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e56705b1-20d7-40ab-93d0-89054896f7a0", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10824,Microsoft.Compute/GetVMImageFromLocation30Min;71824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:e56705b1-20d7-40ab-93d0-89054896f7a0", - "Expires" : "-1", - "x-ms-request-id" : "b9bf7cea-ca3a-4514-aa9f-f47e310e791e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201908010\"\r\n}", - "x-ms-client-request-id" : "faa5a524-b632-4233-997d-83d0fe4905fa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04/versions/19.04.201907241?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93ce6948-f9bc-49bb-9414-6a420ab3eff8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "764", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42586239-c30b-479e-8545-c2af041ac20e", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10825,Microsoft.Compute/GetVMImageFromLocation30Min;71825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130228Z:42586239-c30b-479e-8545-c2af041ac20e", - "Expires" : "-1", - "x-ms-request-id" : "d3c2dfde-d42d-4e2f-b2d3-4b4c41e601b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201907241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04/Versions/19.04.201907241\"\r\n}", - "x-ms-client-request-id" : "93ce6948-f9bc-49bb-9414-6a420ab3eff8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6dda5187-ca1e-4ee2-81b7-957d9469a2e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2993", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "91869646-251a-42f1-8932-2accc8550367", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15830,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:91869646-251a-42f1-8932-2accc8550367", - "Expires" : "-1", - "x-ms-request-id" : "3947f811-62c0-4484-88bc-7f1bb51026df", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908210\"\r\n }\r\n]", - "x-ms-client-request-id" : "6dda5187-ca1e-4ee2-81b7-957d9469a2e4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fe39030-7ceb-4fa5-b186-3e6c35a49a1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cb86459-4efa-4a4e-8371-b3ef936f9aec", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10822,Microsoft.Compute/GetVMImageFromLocation30Min;71822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:6cb86459-4efa-4a4e-8371-b3ef936f9aec", - "Expires" : "-1", - "x-ms-request-id" : "a4eb6818-c0df-4879-b4a4-33cd05fba404", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908090\"\r\n}", - "x-ms-client-request-id" : "8fe39030-7ceb-4fa5-b186-3e6c35a49a1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04569095-6ace-4b86-b745-9f12f00f5130", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63582deb-d33f-4803-9538-83609e1630eb", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10823,Microsoft.Compute/GetVMImageFromLocation30Min;71823", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:63582deb-d33f-4803-9538-83609e1630eb", - "Expires" : "-1", - "x-ms-request-id" : "ad01ba87-2e09-4f46-bff9-1ca2667708c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908210\"\r\n}", - "x-ms-client-request-id" : "04569095-6ace-4b86-b745-9f12f00f5130", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "30647c47-cb9b-473f-b969-699015714d59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14d6a897-ae8d-4f3c-b9ca-b4abf9805ea4", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10819,Microsoft.Compute/GetVMImageFromLocation30Min;71819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:14d6a897-ae8d-4f3c-b9ca-b4abf9805ea4", - "Expires" : "-1", - "x-ms-request-id" : "567487c7-6d9d-438c-adef-71b0ebee9737", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908020\"\r\n}", - "x-ms-client-request-id" : "30647c47-cb9b-473f-b969-699015714d59", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f0dbb4a-1e25-489d-ab44-ad5075fae3a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a81e5dfa-afa6-4261-b2eb-50d7bec97265", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10818,Microsoft.Compute/GetVMImageFromLocation30Min;71818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:a81e5dfa-afa6-4261-b2eb-50d7bec97265", - "Expires" : "-1", - "x-ms-request-id" : "3e79cb1e-c223-4309-9150-d532847f873a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908150\"\r\n}", - "x-ms-client-request-id" : "5f0dbb4a-1e25-489d-ab44-ad5075fae3a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9273f0a-85b3-4b99-957d-adf59f267a9a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11771", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b69c8ad7-2bb6-4292-ab18-f01be7f7b2ff", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10817,Microsoft.Compute/GetVMImageFromLocation30Min;71817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:b69c8ad7-2bb6-4292-ab18-f01be7f7b2ff", - "Expires" : "-1", - "x-ms-request-id" : "ef9ffc8e-3ac4-4e60-be17-22f5cb28470e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908140\"\r\n}", - "x-ms-client-request-id" : "d9273f0a-85b3-4b99-957d-adf59f267a9a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06db1e7b-6ecf-4b8e-9bf7-217b6d5d87d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "329696f9-373f-412e-a808-a6bde18d587d", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10816,Microsoft.Compute/GetVMImageFromLocation30Min;71816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:329696f9-373f-412e-a808-a6bde18d587d", - "Expires" : "-1", - "x-ms-request-id" : "df648ee9-7e87-43b7-a194-9075a2af5e0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908190\"\r\n}", - "x-ms-client-request-id" : "06db1e7b-6ecf-4b8e-9bf7-217b6d5d87d2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da67cd51-2b24-4244-a18d-78c030102bcc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "16e6417d-ac70-4146-92b4-423a5bd7177f", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10820,Microsoft.Compute/GetVMImageFromLocation30Min;71820", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:16e6417d-ac70-4146-92b4-423a5bd7177f", - "Expires" : "-1", - "x-ms-request-id" : "2cc68fa2-a7cb-412c-b0ba-3dd225ab5545", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908130\"\r\n}", - "x-ms-client-request-id" : "da67cd51-2b24-4244-a18d-78c030102bcc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fd835ac-e407-468d-a03c-1a742e1284dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ac89a0a-4d43-43c7-ac49-36d418a9b3a2", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10821,Microsoft.Compute/GetVMImageFromLocation30Min;71821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:5ac89a0a-4d43-43c7-ac49-36d418a9b3a2", - "Expires" : "-1", - "x-ms-request-id" : "f0118fed-bcf0-4cd5-998d-6a8301c94b25", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908160\"\r\n}", - "x-ms-client-request-id" : "9fd835ac-e407-468d-a03c-1a742e1284dc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dcb85c7-39ef-4e06-a135-02af6b5e955b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1373b328-11f5-4b3c-9b47-0d971db2d3de", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10815,Microsoft.Compute/GetVMImageFromLocation30Min;71815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:1373b328-11f5-4b3c-9b47-0d971db2d3de", - "Expires" : "-1", - "x-ms-request-id" : "13c85ede-bb39-4a28-9804-bea922521ddc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908080\"\r\n}", - "x-ms-client-request-id" : "3dcb85c7-39ef-4e06-a135-02af6b5e955b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.04-DAILY/versions/19.04.201908010?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0e34758-5f97-425e-bb4c-de1fcb22b719", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9a9c29c-b95a-4736-8868-d22451ebe86c", - "Date" : "Tue, 24 May 2022 13:02:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10814,Microsoft.Compute/GetVMImageFromLocation30Min;71814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:e9a9c29c-b95a-4736-8868-d22451ebe86c", - "Expires" : "-1", - "x-ms-request-id" : "277d2104-024d-47a8-8e5c-d1a2b106e4cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.04-DAILY/Versions/19.04.201908010\"\r\n}", - "x-ms-client-request-id" : "f0e34758-5f97-425e-bb4c-de1fcb22b719", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a4f83c6-1572-4299-bc21-0c3b7358b3bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5086", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d25820a1-61dd-4f3e-b2f7-8772220b13d2", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15829,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:d25820a1-61dd-4f3e-b2f7-8772220b13d2", - "Expires" : "-1", - "x-ms-request-id" : "90c92a91-b18e-4ec9-a5fa-130ea36f5e17", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202006110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007100\"\r\n }\r\n]", - "x-ms-client-request-id" : "9a4f83c6-1572-4299-bc21-0c3b7358b3bb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "adbe2a8a-5ad2-4a8e-92bd-38fb35ea4715", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29173084-cc77-4fca-90f6-8f5aad53a9a8", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10813,Microsoft.Compute/GetVMImageFromLocation30Min;71813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:29173084-cc77-4fca-90f6-8f5aad53a9a8", - "Expires" : "-1", - "x-ms-request-id" : "3a30691e-5f1a-462b-95bc-4a55086fd7b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908130\"\r\n}", - "x-ms-client-request-id" : "adbe2a8a-5ad2-4a8e-92bd-38fb35ea4715", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a21b4a0-2e1c-41b7-a3cd-3940c680f0a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fa9165d-153a-4527-b8f3-a445edb72f10", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10812,Microsoft.Compute/GetVMImageFromLocation30Min;71812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:0fa9165d-153a-4527-b8f3-a445edb72f10", - "Expires" : "-1", - "x-ms-request-id" : "6fb42348-42e0-4dac-9e6d-86283d554605", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908110\"\r\n}", - "x-ms-client-request-id" : "4a21b4a0-2e1c-41b7-a3cd-3940c680f0a6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202006110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09a5fb97-5ce2-4f85-a0f7-89cb28b88b1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e33c1d98-033a-4034-ab3f-4c42b23b5ba3", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10810,Microsoft.Compute/GetVMImageFromLocation30Min;71810", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:e33c1d98-033a-4034-ab3f-4c42b23b5ba3", - "Expires" : "-1", - "x-ms-request-id" : "61370ae9-8019-49b9-bb32-891ef5ccc9dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202006110\"\r\n}", - "x-ms-client-request-id" : "09a5fb97-5ce2-4f85-a0f7-89cb28b88b1d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "419724cb-9d71-4abd-b717-8574b1b20be3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fedd2df4-3013-425c-9005-8ca9be2af03c", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10806,Microsoft.Compute/GetVMImageFromLocation30Min;71806", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:fedd2df4-3013-425c-9005-8ca9be2af03c", - "Expires" : "-1", - "x-ms-request-id" : "6a6edca8-a872-4777-82a1-0fd614bf1551", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908200\"\r\n}", - "x-ms-client-request-id" : "419724cb-9d71-4abd-b717-8574b1b20be3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6b54940-4e32-4277-9cd6-06fdc5813b16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "524ef081-027d-4f6e-a637-4543a1de9ebd", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10808,Microsoft.Compute/GetVMImageFromLocation30Min;71808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:524ef081-027d-4f6e-a637-4543a1de9ebd", - "Expires" : "-1", - "x-ms-request-id" : "dd220b7d-c9f8-4a95-8b7f-656017659218", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908120\"\r\n}", - "x-ms-client-request-id" : "f6b54940-4e32-4277-9cd6-06fdc5813b16", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70f29b65-b344-4040-92d7-065cc4d2d7a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0362306-8013-4b0a-bf7f-156c91493e17", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10811,Microsoft.Compute/GetVMImageFromLocation30Min;71811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:f0362306-8013-4b0a-bf7f-156c91493e17", - "Expires" : "-1", - "x-ms-request-id" : "9df18a19-0c78-40f0-9142-d54745c4f1e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007080\"\r\n}", - "x-ms-client-request-id" : "70f29b65-b344-4040-92d7-065cc4d2d7a9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67ce757f-0315-4b5d-a082-2ee779c636f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "454c815e-eeed-4280-b154-b04f9dd9e4a5", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10809,Microsoft.Compute/GetVMImageFromLocation30Min;71809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:454c815e-eeed-4280-b154-b04f9dd9e4a5", - "Expires" : "-1", - "x-ms-request-id" : "8f249d49-ca18-47ef-9a8f-6d8b6e4bc5a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908160\"\r\n}", - "x-ms-client-request-id" : "67ce757f-0315-4b5d-a082-2ee779c636f4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202007090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebc40e02-50ba-4cf5-b6c0-e3e089b2161f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a5ef407-6b3c-427e-bd94-44e437e5a1da", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10805,Microsoft.Compute/GetVMImageFromLocation30Min;71805", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130229Z:9a5ef407-6b3c-427e-bd94-44e437e5a1da", - "Expires" : "-1", - "x-ms-request-id" : "b3afe5b8-9884-4952-97b2-fa976e85b004", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007090\"\r\n}", - "x-ms-client-request-id" : "ebc40e02-50ba-4cf5-b6c0-e3e089b2161f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202007070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a1cdd5d-04c8-4269-9280-d9979bab307c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6a75c13-098b-4d5a-b67a-f3b8c0a7614f", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10804,Microsoft.Compute/GetVMImageFromLocation30Min;71804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:b6a75c13-098b-4d5a-b67a-f3b8c0a7614f", - "Expires" : "-1", - "x-ms-request-id" : "fd646528-58d5-4666-9fdf-0ac0be6abb44", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007070\"\r\n}", - "x-ms-client-request-id" : "4a1cdd5d-04c8-4269-9280-d9979bab307c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908190?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3f4cc0a-d47d-425d-8596-e9d4c43b09b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e303e21-e72c-4cd5-8c16-3f073e0be61e", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10803,Microsoft.Compute/GetVMImageFromLocation30Min;71803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:4e303e21-e72c-4cd5-8c16-3f073e0be61e", - "Expires" : "-1", - "x-ms-request-id" : "7b6038f6-b9aa-42a0-8436-47660f4370f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908190\"\r\n}", - "x-ms-client-request-id" : "f3f4cc0a-d47d-425d-8596-e9d4c43b09b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202007030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03cdcb13-f315-493e-8f6f-40630743073b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc520ce2-91fc-4cc2-a5ef-a697608ab2b5", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10801,Microsoft.Compute/GetVMImageFromLocation30Min;71801", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:dc520ce2-91fc-4cc2-a5ef-a697608ab2b5", - "Expires" : "-1", - "x-ms-request-id" : "7e1697b3-e326-4f24-8e93-73e8b0273887", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007030\"\r\n}", - "x-ms-client-request-id" : "03cdcb13-f315-493e-8f6f-40630743073b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03ae5339-7e38-44c8-b957-9f51b7815b1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f348734-e301-43d5-bc36-7cc8dfe0824b", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10800,Microsoft.Compute/GetVMImageFromLocation30Min;71800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:5f348734-e301-43d5-bc36-7cc8dfe0824b", - "Expires" : "-1", - "x-ms-request-id" : "e99e6cd1-d844-4c4f-bb59-22161915bbc5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908180\"\r\n}", - "x-ms-client-request-id" : "03ae5339-7e38-44c8-b957-9f51b7815b1c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f730f8ac-e938-4ab8-88ef-527d8fd8aeb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6d9a6b9-625f-40c7-a5cd-42c19b90683c", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10802,Microsoft.Compute/GetVMImageFromLocation30Min;71802", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:f6d9a6b9-625f-40c7-a5cd-42c19b90683c", - "Expires" : "-1", - "x-ms-request-id" : "b38eb615-8afc-4e48-ac99-d8d3eb2389f1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908080\"\r\n}", - "x-ms-client-request-id" : "f730f8ac-e938-4ab8-88ef-527d8fd8aeb9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "167f6204-ee4d-4cb0-87d2-8fc2ae8f1536", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d18f23ca-fd31-49aa-95b4-41f6d3ebfeed", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10798,Microsoft.Compute/GetVMImageFromLocation30Min;71798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:d18f23ca-fd31-49aa-95b4-41f6d3ebfeed", - "Expires" : "-1", - "x-ms-request-id" : "9466fd4a-9b95-44d6-ba59-44021708d63d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908050\"\r\n}", - "x-ms-client-request-id" : "167f6204-ee4d-4cb0-87d2-8fc2ae8f1536", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202007020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1901898f-1f25-4cc4-82d5-e7d4bccaac51", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47c8ccda-8c70-4df4-893b-a589d95dde50", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10797,Microsoft.Compute/GetVMImageFromLocation30Min;71797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:47c8ccda-8c70-4df4-893b-a589d95dde50", - "Expires" : "-1", - "x-ms-request-id" : "55bd6a17-cec7-4243-a916-f207ff5a0166", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007020\"\r\n}", - "x-ms-client-request-id" : "1901898f-1f25-4cc4-82d5-e7d4bccaac51", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.201908100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08e3e442-2a66-4ef8-ada9-d68298e3ed8e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "811ccbe1-997a-4e25-9d09-88cc464ea17f", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10807,Microsoft.Compute/GetVMImageFromLocation30Min;71807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:811ccbe1-997a-4e25-9d09-88cc464ea17f", - "Expires" : "-1", - "x-ms-request-id" : "0ec19db4-892d-4d3b-bf0e-a1c27ed34f4d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.201908100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.201908100\"\r\n}", - "x-ms-client-request-id" : "08e3e442-2a66-4ef8-ada9-d68298e3ed8e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19.10-DAILY/versions/19.10.202007100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8407336f-b854-49f2-a7d8-7a2b3791e96f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "770", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "826ba25e-7fa9-43b7-aac0-6281178ad26d", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10799,Microsoft.Compute/GetVMImageFromLocation30Min;71799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:826ba25e-7fa9-43b7-aac0-6281178ad26d", - "Expires" : "-1", - "x-ms-request-id" : "a73d9b9a-1e35-48a7-a369-ed7f22f41703", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19.10-DAILY/Versions/19.10.202007100\"\r\n}", - "x-ms-client-request-id" : "8407336f-b854-49f2-a7d8-7a2b3791e96f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45610e2f-be43-4d41-be31-efa47afd1f10", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "14291", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ca920a0-4579-4804-85c0-e3ea292c36aa", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15828,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:7ca920a0-4579-4804-85c0-e3ea292c36aa", - "Expires" : "-1", - "x-ms-request-id" : "90200b78-ed32-4f6c-bc16-7e8d4b80d6f4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910042\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910042\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001230\"\r\n }\r\n]", - "x-ms-client-request-id" : "45610e2f-be43-4d41-be31-efa47afd1f10", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45a2cec6-9727-4200-a698-8a79427b8478", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de6e692f-4351-413e-9615-f7b22dd8b901", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10796,Microsoft.Compute/GetVMImageFromLocation30Min;71796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:de6e692f-4351-413e-9615-f7b22dd8b901", - "Expires" : "-1", - "x-ms-request-id" : "8fa08fe8-264c-41f4-addf-64f95ddec2b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909170\"\r\n}", - "x-ms-client-request-id" : "45a2cec6-9727-4200-a698-8a79427b8478", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909240?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd3c7ddf-52ca-468d-86dd-0b93e9c133ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5422284c-daa3-455c-8171-c51ead01864c", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10795,Microsoft.Compute/GetVMImageFromLocation30Min;71795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:5422284c-daa3-455c-8171-c51ead01864c", - "Expires" : "-1", - "x-ms-request-id" : "d9236722-cdb9-4c78-84c1-f41183c3d2ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909240\"\r\n}", - "x-ms-client-request-id" : "bd3c7ddf-52ca-468d-86dd-0b93e9c133ab", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911131?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9716b619-ca31-488b-8df0-4563c7a936ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "652f7e90-fb7c-4a65-9314-90d60da422c4", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10786,Microsoft.Compute/GetVMImageFromLocation30Min;71786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:652f7e90-fb7c-4a65-9314-90d60da422c4", - "Expires" : "-1", - "x-ms-request-id" : "9b53d120-b885-4758-877b-3c58d045f51d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911131\"\r\n}", - "x-ms-client-request-id" : "9716b619-ca31-488b-8df0-4563c7a936ee", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ec96ff6-90d9-46eb-a8d2-796405c0a196", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10c6384e-00ac-4342-bc16-73381d2e2dd8", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10792,Microsoft.Compute/GetVMImageFromLocation30Min;71792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:10c6384e-00ac-4342-bc16-73381d2e2dd8", - "Expires" : "-1", - "x-ms-request-id" : "3f02a2b3-0ae8-4d1e-a592-bb15ba14c110", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910230\"\r\n}", - "x-ms-client-request-id" : "7ec96ff6-90d9-46eb-a8d2-796405c0a196", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f798d615-d0a8-4e39-85ce-ae4abbd0f64f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b3b34fd2-de86-4704-99c3-a611bca330e4", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10787,Microsoft.Compute/GetVMImageFromLocation30Min;71787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:b3b34fd2-de86-4704-99c3-a611bca330e4", - "Expires" : "-1", - "x-ms-request-id" : "41edf25c-0bb6-4c47-9d0c-15a10693448c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910220\"\r\n}", - "x-ms-client-request-id" : "f798d615-d0a8-4e39-85ce-ae4abbd0f64f", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ad20d6c-ac5e-4fe4-a74f-876e796bfeeb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f53d6aae-3b77-439b-ac8a-42e8ed1d1f67", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10783,Microsoft.Compute/GetVMImageFromLocation30Min;71783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:f53d6aae-3b77-439b-ac8a-42e8ed1d1f67", - "Expires" : "-1", - "x-ms-request-id" : "98eaf519-bcd1-4e80-af98-9f6cec661956", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910250\"\r\n}", - "x-ms-client-request-id" : "8ad20d6c-ac5e-4fe4-a74f-876e796bfeeb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910290?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc4ce307-d445-4b27-bc60-e121cb459340", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b33c945-e998-47d7-a69c-ef1caa353dda", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10785,Microsoft.Compute/GetVMImageFromLocation30Min;71785", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:7b33c945-e998-47d7-a69c-ef1caa353dda", - "Expires" : "-1", - "x-ms-request-id" : "1faebb63-1495-4d4d-8890-52de14dcf68a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910290\"\r\n}", - "x-ms-client-request-id" : "cc4ce307-d445-4b27-bc60-e121cb459340", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e37532b0-2c4f-4585-bc7d-bd5cd3b4878e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "950d770b-4a3f-47e1-afdb-6af571dfef14", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10779,Microsoft.Compute/GetVMImageFromLocation30Min;71779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:950d770b-4a3f-47e1-afdb-6af571dfef14", - "Expires" : "-1", - "x-ms-request-id" : "a4f020a6-a1d9-42c6-9c1a-ac5d1462ad60", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910120\"\r\n}", - "x-ms-client-request-id" : "e37532b0-2c4f-4585-bc7d-bd5cd3b4878e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ef517e1-5548-472d-9e59-0f6d00ffef56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f187261-1e6c-4150-b69f-4a8258433681", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10793,Microsoft.Compute/GetVMImageFromLocation30Min;71793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:5f187261-1e6c-4150-b69f-4a8258433681", - "Expires" : "-1", - "x-ms-request-id" : "5079fc58-8828-4b9c-866c-0d8fdd7223f6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909210\"\r\n}", - "x-ms-client-request-id" : "9ef517e1-5548-472d-9e59-0f6d00ffef56", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08915b44-0afa-4704-8dc9-fc6f3274bc7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca501e74-eaba-450f-84e6-a9202938c231", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10778,Microsoft.Compute/GetVMImageFromLocation30Min;71778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:ca501e74-eaba-450f-84e6-a9202938c231", - "Expires" : "-1", - "x-ms-request-id" : "7946cc00-ceb8-41e6-a0a5-a319704b41e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910110\"\r\n}", - "x-ms-client-request-id" : "08915b44-0afa-4704-8dc9-fc6f3274bc7c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c33d10ba-2dae-40bd-968f-e8629dcb6451", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79767954-fcf8-48c1-af45-1e4b053dd14c", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10782,Microsoft.Compute/GetVMImageFromLocation30Min;71782", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:79767954-fcf8-48c1-af45-1e4b053dd14c", - "Expires" : "-1", - "x-ms-request-id" : "08e1c443-4cc1-4bcf-90b0-c691500586bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911080\"\r\n}", - "x-ms-client-request-id" : "c33d10ba-2dae-40bd-968f-e8629dcb6451", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910042?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01085eaa-5243-4310-92ed-94b8a1eadd41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17e83ae3-fecd-4cd4-b275-8ececb9bffb9", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10791,Microsoft.Compute/GetVMImageFromLocation30Min;71791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:17e83ae3-fecd-4cd4-b275-8ececb9bffb9", - "Expires" : "-1", - "x-ms-request-id" : "24e62f5b-16f3-4c70-ae05-dc4e822b4803", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910042\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910042\"\r\n}", - "x-ms-client-request-id" : "01085eaa-5243-4310-92ed-94b8a1eadd41", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d86d8590-9f3d-4531-80ef-814963984b85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2eb994d-ed1b-41bb-acbf-deb0cf8b0fdd", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10789,Microsoft.Compute/GetVMImageFromLocation30Min;71789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:a2eb994d-ed1b-41bb-acbf-deb0cf8b0fdd", - "Expires" : "-1", - "x-ms-request-id" : "f2bdb9fd-5a9e-4218-b1b7-1a0cf135705b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910100\"\r\n}", - "x-ms-client-request-id" : "d86d8590-9f3d-4531-80ef-814963984b85", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d0bf24e-4f42-4af6-8193-77e634f9c5cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9a2f7d2-f923-44bb-9aaf-657fd3e0d194", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10780,Microsoft.Compute/GetVMImageFromLocation30Min;71780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:f9a2f7d2-f923-44bb-9aaf-657fd3e0d194", - "Expires" : "-1", - "x-ms-request-id" : "9cea6590-5420-4878-bc90-dec033a8ed9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911060\"\r\n}", - "x-ms-client-request-id" : "4d0bf24e-4f42-4af6-8193-77e634f9c5cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62987868-a63c-48ea-a212-46bde5ca21cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0d6185c-fcf6-4f0f-8019-58dec11223f1", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10781,Microsoft.Compute/GetVMImageFromLocation30Min;71781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:f0d6185c-fcf6-4f0f-8019-58dec11223f1", - "Expires" : "-1", - "x-ms-request-id" : "a79e8727-c3c9-4873-a73e-b13da2c3ce48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911130\"\r\n}", - "x-ms-client-request-id" : "62987868-a63c-48ea-a212-46bde5ca21cc", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13303355-3a17-42b4-80c3-cbffc5bdfbe6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfbec485-3332-453f-8287-72d495ddace1", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10776,Microsoft.Compute/GetVMImageFromLocation30Min;71776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:cfbec485-3332-453f-8287-72d495ddace1", - "Expires" : "-1", - "x-ms-request-id" : "73194330-36f1-4dc3-acc3-b649cfbffe2c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911140\"\r\n}", - "x-ms-client-request-id" : "13303355-3a17-42b4-80c3-cbffc5bdfbe6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911050?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dce1899-3454-4401-a0d2-dcaa1c9f5ecf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0306a0d0-4fa4-44b6-b834-066816c73b71", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10775,Microsoft.Compute/GetVMImageFromLocation30Min;71775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:0306a0d0-4fa4-44b6-b834-066816c73b71", - "Expires" : "-1", - "x-ms-request-id" : "499de459-6685-41c8-beab-d51dd9ceb811", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911050\"\r\n}", - "x-ms-client-request-id" : "3dce1899-3454-4401-a0d2-dcaa1c9f5ecf", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d29b9dc-4233-4040-a716-3b6b01ac5d80", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2f37641-159e-4bf7-8341-d1912cfdbb46", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10777,Microsoft.Compute/GetVMImageFromLocation30Min;71777", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:a2f37641-159e-4bf7-8341-d1912cfdbb46", - "Expires" : "-1", - "x-ms-request-id" : "a5bb61c3-4be5-4f22-8111-06de0d6ec5e4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911070\"\r\n}", - "x-ms-client-request-id" : "1d29b9dc-4233-4040-a716-3b6b01ac5d80", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f06882fa-42c0-4c0d-992e-34ce5802fb18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "716bbe57-f489-4e2c-815a-0a3b29843bd0", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10771,Microsoft.Compute/GetVMImageFromLocation30Min;71771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:716bbe57-f489-4e2c-815a-0a3b29843bd0", - "Expires" : "-1", - "x-ms-request-id" : "54b5b787-bc4a-4f96-a7d9-037e1164033d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001230\"\r\n}", - "x-ms-client-request-id" : "f06882fa-42c0-4c0d-992e-34ce5802fb18", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910160?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51b3928d-a183-4062-9213-05c2e33955bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76c681c9-5d45-4eac-bdeb-f37a25a1731c", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10790,Microsoft.Compute/GetVMImageFromLocation30Min;71790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:76c681c9-5d45-4eac-bdeb-f37a25a1731c", - "Expires" : "-1", - "x-ms-request-id" : "d187d875-6c6b-4e0a-aa3d-ccd42c8b900c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910160\"\r\n}", - "x-ms-client-request-id" : "51b3928d-a183-4062-9213-05c2e33955bb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c759e66-48a4-4b8b-bda2-f52f6635a6d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd3714d9-1227-4944-af7c-3382f7df8ec9", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10794,Microsoft.Compute/GetVMImageFromLocation30Min;71794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:cd3714d9-1227-4944-af7c-3382f7df8ec9", - "Expires" : "-1", - "x-ms-request-id" : "6af03e7b-c4fd-488e-8cc3-7ce0bd419598", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909180\"\r\n}", - "x-ms-client-request-id" : "1c759e66-48a4-4b8b-bda2-f52f6635a6d5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909250?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e27a4fca-9093-43f4-92e9-fa3b31191e94", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5e3511b-5a28-44fb-bada-fb8dadaf0f51", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10774,Microsoft.Compute/GetVMImageFromLocation30Min;71774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:c5e3511b-5a28-44fb-bada-fb8dadaf0f51", - "Expires" : "-1", - "x-ms-request-id" : "4a70ea75-e01b-49d1-a7ef-400f920cebff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909250\"\r\n}", - "x-ms-client-request-id" : "e27a4fca-9093-43f4-92e9-fa3b31191e94", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "724de8ea-4ab4-4447-90f2-7a09305b1b6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "225597c6-3007-412e-8819-0f249bfa4ff2", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10773,Microsoft.Compute/GetVMImageFromLocation30Min;71773", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:225597c6-3007-412e-8819-0f249bfa4ff2", - "Expires" : "-1", - "x-ms-request-id" : "a0238e3e-3ef5-49ac-89df-3b003dd3d63f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910090\"\r\n}", - "x-ms-client-request-id" : "724de8ea-4ab4-4447-90f2-7a09305b1b6c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911260?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ed5f332-e238-4a9d-866f-73c4ad06767c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03a2e076-3ba9-4479-9158-6558c9496523", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10772,Microsoft.Compute/GetVMImageFromLocation30Min;71772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:03a2e076-3ba9-4479-9158-6558c9496523", - "Expires" : "-1", - "x-ms-request-id" : "712b4298-0b3f-42a2-adff-ef88dcd31c4c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911260\"\r\n}", - "x-ms-client-request-id" : "3ed5f332-e238-4a9d-866f-73c4ad06767c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0591ade9-ade2-4dbf-a8c0-b7343cc596c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8fce769-68ac-46b4-9134-daca8bc5198c", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10784,Microsoft.Compute/GetVMImageFromLocation30Min;71784", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:e8fce769-68ac-46b4-9134-daca8bc5198c", - "Expires" : "-1", - "x-ms-request-id" : "d0dde89b-9ee7-43bd-88db-319f6ad9e498", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910150\"\r\n}", - "x-ms-client-request-id" : "0591ade9-ade2-4dbf-a8c0-b7343cc596c9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fad5010-3aeb-4453-b4ca-4e5fbce8af74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02caa88e-2b48-499f-8896-51005e70690b", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10762,Microsoft.Compute/GetVMImageFromLocation30Min;71762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:02caa88e-2b48-499f-8896-51005e70690b", - "Expires" : "-1", - "x-ms-request-id" : "0a7be99b-a50f-4b5d-bdf4-5b2354406439", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910300\"\r\n}", - "x-ms-client-request-id" : "6fad5010-3aeb-4453-b4ca-4e5fbce8af74", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1951a3c-dc40-409f-b0d6-05b2a3a6c85e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37e5f05d-d123-49fa-bcb0-b1e2e9e65c0f", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10769,Microsoft.Compute/GetVMImageFromLocation30Min;71769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:37e5f05d-d123-49fa-bcb0-b1e2e9e65c0f", - "Expires" : "-1", - "x-ms-request-id" : "af791269-9695-443e-aa6d-c62a0b39a867", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001210\"\r\n}", - "x-ms-client-request-id" : "e1951a3c-dc40-409f-b0d6-05b2a3a6c85e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911280?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25f7c06c-6fc1-469e-b5e6-0814cd322050", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ca31367-16f8-4216-81e1-90723fc2c44d", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10763,Microsoft.Compute/GetVMImageFromLocation30Min;71763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:2ca31367-16f8-4216-81e1-90723fc2c44d", - "Expires" : "-1", - "x-ms-request-id" : "6643ee48-8fd6-4ec5-9693-0e8db1f72296", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911280\"\r\n}", - "x-ms-client-request-id" : "25f7c06c-6fc1-469e-b5e6-0814cd322050", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ed5fc15-07f5-46a7-8566-8257b7b42c9a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "790530ff-4b7f-43f0-a18f-b07f1413fd8e", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10768,Microsoft.Compute/GetVMImageFromLocation30Min;71768", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:790530ff-4b7f-43f0-a18f-b07f1413fd8e", - "Expires" : "-1", - "x-ms-request-id" : "6907128d-a3a2-4f5f-a4bf-3f27363049cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910030\"\r\n}", - "x-ms-client-request-id" : "8ed5fc15-07f5-46a7-8566-8257b7b42c9a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa45482c-88c1-4311-943b-c198631ae8a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee69585b-ca51-4e5a-9904-12c25a6a4739", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10761,Microsoft.Compute/GetVMImageFromLocation30Min;71761", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:ee69585b-ca51-4e5a-9904-12c25a6a4739", - "Expires" : "-1", - "x-ms-request-id" : "593c7794-0af6-44ea-a03c-ccd088fe61f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909270\"\r\n}", - "x-ms-client-request-id" : "aa45482c-88c1-4311-943b-c198631ae8a8", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201912130?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50ba097a-3984-4207-bfab-e593daeadc93", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d18fa74a-9e26-45c8-a6df-51cc4b88d48d", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10759,Microsoft.Compute/GetVMImageFromLocation30Min;71759", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:d18fa74a-9e26-45c8-a6df-51cc4b88d48d", - "Expires" : "-1", - "x-ms-request-id" : "dfd59a66-630c-4486-a30b-d68ed3225330", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912130\"\r\n}", - "x-ms-client-request-id" : "50ba097a-3984-4207-bfab-e593daeadc93", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201909200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2d9b1d7-b758-4c41-98a8-9ed0e3d5e0f0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb4d23d7-57d1-407c-8521-db815f38dcc7", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10764,Microsoft.Compute/GetVMImageFromLocation30Min;71764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:cb4d23d7-57d1-407c-8521-db815f38dcc7", - "Expires" : "-1", - "x-ms-request-id" : "e5a690ce-0a95-4e01-a9b0-e683fcc008a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201909200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201909200\"\r\n}", - "x-ms-client-request-id" : "f2d9b1d7-b758-4c41-98a8-9ed0e3d5e0f0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911210?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "184e1125-45b4-4a4c-a6c7-ac38e27c3c4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54db0787-c468-4002-90e0-8dde1df200f5", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10758,Microsoft.Compute/GetVMImageFromLocation30Min;71758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:54db0787-c468-4002-90e0-8dde1df200f5", - "Expires" : "-1", - "x-ms-request-id" : "cbf17bc1-e172-4273-9bd9-5bb33c466172", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911210\"\r\n}", - "x-ms-client-request-id" : "184e1125-45b4-4a4c-a6c7-ac38e27c3c4e", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001150?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7580f678-f06f-4846-b58e-c26aae98bd51", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32e94fb7-c31d-48ac-b956-422862bf8d28", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10760,Microsoft.Compute/GetVMImageFromLocation30Min;71760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:32e94fb7-c31d-48ac-b956-422862bf8d28", - "Expires" : "-1", - "x-ms-request-id" : "389c0cc7-2cff-4587-8458-c39d49c9b671", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001150\"\r\n}", - "x-ms-client-request-id" : "7580f678-f06f-4846-b58e-c26aae98bd51", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201912040?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0e5dfea-48ce-48b2-be1d-3fdc65dab3be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce0d4418-b6b7-47f2-ae27-c99f04e40936", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10770,Microsoft.Compute/GetVMImageFromLocation30Min;71770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:ce0d4418-b6b7-47f2-ae27-c99f04e40936", - "Expires" : "-1", - "x-ms-request-id" : "dba3366b-9036-4f8e-9f96-cac54b691d5e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912040\"\r\n}", - "x-ms-client-request-id" : "b0e5dfea-48ce-48b2-be1d-3fdc65dab3be", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ab7b37d-cecc-40cc-a522-5f5f2b4e653b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4742e194-615e-47d7-96e4-e892146318bf", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10767,Microsoft.Compute/GetVMImageFromLocation30Min;71767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:4742e194-615e-47d7-96e4-e892146318bf", - "Expires" : "-1", - "x-ms-request-id" : "fc4d5d3d-e345-48e8-956f-58ce382619a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001220\"\r\n}", - "x-ms-client-request-id" : "8ab7b37d-cecc-40cc-a522-5f5f2b4e653b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201912170?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "038cc249-ea19-4bfc-89ad-4b3b50f8bd70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4da95d4f-f07b-4002-8c08-ef7348432f01", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10757,Microsoft.Compute/GetVMImageFromLocation30Min;71757", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:4da95d4f-f07b-4002-8c08-ef7348432f01", - "Expires" : "-1", - "x-ms-request-id" : "08126638-f142-4888-84ef-51f04655b939", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912170\"\r\n}", - "x-ms-client-request-id" : "038cc249-ea19-4bfc-89ad-4b3b50f8bd70", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201912180?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4155588-e54c-4354-812d-fe31db347e81", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19e301fb-1777-43b1-9281-de8261306c5a", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10765,Microsoft.Compute/GetVMImageFromLocation30Min;71765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:19e301fb-1777-43b1-9281-de8261306c5a", - "Expires" : "-1", - "x-ms-request-id" : "29d21a2b-d4fc-4f42-8b92-c4b63a9eb6fb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201912180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201912180\"\r\n}", - "x-ms-client-request-id" : "f4155588-e54c-4354-812d-fe31db347e81", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b39fc0a-f12b-45f9-ad5c-a5ccfa8396a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c55582d7-5f21-4c05-9461-1d4a8a55023d", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10766,Microsoft.Compute/GetVMImageFromLocation30Min;71766", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:c55582d7-5f21-4c05-9461-1d4a8a55023d", - "Expires" : "-1", - "x-ms-request-id" : "f067367f-1e50-4f6a-8a95-1242efb077c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001080\"\r\n}", - "x-ms-client-request-id" : "7b39fc0a-f12b-45f9-ad5c-a5ccfa8396a0", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff5f7c9f-82df-4d84-a3d3-112abc18bb1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34cabc32-e4d4-4952-98fc-4de0005512a3", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10756,Microsoft.Compute/GetVMImageFromLocation30Min;71756", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:34cabc32-e4d4-4952-98fc-4de0005512a3", - "Expires" : "-1", - "x-ms-request-id" : "2b7f7ce7-5f30-4cf1-b377-e610ceecef1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911220\"\r\n}", - "x-ms-client-request-id" : "ff5f7c9f-82df-4d84-a3d3-112abc18bb1c", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201911270?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "056ee664-cd7c-4495-aa1a-d5bf01c7d6c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df991a9e-af7f-4a6a-ad61-cc0edb0d6005", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10754,Microsoft.Compute/GetVMImageFromLocation30Min;71754", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:df991a9e-af7f-4a6a-ad61-cc0edb0d6005", - "Expires" : "-1", - "x-ms-request-id" : "cd475e86-275c-4cc3-9af3-ae01e5cde82f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201911270\"\r\n}", - "x-ms-client-request-id" : "056ee664-cd7c-4495-aa1a-d5bf01c7d6c2", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001140?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "212cf335-a558-421a-a3c0-506ff2587e11", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5061bf0-fcb0-4ade-b5f0-a54229c9adf9", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10753,Microsoft.Compute/GetVMImageFromLocation30Min;71753", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:e5061bf0-fcb0-4ade-b5f0-a54229c9adf9", - "Expires" : "-1", - "x-ms-request-id" : "a4f5cfe6-73f1-4b77-88f2-8e920a0e92c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001140\"\r\n}", - "x-ms-client-request-id" : "212cf335-a558-421a-a3c0-506ff2587e11", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce2a984f-b34c-46c2-a8ae-047a3383c1a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e7f2723-d9c7-460b-b22a-7787f88add22", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10751,Microsoft.Compute/GetVMImageFromLocation30Min;71751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:3e7f2723-d9c7-460b-b22a-7787f88add22", - "Expires" : "-1", - "x-ms-request-id" : "3b1e4c58-16d3-4c78-a55b-06cc2728ce30", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001090\"\r\n}", - "x-ms-client-request-id" : "ce2a984f-b34c-46c2-a8ae-047a3383c1a3", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910200?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ddbfb93-e553-4578-9703-1d3406678acb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4494593d-caf8-4ec0-80e4-4c6bc3da7aa9", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10788,Microsoft.Compute/GetVMImageFromLocation30Min;71788", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:4494593d-caf8-4ec0-80e4-4c6bc3da7aa9", - "Expires" : "-1", - "x-ms-request-id" : "5e1665c8-5154-4329-a615-425a89cd993e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910200\"\r\n}", - "x-ms-client-request-id" : "7ddbfb93-e553-4578-9703-1d3406678acb", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd06b93e-84fa-4bf3-b66b-b5208bee2a6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a0c9ded-0022-412e-b74f-433134e563c0", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10755,Microsoft.Compute/GetVMImageFromLocation30Min;71755", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:6a0c9ded-0022-412e-b74f-433134e563c0", - "Expires" : "-1", - "x-ms-request-id" : "c98b914f-d0f7-4333-85ae-ad51d00eefcc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910080\"\r\n}", - "x-ms-client-request-id" : "dd06b93e-84fa-4bf3-b66b-b5208bee2a6b", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.202001060?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33663203-574c-42d8-92b5-bf1583651a82", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "936a9f10-acce-4b77-9181-9a4fe3e36e3e", - "Date" : "Tue, 24 May 2022 13:02:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10752,Microsoft.Compute/GetVMImageFromLocation30Min;71752", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130230Z:936a9f10-acce-4b77-9181-9a4fe3e36e3e", - "Expires" : "-1", - "x-ms-request-id" : "cc8e8f75-bac6-4966-ab96-109c1ec555fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.202001060\"\r\n}", - "x-ms-client-request-id" : "33663203-574c-42d8-92b5-bf1583651a82", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-daily-gen2/versions/19.04.201910310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c0caa2e-9418-4a9d-b669-4cecd2d1f565", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e8ee1295-4ebb-4a00-933c-6d29a36de633", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10750,Microsoft.Compute/GetVMImageFromLocation30Min;71750", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:e8ee1295-4ebb-4a00-933c-6d29a36de633", - "Expires" : "-1", - "x-ms-request-id" : "e1011fc9-3e65-4fd5-9dad-ba9ee2f1a11e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-daily-gen2/Versions/19.04.201910310\"\r\n}", - "x-ms-client-request-id" : "8c0caa2e-9418-4a9d-b669-4cecd2d1f565", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b56a30a-69fa-4660-a1f7-c2c8f4fb5256", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1493", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26772ff6-b47e-4eb6-b043-ed6023627ad8", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15827,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:26772ff6-b47e-4eb6-b043-ed6023627ad8", - "Expires" : "-1", - "x-ms-request-id" : "6b2849db-fc70-4483-8b8a-bc3e11ed6655", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201908230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201910030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.202001220\"\r\n }\r\n]", - "x-ms-client-request-id" : "5b56a30a-69fa-4660-a1f7-c2c8f4fb5256", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-gen2/versions/19.04.201911080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8174cf0-aad4-4633-b9ef-bb78e97d336d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af857cdf-596b-4b23-bb28-542c213bddfb", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10748,Microsoft.Compute/GetVMImageFromLocation30Min;71748", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:af857cdf-596b-4b23-bb28-542c213bddfb", - "Expires" : "-1", - "x-ms-request-id" : "ffa5ea42-f4f4-4a71-ae0a-defc0f54bd32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911080\"\r\n}", - "x-ms-client-request-id" : "f8174cf0-aad4-4633-b9ef-bb78e97d336d", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-gen2/versions/19.04.201910030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a67e3007-0bf2-410e-a1d7-0fbae17275da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4bd6d712-a2c8-41b6-867f-0a26afe92220", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10749,Microsoft.Compute/GetVMImageFromLocation30Min;71749", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:4bd6d712-a2c8-41b6-867f-0a26afe92220", - "Expires" : "-1", - "x-ms-request-id" : "110b2e96-66d6-439c-92e6-28cd7f191186", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201910030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201910030\"\r\n}", - "x-ms-client-request-id" : "a67e3007-0bf2-410e-a1d7-0fbae17275da", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-gen2/versions/19.04.201908230?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ec3fc3e-e21e-449f-a3fe-269529966ec4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30abdcf1-5c43-4e4d-869a-87c9647c6040", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10747,Microsoft.Compute/GetVMImageFromLocation30Min;71747", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:30abdcf1-5c43-4e4d-869a-87c9647c6040", - "Expires" : "-1", - "x-ms-request-id" : "c602679f-cd38-4bd3-8afe-d1e4e2cb0dd5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201908230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201908230\"\r\n}", - "x-ms-client-request-id" : "2ec3fc3e-e21e-449f-a3fe-269529966ec4", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-gen2/versions/19.04.201911131?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bf87891-62ad-4a05-b61d-4768efb69ae5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ece0729-2e82-4e59-9f0b-515aa7d20233", - "Date" : "Tue, 24 May 2022 13:02:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10746,Microsoft.Compute/GetVMImageFromLocation30Min;71746", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:9ece0729-2e82-4e59-9f0b-515aa7d20233", - "Expires" : "-1", - "x-ms-request-id" : "c261f0c8-4420-4bdd-99ac-f60b24dbb502", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.201911131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.201911131\"\r\n}", - "x-ms-client-request-id" : "5bf87891-62ad-4a05-b61d-4768efb69ae5", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_04-gen2/versions/19.04.202001220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f139fe5c-2bbf-43b8-88bf-6c8d091a3eb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c29a4f4-9f3f-4ab4-9256-1edc66990caf", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10745,Microsoft.Compute/GetVMImageFromLocation30Min;71745", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130231Z:1c29a4f4-9f3f-4ab4-9256-1edc66990caf", - "Expires" : "-1", - "x-ms-request-id" : "e712380d-ea28-4ae0-9316-a9856ca5b4d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.04.202001220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_04-gen2/Versions/19.04.202001220\"\r\n}", - "x-ms-client-request-id" : "f139fe5c-2bbf-43b8-88bf-6c8d091a3eb6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac829458-79bb-4f22-8e41-39d820d297aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "591c1bc7-6f28-4517-b2d0-01b98f048b92", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15826,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:591c1bc7-6f28-4517-b2d0-01b98f048b92", - "Expires" : "-1", - "x-ms-request-id" : "fe3860b2-4bc1-4db9-8a2e-003505fc6ffd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202006110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007100\"\r\n }\r\n]", - "x-ms-client-request-id" : "ac829458-79bb-4f22-8e41-39d820d297aa", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202007030?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8985def3-4024-4d83-94d5-6043c52c92e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97090838-a090-427a-8b90-70c3885883d3", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10743,Microsoft.Compute/GetVMImageFromLocation30Min;71743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:97090838-a090-427a-8b90-70c3885883d3", - "Expires" : "-1", - "x-ms-request-id" : "dbab5af7-4a96-4c47-8ab8-84f86995a7a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007030\"\r\n}", - "x-ms-client-request-id" : "8985def3-4024-4d83-94d5-6043c52c92e9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202007100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a734ea4-8634-40c5-b208-607dc88bc514", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fcb9c04-780e-4dbe-8f8b-ac7c1a97d6aa", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10742,Microsoft.Compute/GetVMImageFromLocation30Min;71742", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:7fcb9c04-780e-4dbe-8f8b-ac7c1a97d6aa", - "Expires" : "-1", - "x-ms-request-id" : "e5a8852d-311e-48a0-bea9-6238d6b6f1de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007100\"\r\n}", - "x-ms-client-request-id" : "5a734ea4-8634-40c5-b208-607dc88bc514", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202007020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20d940ae-d867-4e0f-9c03-6ada33b780b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12be844d-957a-4726-9237-f1a4e7b2a87b", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10744,Microsoft.Compute/GetVMImageFromLocation30Min;71744", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:12be844d-957a-4726-9237-f1a4e7b2a87b", - "Expires" : "-1", - "x-ms-request-id" : "ce8bbf6c-b5fb-4b62-b1b7-20f7812a2fdb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007020\"\r\n}", - "x-ms-client-request-id" : "20d940ae-d867-4e0f-9c03-6ada33b780b9", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202007070?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f5ac132-f9a5-401a-ae87-63bcfb36ca24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c34d051f-09b1-4644-866d-40dda54f10a5", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10740,Microsoft.Compute/GetVMImageFromLocation30Min;71740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:c34d051f-09b1-4644-866d-40dda54f10a5", - "Expires" : "-1", - "x-ms-request-id" : "4cdcbf6a-0bfd-4ba7-8009-c3521f6d624b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007070\"\r\n}", - "x-ms-client-request-id" : "7f5ac132-f9a5-401a-ae87-63bcfb36ca24", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202006110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec4efdff-5dcb-4645-aa9f-6ce4d97a5ca6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aeb6a9e7-35eb-4315-a467-8013ab8b85e7", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10739,Microsoft.Compute/GetVMImageFromLocation30Min;71739", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:aeb6a9e7-35eb-4315-a467-8013ab8b85e7", - "Expires" : "-1", - "x-ms-request-id" : "956c0787-f2a8-48d8-b817-d3f7563db285", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202006110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202006110\"\r\n}", - "x-ms-client-request-id" : "ec4efdff-5dcb-4645-aa9f-6ce4d97a5ca6", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202007090?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc7425b8-4f2f-44eb-959a-2db20192cc0a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e285b2a-e090-4a2a-94be-25fecf63e4fe", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10741,Microsoft.Compute/GetVMImageFromLocation30Min;71741", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:4e285b2a-e090-4a2a-94be-25fecf63e4fe", - "Expires" : "-1", - "x-ms-request-id" : "d5ad228e-1ffd-4d01-bb39-97d2e1412722", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007090\"\r\n}", - "x-ms-client-request-id" : "fc7425b8-4f2f-44eb-959a-2db20192cc0a", - "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/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/19_10-daily-gen2/versions/19.10.202007080?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38da3935-a5a2-4578-a79a-23abdeb1907f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "768", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_132966381266696856", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "faa478b1-d3af-4bfa-910b-bb09593c3d15", - "Date" : "Tue, 24 May 2022 13:02:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;10738,Microsoft.Compute/GetVMImageFromLocation30Min;71738", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130232Z:faa478b1-d3af-4bfa-910b-bb09593c3d15", - "Expires" : "-1", - "x-ms-request-id" : "9c2d2cac-5b3d-4fe1-bfba-cd9a3b907dec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"19.10.202007080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/19_10-daily-gen2/Versions/19.10.202007080\"\r\n}", - "x-ms-client-request-id" : "38da3935-a5a2-4578-a79a-23abdeb1907f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca735c14-6151-4336-bdc5-dfffb3af010a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7802", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11765", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ab2ad74-f0db-419b-a36d-ec53d48f85d9", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130233Z:7ab2ad74-f0db-419b-a36d-ec53d48f85d9", - "Expires" : "-1", - "x-ms-request-id" : "874b9457-065e-42d9-8c70-c792af062c29", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alfredtestoffer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/alfredtestoffer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-ocp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-ocp-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-oke-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-oke-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-opp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-opp-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel-7-main-2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel-8-main-2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel-main-2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-byos-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos-test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-cpp-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-cpp-test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-HA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-raw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-SAP\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-SAP-APPS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-SAP-HA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-sig-publishing-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-TEST\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-TEST\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh_rhel_7_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh_rhel_7_vm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh_rhel_8_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh_rhel_8_main_1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh_rhel_8_vm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TEST-DO-NOT-USE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/TEST-DO-NOT-USE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_offer_china\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/test_offer_china\"\r\n }\r\n]", - "x-ms-client-request-id" : "ca735c14-6151-4336-bdc5-dfffb3af010a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/alfredtestoffer/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9caccf1a-5c38-497f-a62b-fe1fd08b8d3c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "791", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a87d74bd-eba2-40ef-87e5-bd86882312bc", - "Date" : "Tue, 24 May 2022 13:02:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130233Z:a87d74bd-eba2-40ef-87e5-bd86882312bc", - "Expires" : "-1", - "x-ms-request-id" : "6d221fc2-c409-4246-baa0-e946add6e375", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2plan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/alfredtestoffer/Skus/gen2plan\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"testplan_rhel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/alfredtestoffer/Skus/testplan_rhel\"\r\n }\r\n]", - "x-ms-client-request-id" : "9caccf1a-5c38-497f-a62b-fe1fd08b8d3c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/alfredtestoffer/skus/gen2plan/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c5d039a-d5f0-4b40-9e95-e2091d504d44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11764", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c813f583-85c1-4ef3-be5d-cd8bd0293bdb", - "Date" : "Tue, 24 May 2022 13:02:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130233Z:c813f583-85c1-4ef3-be5d-cd8bd0293bdb", - "Expires" : "-1", - "x-ms-request-id" : "9683bd04-9b70-420f-a48e-bfbbd4107b9e", - "Body" : "[]", - "x-ms-client-request-id" : "7c5d039a-d5f0-4b40-9e95-e2091d504d44", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/alfredtestoffer/skus/testplan_rhel/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c9eb57e-eb26-4a0f-9cec-7eb2475b7e65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "667d8a90-5478-4626-af58-02042d92fba3", - "Date" : "Tue, 24 May 2022 13:02:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130234Z:667d8a90-5478-4626-af58-02042d92fba3", - "Expires" : "-1", - "x-ms-request-id" : "40da7771-e0d8-4cc8-873a-4f220476b64c", - "Body" : "[]", - "x-ms-client-request-id" : "8c9eb57e-eb26-4a0f-9cec-7eb2475b7e65", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9be49948-28e9-458d-8dab-de33a4d32e0c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d9cdef1-cb6b-4787-94fd-716191738254", - "Date" : "Tue, 24 May 2022 13:02:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9998,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130234Z:9d9cdef1-cb6b-4787-94fd-716191738254", - "Expires" : "-1", - "x-ms-request-id" : "7ca331cc-1e33-4f3b-86b1-944aea01b5da", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-a\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-a-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-a-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-b\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-b-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-b-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-c\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-c-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-c-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-d-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-d-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ocp-worker-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "9be49948-28e9-458d-8dab-de33a4d32e0c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c577ece9-ce12-4665-950a-4f8498387b54", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "294", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c2fed45-817a-460a-82ed-02897fec8b48", - "Date" : "Tue, 24 May 2022 13:02:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130234Z:6c2fed45-817a-460a-82ed-02897fec8b48", - "Expires" : "-1", - "x-ms-request-id" : "8dfe14c6-0a9a-46cd-bf1d-265f888661b4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "c577ece9-ce12-4665-950a-4f8498387b54", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00271418-54bc-4a56-9c89-24ae055c7993", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac839fad-b0b4-4ec3-9bee-014e64425617", - "Date" : "Tue, 24 May 2022 13:02:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130234Z:ac839fad-b0b4-4ec3-9bee-014e64425617", - "Expires" : "-1", - "x-ms-request-id" : "ed7b9efb-1711-4054-8b07-6681c7767e59", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "00271418-54bc-4a56-9c89-24ae055c7993", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-a/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7033b16-b372-49b2-bced-97984d5478e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78431774-17d5-44ca-b375-48166e2e64ac", - "Date" : "Tue, 24 May 2022 13:02:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130235Z:78431774-17d5-44ca-b375-48166e2e64ac", - "Expires" : "-1", - "x-ms-request-id" : "fb2383ad-5f3a-4131-90be-0d735ae79ef1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-a/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "d7033b16-b372-49b2-bced-97984d5478e9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-a/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d447ee5e-5b57-4716-9ab4-0ebffe423d1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3df1a05-c5db-475e-b4c9-41636e0c1534", - "Date" : "Tue, 24 May 2022 13:02:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130235Z:a3df1a05-c5db-475e-b4c9-41636e0c1534", - "Expires" : "-1", - "x-ms-request-id" : "2a569aa1-e0ec-4c68-87ef-3d988931644f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-a\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-a/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "d447ee5e-5b57-4716-9ab4-0ebffe423d1c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-a-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "179b06c1-da5e-4a36-bb8b-6b72891f232e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be11f775-6184-4a0c-b8f4-9afc74eca862", - "Date" : "Tue, 24 May 2022 13:02:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130235Z:be11f775-6184-4a0c-b8f4-9afc74eca862", - "Expires" : "-1", - "x-ms-request-id" : "31a96566-fff4-46c1-b507-edef50117752", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-a-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "179b06c1-da5e-4a36-bb8b-6b72891f232e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-a-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ad68b71-4517-4253-a4e8-752df92151a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ba714cf-b926-48f6-b6de-b4679ecbf65d", - "Date" : "Tue, 24 May 2022 13:02:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130236Z:5ba714cf-b926-48f6-b6de-b4679ecbf65d", - "Expires" : "-1", - "x-ms-request-id" : "1c8ed23f-e9b7-4920-87e5-754a574636af", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-a-gen1\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-a-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "0ad68b71-4517-4253-a4e8-752df92151a1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-b/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0b4a677-a4e7-4c20-9960-af5dfc015928", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "438989c2-3420-45ec-81a4-14674aa62f8b", - "Date" : "Tue, 24 May 2022 13:02:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130236Z:438989c2-3420-45ec-81a4-14674aa62f8b", - "Expires" : "-1", - "x-ms-request-id" : "47e36087-159c-4663-873d-e4914000f373", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-b/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "a0b4a677-a4e7-4c20-9960-af5dfc015928", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-b/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "673e1b50-c9cf-4507-9702-4cd261760754", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "446336ce-9e8f-4e05-887a-0da703a1a412", - "Date" : "Tue, 24 May 2022 13:02:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130236Z:446336ce-9e8f-4e05-887a-0da703a1a412", - "Expires" : "-1", - "x-ms-request-id" : "376ac449-356f-4cce-9817-a2450794ae08", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-b\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-b/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "673e1b50-c9cf-4507-9702-4cd261760754", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-b-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a60067f2-118c-43a3-994c-0f2f15281cc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80b8a781-1874-4821-8ffd-05faa21f8dfd", - "Date" : "Tue, 24 May 2022 13:02:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130237Z:80b8a781-1874-4821-8ffd-05faa21f8dfd", - "Expires" : "-1", - "x-ms-request-id" : "30f0e0a5-27c7-4afb-bb66-009f8edbad7e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-b-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "a60067f2-118c-43a3-994c-0f2f15281cc0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-b-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a192da60-f4ee-4ab7-bd55-c008659de09c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8dcb693-22e6-4bec-ac06-7dc11c2bbfd8", - "Date" : "Tue, 24 May 2022 13:02:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130237Z:a8dcb693-22e6-4bec-ac06-7dc11c2bbfd8", - "Expires" : "-1", - "x-ms-request-id" : "1a8e7b47-c26b-4534-93c5-21bd126df3b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-b-gen1\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-b-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "a192da60-f4ee-4ab7-bd55-c008659de09c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-c/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36dc3c4b-aa8e-4f71-b6fa-747f976f159c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bef681fa-ba2d-446a-a857-c44fbb58eba4", - "Date" : "Tue, 24 May 2022 13:02:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130237Z:bef681fa-ba2d-446a-a857-c44fbb58eba4", - "Expires" : "-1", - "x-ms-request-id" : "e19bfcd3-7108-4ec4-b6bc-f2071012e68d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-c/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "36dc3c4b-aa8e-4f71-b6fa-747f976f159c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-c/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56c08cfb-c042-45a2-b95a-b217901751a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b308be9b-49da-48de-93aa-45c5e6523572", - "Date" : "Tue, 24 May 2022 13:02:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130238Z:b308be9b-49da-48de-93aa-45c5e6523572", - "Expires" : "-1", - "x-ms-request-id" : "afada407-0184-46a1-8fad-e59d486d1bad", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-c\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-c/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "56c08cfb-c042-45a2-b95a-b217901751a1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-c-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "688e4382-bcb1-4b24-92be-c274f5f0ee54", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0e0145c-0376-4d4e-a83f-8e5e6b46a559", - "Date" : "Tue, 24 May 2022 13:02:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130238Z:a0e0145c-0376-4d4e-a83f-8e5e6b46a559", - "Expires" : "-1", - "x-ms-request-id" : "75e7cc4a-da8e-4f1e-824c-6649919eb10c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-c-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "688e4382-bcb1-4b24-92be-c274f5f0ee54", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-c-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "89ce94e8-bb15-46e5-9119-6a8a368fb3da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26d808db-6376-424b-a351-f5a58b362a69", - "Date" : "Tue, 24 May 2022 13:02:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130238Z:26d808db-6376-424b-a351-f5a58b362a69", - "Expires" : "-1", - "x-ms-request-id" : "383facc6-efbe-4d74-acbc-2e93d0faf708", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-c-gen1\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-c-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "89ce94e8-bb15-46e5-9119-6a8a368fb3da", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-d/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c82ea926-0980-4a98-a53d-425a5dd46b85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3cc283af-743d-4cbc-8702-baf889cc8f06", - "Date" : "Tue, 24 May 2022 13:02:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130238Z:3cc283af-743d-4cbc-8702-baf889cc8f06", - "Expires" : "-1", - "x-ms-request-id" : "57e31bc4-583d-4f8b-bdb6-93f1ebabc958", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-d/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "c82ea926-0980-4a98-a53d-425a5dd46b85", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-d/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "844edbff-d93d-4465-858a-52ddff9bac59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e654787a-0998-4771-8c5c-7fc7b6bcc26c", - "Date" : "Tue, 24 May 2022 13:02:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130239Z:e654787a-0998-4771-8c5c-7fc7b6bcc26c", - "Expires" : "-1", - "x-ms-request-id" : "92e92973-f3c2-4217-974d-1c32142feac0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-d\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-d/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "844edbff-d93d-4465-858a-52ddff9bac59", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-d-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36e97390-d2cc-4966-bab3-efb55a0b541d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e68bfa16-c940-4c6c-9f86-a6456f0ca917", - "Date" : "Tue, 24 May 2022 13:02:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130239Z:e68bfa16-c940-4c6c-9f86-a6456f0ca917", - "Expires" : "-1", - "x-ms-request-id" : "ae39c77a-9b9e-4c57-8eb7-2fad6a364e8e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-d-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "36e97390-d2cc-4966-bab3-efb55a0b541d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-d-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0512071d-fbdc-4652-996d-b985244c6b35", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24d3fe94-8ac8-45a2-8970-a5128679c212", - "Date" : "Tue, 24 May 2022 13:02:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130239Z:24d3fe94-8ac8-45a2-8970-a5128679c212", - "Expires" : "-1", - "x-ms-request-id" : "0750e134-a0cd-4f15-b2b6-417c7102d465", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-d-gen1\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-d-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "0512071d-fbdc-4652-996d-b985244c6b35", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "102588cb-ee79-4f1e-ad08-91018ebcb769", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7a4e051-d64a-48fb-9826-db6e39f7e3cb", - "Date" : "Tue, 24 May 2022 13:02:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130240Z:c7a4e051-d64a-48fb-9826-db6e39f7e3cb", - "Expires" : "-1", - "x-ms-request-id" : "8fee2bdf-b726-4a0d-ae25-4a9311e406b0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "102588cb-ee79-4f1e-ad08-91018ebcb769", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/ocp-worker/skus/ocp-worker-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "042fde83-553f-4656-abaa-de979dd829d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1010", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3c3b9d4-1130-47ab-af45-1bbab41d4a31", - "Date" : "Tue, 24 May 2022 13:02:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130240Z:c3c3b9d4-1130-47ab-af45-1bbab41d4a31", - "Expires" : "-1", - "x-ms-request-id" : "58bef7b0-733f-4c12-bf1b-c54cf1f96144", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"ocp-worker-gen1\",\r\n \"product\": \"ocp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/ocp-worker/Skus/ocp-worker-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "042fde83-553f-4656-abaa-de979dd829d9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "029922f3-6986-47cd-ac4d-8e4eb574918d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3e0f9e8-d0b6-4b94-96af-6ce20bb6e82b", - "Date" : "Tue, 24 May 2022 13:02:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9997,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130240Z:f3e0f9e8-d0b6-4b94-96af-6ce20bb6e82b", - "Expires" : "-1", - "x-ms-request-id" : "567478ab-3329-48b8-ab0e-d3efbdb9ac20", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-a\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-a-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-a-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-b\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-b-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-b-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-c\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-c-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-c-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-d-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-d-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"oke-worker-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "029922f3-6986-47cd-ac4d-8e4eb574918d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "879d9429-122c-4d16-a39e-935af864a44e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "294", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19b53e84-f2e5-4db0-b970-e935d7c608ca", - "Date" : "Tue, 24 May 2022 13:02:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130241Z:19b53e84-f2e5-4db0-b970-e935d7c608ca", - "Expires" : "-1", - "x-ms-request-id" : "cc959600-6e84-457e-b17c-8d0a2f9e4c20", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "879d9429-122c-4d16-a39e-935af864a44e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "556d8d4c-2fb1-40ae-8954-c3593c71df48", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89b20e66-3a1d-46b5-b14b-6b9e18b7ead2", - "Date" : "Tue, 24 May 2022 13:02:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130241Z:89b20e66-3a1d-46b5-b14b-6b9e18b7ead2", - "Expires" : "-1", - "x-ms-request-id" : "12c22ed8-dd2c-4701-be8a-276128f33fa6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "556d8d4c-2fb1-40ae-8954-c3593c71df48", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-a/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bcbf9eb-c428-4585-95a4-8b58adccc9d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "805d5581-e1ad-402f-ba35-43fe2cdf7e88", - "Date" : "Tue, 24 May 2022 13:02:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15986,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130241Z:805d5581-e1ad-402f-ba35-43fe2cdf7e88", - "Expires" : "-1", - "x-ms-request-id" : "d36b408b-ad5e-49ab-a72e-e0db4b73a302", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-a/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "6bcbf9eb-c428-4585-95a4-8b58adccc9d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-a/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7d7b003-d481-499c-9788-19d2f8051063", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a29545a2-1d97-4c68-af65-f3e3fc4cb81b", - "Date" : "Tue, 24 May 2022 13:02:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130241Z:a29545a2-1d97-4c68-af65-f3e3fc4cb81b", - "Expires" : "-1", - "x-ms-request-id" : "a9632159-1e07-49da-8e12-cc253ca5c2c4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-a\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-a/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "e7d7b003-d481-499c-9788-19d2f8051063", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-a-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e96acae1-ab62-46f0-bf1b-56bfc607e93b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e48b55c1-a32e-4017-8e01-198d64933693", - "Date" : "Tue, 24 May 2022 13:02:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130242Z:e48b55c1-a32e-4017-8e01-198d64933693", - "Expires" : "-1", - "x-ms-request-id" : "625a99e2-5c5e-41d0-b1eb-33562deb02cb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-a-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "e96acae1-ab62-46f0-bf1b-56bfc607e93b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-a-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7f9b7bf-7d80-4365-8526-45410b32ec4c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4378f4f5-d563-4ddf-b8e7-686fb845351d", - "Date" : "Tue, 24 May 2022 13:02:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130242Z:4378f4f5-d563-4ddf-b8e7-686fb845351d", - "Expires" : "-1", - "x-ms-request-id" : "6cad4734-2d1b-4487-bb33-39b68ee2dc43", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-a-gen1\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-a-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "e7f9b7bf-7d80-4365-8526-45410b32ec4c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-b/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82639988-e3f8-481f-b6e4-0ab8fb91e71e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bf07096-0210-4b16-8efd-d738ac33f601", - "Date" : "Tue, 24 May 2022 13:02:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130242Z:8bf07096-0210-4b16-8efd-d738ac33f601", - "Expires" : "-1", - "x-ms-request-id" : "451e1a3a-1fc1-4de2-960d-b4168beb3f7b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-b/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "82639988-e3f8-481f-b6e4-0ab8fb91e71e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-b/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b36b154b-2649-424d-9c46-224468923f98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e917eb34-22de-4cf1-9292-dcbb93baf20f", - "Date" : "Tue, 24 May 2022 13:02:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130243Z:e917eb34-22de-4cf1-9292-dcbb93baf20f", - "Expires" : "-1", - "x-ms-request-id" : "d653dc59-52be-48c9-9473-aa9e060801c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-b\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-b/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "b36b154b-2649-424d-9c46-224468923f98", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-b-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8eb90c69-3e99-4602-9ff5-ad205b88049a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af98a72c-b095-4029-a7ed-824ed1ac0f85", - "Date" : "Tue, 24 May 2022 13:02:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15983,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130243Z:af98a72c-b095-4029-a7ed-824ed1ac0f85", - "Expires" : "-1", - "x-ms-request-id" : "643f2d0f-745d-41e3-87dd-db4a4952b736", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-b-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "8eb90c69-3e99-4602-9ff5-ad205b88049a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-b-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f48a4623-ba0a-4f77-954a-970b78cfe6f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f91ed02e-d9d4-442c-b655-442b8a01cf74", - "Date" : "Tue, 24 May 2022 13:02:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130243Z:f91ed02e-d9d4-442c-b655-442b8a01cf74", - "Expires" : "-1", - "x-ms-request-id" : "f26aafb5-cc17-402c-846d-10103512d5b2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-b-gen1\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-b-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "f48a4623-ba0a-4f77-954a-970b78cfe6f5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-c/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e85881d-b94f-4e3c-aeb3-7cc29f6f0b8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9093d36d-6c15-4144-b1a6-dca7948bd620", - "Date" : "Tue, 24 May 2022 13:02:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130243Z:9093d36d-6c15-4144-b1a6-dca7948bd620", - "Expires" : "-1", - "x-ms-request-id" : "06d728bd-4ffc-4aee-b732-53e8848afa89", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-c/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "3e85881d-b94f-4e3c-aeb3-7cc29f6f0b8c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-c/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e51728ca-6f17-4073-85f4-b59252fb1e99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "217b5284-c13a-43a2-a01f-d664e3ca043f", - "Date" : "Tue, 24 May 2022 13:02:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12984,Microsoft.Compute/GetVMImageFromLocation30Min;73984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130244Z:217b5284-c13a-43a2-a01f-d664e3ca043f", - "Expires" : "-1", - "x-ms-request-id" : "84d76245-8ef5-4dd7-af8c-564d756140c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-c\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-c/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "e51728ca-6f17-4073-85f4-b59252fb1e99", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-c-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d89f6aeb-1d6d-44ed-bc44-b20c01aa14fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d708ceb4-f292-4130-b683-4ac45fb7d284", - "Date" : "Tue, 24 May 2022 13:02:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130244Z:d708ceb4-f292-4130-b683-4ac45fb7d284", - "Expires" : "-1", - "x-ms-request-id" : "60beea38-7d83-48d4-9d33-27d1b67133b2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-c-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "d89f6aeb-1d6d-44ed-bc44-b20c01aa14fb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-c-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "476b839d-9101-4af5-84fc-7afe3ee5703e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebb17559-8ed4-4718-83e8-0d4e96610d5f", - "Date" : "Tue, 24 May 2022 13:02:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130244Z:ebb17559-8ed4-4718-83e8-0d4e96610d5f", - "Expires" : "-1", - "x-ms-request-id" : "c5c6bf09-9573-45eb-a906-551d53a06352", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-c-gen1\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-c-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "476b839d-9101-4af5-84fc-7afe3ee5703e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-d/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc7e4f6b-345d-4ab2-b221-c45b8eae0620", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3994e41-a528-4659-b510-30a1996bd33b", - "Date" : "Tue, 24 May 2022 13:02:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130245Z:d3994e41-a528-4659-b510-30a1996bd33b", - "Expires" : "-1", - "x-ms-request-id" : "480f0845-35c3-44b6-87fc-a2d8c03e77bf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-d/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "fc7e4f6b-345d-4ab2-b221-c45b8eae0620", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-d/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81c37581-3595-48cc-a491-ddb05b9985a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "467eb40c-fd6d-444f-926a-c7de628932e4", - "Date" : "Tue, 24 May 2022 13:02:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12982,Microsoft.Compute/GetVMImageFromLocation30Min;73982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130245Z:467eb40c-fd6d-444f-926a-c7de628932e4", - "Expires" : "-1", - "x-ms-request-id" : "936f3f8b-ae10-4418-81be-b81505398473", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-d\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-d/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "81c37581-3595-48cc-a491-ddb05b9985a9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-d-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebedcbed-d7d4-450b-806b-f45a019b14cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c9e2d42-8e6c-4b38-9fc9-eba3e24c5816", - "Date" : "Tue, 24 May 2022 13:02:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130245Z:0c9e2d42-8e6c-4b38-9fc9-eba3e24c5816", - "Expires" : "-1", - "x-ms-request-id" : "23790cf5-e21f-40a7-9bcb-77d3146aeb6f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-d-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "ebedcbed-d7d4-450b-806b-f45a019b14cd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-d-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8050027d-f3ff-4753-bcce-bc2dedebfb26", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01d4f94d-e4a3-456b-b344-833d3fbbcb33", - "Date" : "Tue, 24 May 2022 13:02:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130245Z:01d4f94d-e4a3-456b-b344-833d3fbbcb33", - "Expires" : "-1", - "x-ms-request-id" : "3c7dbe5d-dabd-452c-9083-6e4830318d4e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-d-gen1\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-d-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "8050027d-f3ff-4753-bcce-bc2dedebfb26", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "815a2b58-d2cf-45a2-8132-75906283ff13", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e916b549-b332-4ead-89c1-b17fc900f124", - "Date" : "Tue, 24 May 2022 13:02:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15978,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130246Z:e916b549-b332-4ead-89c1-b17fc900f124", - "Expires" : "-1", - "x-ms-request-id" : "2679890d-0bcd-4aa3-889a-a8994335dc6c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "815a2b58-d2cf-45a2-8132-75906283ff13", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/oke-worker/skus/oke-worker-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7d844ea-79fb-4578-b644-e682f01cf7c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1010", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "790ee73a-2bc7-4204-878a-22152f294156", - "Date" : "Tue, 24 May 2022 13:02:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12980,Microsoft.Compute/GetVMImageFromLocation30Min;73980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130246Z:790ee73a-2bc7-4204-878a-22152f294156", - "Expires" : "-1", - "x-ms-request-id" : "03f2b018-ef30-4e3a-9816-5395ffe62a23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"oke-worker-gen1\",\r\n \"product\": \"oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/oke-worker/Skus/oke-worker-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "f7d844ea-79fb-4578-b644-e682f01cf7c3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fbba3a10-1f1b-42a5-a0b0-323eb8e7439b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4faa251f-9cc5-4551-8ba1-69b2577fde2f", - "Date" : "Tue, 24 May 2022 13:02:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9996,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130246Z:4faa251f-9cc5-4551-8ba1-69b2577fde2f", - "Expires" : "-1", - "x-ms-request-id" : "7ad5f4c2-fef5-4286-bdb7-e47da2a451b7", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-a\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-a-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-a-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-b\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-b-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-b-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-c\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-c-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-c-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-d-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-d-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opp-worker-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "fbba3a10-1f1b-42a5-a0b0-323eb8e7439b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5c8c822-494b-42b9-bf88-d507980d8b5b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "294", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55b52a15-68d7-4080-9dee-fc8b6f5589c6", - "Date" : "Tue, 24 May 2022 13:02:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15977,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130247Z:55b52a15-68d7-4080-9dee-fc8b6f5589c6", - "Expires" : "-1", - "x-ms-request-id" : "42898bb2-dbc1-47cf-9bbf-e6853e3a9fe3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "a5c8c822-494b-42b9-bf88-d507980d8b5b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4886751-4597-4dc7-a5b3-e4048406ad6f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01eacde7-aa99-4b1c-bc01-2cddf2b37615", - "Date" : "Tue, 24 May 2022 13:02:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130247Z:01eacde7-aa99-4b1c-bc01-2cddf2b37615", - "Expires" : "-1", - "x-ms-request-id" : "5ff27d7c-162e-4540-a217-c0e03a853592", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "c4886751-4597-4dc7-a5b3-e4048406ad6f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-a/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "047c6cf0-4398-4afa-96c9-f683b93f16d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11790", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee1d3b46-39ff-44eb-abb2-62848f6ec186", - "Date" : "Tue, 24 May 2022 13:02:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15976,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130247Z:ee1d3b46-39ff-44eb-abb2-62848f6ec186", - "Expires" : "-1", - "x-ms-request-id" : "4c81e708-ce73-4a13-bf4f-d5d5dd0586cb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-a/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "047c6cf0-4398-4afa-96c9-f683b93f16d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-a/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d2331b0-3ab7-4a6c-b1e8-934811e02150", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "795bea47-6866-4fc6-8233-b75e49e83cd0", - "Date" : "Tue, 24 May 2022 13:02:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12978,Microsoft.Compute/GetVMImageFromLocation30Min;73978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130248Z:795bea47-6866-4fc6-8233-b75e49e83cd0", - "Expires" : "-1", - "x-ms-request-id" : "ef898b5e-60d1-4d88-a901-a322d926bca5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-a\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-a/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "7d2331b0-3ab7-4a6c-b1e8-934811e02150", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-a-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5963fc28-c91e-4645-b3dd-c0424bed71ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f31ad1e4-72ff-48ac-9dc8-ad70a698d953", - "Date" : "Tue, 24 May 2022 13:02:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15975,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130248Z:f31ad1e4-72ff-48ac-9dc8-ad70a698d953", - "Expires" : "-1", - "x-ms-request-id" : "b567a8ba-f737-4830-a58e-45edd3b1f327", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-a-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "5963fc28-c91e-4645-b3dd-c0424bed71ac", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-a-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a94c6c0b-29cf-4f39-942a-bfadd58d929d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5451947-3c30-43f0-85b0-d5ba105481be", - "Date" : "Tue, 24 May 2022 13:02:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12977,Microsoft.Compute/GetVMImageFromLocation30Min;73977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130248Z:f5451947-3c30-43f0-85b0-d5ba105481be", - "Expires" : "-1", - "x-ms-request-id" : "a4e9ff30-02f9-448d-9670-dbd63822e0d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-a-gen1\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-a-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "a94c6c0b-29cf-4f39-942a-bfadd58d929d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-b/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f49ad670-7e65-4dfa-8d62-ccba2d0703cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04e0520b-5e9b-4cd3-a17f-7f1c030abf21", - "Date" : "Tue, 24 May 2022 13:02:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15974,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130249Z:04e0520b-5e9b-4cd3-a17f-7f1c030abf21", - "Expires" : "-1", - "x-ms-request-id" : "2511b295-6f1e-472e-9ff8-23e5e983fde8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-b/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "f49ad670-7e65-4dfa-8d62-ccba2d0703cb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-b/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "934571a9-a1b0-495c-bc6c-1a8d0bb93f5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11789", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f098a7fe-4257-4535-8a35-748a87dd1b0e", - "Date" : "Tue, 24 May 2022 13:02:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12976,Microsoft.Compute/GetVMImageFromLocation30Min;73976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130249Z:f098a7fe-4257-4535-8a35-748a87dd1b0e", - "Expires" : "-1", - "x-ms-request-id" : "a15f4c0d-2a69-4741-8ba6-c94af7277ae0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-b\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-b/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "934571a9-a1b0-495c-bc6c-1a8d0bb93f5e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-b-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a29acd74-0e44-49ce-a431-c86cbe659518", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26fa00bb-37ed-4f52-91d2-526b4bc0287e", - "Date" : "Tue, 24 May 2022 13:02:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15973,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130249Z:26fa00bb-37ed-4f52-91d2-526b4bc0287e", - "Expires" : "-1", - "x-ms-request-id" : "9e18730a-d37b-43a5-bd9a-c0c1a552d5cd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-b-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "a29acd74-0e44-49ce-a431-c86cbe659518", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-b-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ec9c1d2-8d6c-4322-ac32-7386a9af4eb0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c178eec4-d773-4a00-a7f5-8b0dbc3c3a29", - "Date" : "Tue, 24 May 2022 13:02:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12975,Microsoft.Compute/GetVMImageFromLocation30Min;73975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130249Z:c178eec4-d773-4a00-a7f5-8b0dbc3c3a29", - "Expires" : "-1", - "x-ms-request-id" : "f8697903-6fa4-4f84-986d-ef70d28a2dcd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-b-gen1\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-b-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "7ec9c1d2-8d6c-4322-ac32-7386a9af4eb0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-c/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5873656-745a-49c2-bf1c-f44830ab54d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1128ad3-feab-487b-bc7b-c846ee471b13", - "Date" : "Tue, 24 May 2022 13:02:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15972,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130250Z:a1128ad3-feab-487b-bc7b-c846ee471b13", - "Expires" : "-1", - "x-ms-request-id" : "c9aad88e-488f-4531-872d-eb0141ff7b23", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-c/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "b5873656-745a-49c2-bf1c-f44830ab54d9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-c/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f8377a9-b181-4104-959d-cada0defa755", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34341bd3-e7f5-4927-86a6-e74b87a73b76", - "Date" : "Tue, 24 May 2022 13:02:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12974,Microsoft.Compute/GetVMImageFromLocation30Min;73974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130250Z:34341bd3-e7f5-4927-86a6-e74b87a73b76", - "Expires" : "-1", - "x-ms-request-id" : "ec00bc52-b326-47aa-9fff-98586bb7eadd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-c\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-c/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "6f8377a9-b181-4104-959d-cada0defa755", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-c-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74b888de-a494-4757-a856-069cdf8e2018", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0bf6937-5347-4d61-8546-22c326e3b333", - "Date" : "Tue, 24 May 2022 13:02:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15971,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130250Z:c0bf6937-5347-4d61-8546-22c326e3b333", - "Expires" : "-1", - "x-ms-request-id" : "9b8e7b23-169b-4285-a64d-f80232c35dff", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-c-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "74b888de-a494-4757-a856-069cdf8e2018", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-c-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a4fe2aa-ed36-4c68-a676-94d1928451d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1f779ef-4b3e-4acf-8d0f-306d13129059", - "Date" : "Tue, 24 May 2022 13:02:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12973,Microsoft.Compute/GetVMImageFromLocation30Min;73973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130251Z:c1f779ef-4b3e-4acf-8d0f-306d13129059", - "Expires" : "-1", - "x-ms-request-id" : "d9697582-e75e-4bc7-be1e-a482da92ec53", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-c-gen1\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-c-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "5a4fe2aa-ed36-4c68-a676-94d1928451d7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-d/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8c1c0cf-c400-48d1-ba0e-e8c3789a296b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "296", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a40ac236-980d-43be-86e3-2dd4d3c8b06e", - "Date" : "Tue, 24 May 2022 13:02:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15970,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130251Z:a40ac236-980d-43be-86e3-2dd4d3c8b06e", - "Expires" : "-1", - "x-ms-request-id" : "516f7213-5f51-43be-af34-c183af16d4ae", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-d/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "c8c1c0cf-c400-48d1-ba0e-e8c3789a296b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-d/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2fd64f8-b4a6-4206-ba38-f8331077811c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0728ccb4-e0c0-46b3-830a-487baadba158", - "Date" : "Tue, 24 May 2022 13:02:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12972,Microsoft.Compute/GetVMImageFromLocation30Min;73972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130251Z:0728ccb4-e0c0-46b3-830a-487baadba158", - "Expires" : "-1", - "x-ms-request-id" : "7dd2d783-f1c5-4fe5-a597-ee82d23fca50", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-d\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-d/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "d2fd64f8-b4a6-4206-ba38-f8331077811c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-d-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15226651-03f0-40e3-8356-3ea6852bbdcd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd7a87fc-0ffc-4aee-a721-1847374dd811", - "Date" : "Tue, 24 May 2022 13:02:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15969,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130251Z:bd7a87fc-0ffc-4aee-a721-1847374dd811", - "Expires" : "-1", - "x-ms-request-id" : "ab78ebbd-8c68-49c5-82a1-acf45a29cae9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-d-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "15226651-03f0-40e3-8356-3ea6852bbdcd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-d-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67a12637-5a54-4931-a9a1-2f4a973427c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1014", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11762", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b74d95b4-3734-4c9e-95cd-49c2512865c0", - "Date" : "Tue, 24 May 2022 13:02:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12971,Microsoft.Compute/GetVMImageFromLocation30Min;73971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130252Z:b74d95b4-3734-4c9e-95cd-49c2512865c0", - "Expires" : "-1", - "x-ms-request-id" : "49359d4f-deaa-467e-87e5-39a322d0e100", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-d-gen1\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-d-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "67a12637-5a54-4931-a9a1-2f4a973427c3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "989f6d08-9a1d-436b-b984-baeab79e3c13", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4fc4a659-b5c2-4b35-921d-0700bb0ce3f5", - "Date" : "Tue, 24 May 2022 13:02:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15968,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130252Z:4fc4a659-b5c2-4b35-921d-0700bb0ce3f5", - "Expires" : "-1", - "x-ms-request-id" : "abe7021e-ebe5-4ad3-be08-ce6fa075927f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "989f6d08-9a1d-436b-b984-baeab79e3c13", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/opp-worker/skus/opp-worker-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "495a5b2a-c564-4f5a-9f90-5ac7f964c19e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1010", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d330c6a5-66a3-4cc4-b242-fa7eb9cf2be5", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12970,Microsoft.Compute/GetVMImageFromLocation30Min;73970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130252Z:d330c6a5-66a3-4cc4-b242-fa7eb9cf2be5", - "Expires" : "-1", - "x-ms-request-id" : "fb26d823-020c-4431-beb8-a04fcdf82a3f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"opp-worker-gen1\",\r\n \"product\": \"opp-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/opp-worker/Skus/opp-worker-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "495a5b2a-c564-4f5a-9f90-5ac7f964c19e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0cf37de-0028-453b-adad-af56e4394a84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "378", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e26f06a4-99a3-41ac-bdcf-4b56f3bba8a2", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9995,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:e26f06a4-99a3-41ac-bdcf-4b56f3bba8a2", - "Expires" : "-1", - "x-ms-request-id" : "6ea2b171-5485-4554-87ae-061520dd16cc", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osa_311\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311\"\r\n }\r\n]", - "x-ms-client-request-id" : "f0cf37de-0028-453b-adad-af56e4394a84", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4e502fd-9e2c-43f8-91a1-f631d01fe8df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2568", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3f0f4483-f5af-4ef2-8483-c05dc1f099ee", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15967,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:3f0f4483-f5af-4ef2-8483-c05dc1f099ee", - "Expires" : "-1", - "x-ms-request-id" : "33f0fad4-8028-4417-b0e1-9b8178052f72", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.161.20200115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.161.20200115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.170.20200224\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.170.20200224\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.188.20200320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.188.20200320\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.200.20200415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.200.20200415\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.219.20200603\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.219.20200603\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.232.20200629\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.232.20200629\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.272.20200902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.272.20200902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.346.20210118\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.346.20210118\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.452.20210618\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.452.20210618\"\r\n }\r\n]", - "x-ms-client-request-id" : "a4e502fd-9e2c-43f8-91a1-f631d01fe8df", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.219.20200603?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61c618d7-c6c4-4776-9f71-1e152cf61afd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c24dd03-edb6-495b-82ce-38e88d070a29", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12968,Microsoft.Compute/GetVMImageFromLocation30Min;73968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:0c24dd03-edb6-495b-82ce-38e88d070a29", - "Expires" : "-1", - "x-ms-request-id" : "dbb675a9-46e7-447f-953c-0dfe923278fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.219.20200603\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.219.20200603\"\r\n}", - "x-ms-client-request-id" : "61c618d7-c6c4-4776-9f71-1e152cf61afd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.170.20200224?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "840d0eb0-4c95-4fbf-aa51-c18b9a746c24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4428a1c-fe68-4ff6-9ba3-69e307825483", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12967,Microsoft.Compute/GetVMImageFromLocation30Min;73967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:a4428a1c-fe68-4ff6-9ba3-69e307825483", - "Expires" : "-1", - "x-ms-request-id" : "e6aa9f16-8c8e-48ae-9778-6d2715b53b66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.170.20200224\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.170.20200224\"\r\n}", - "x-ms-client-request-id" : "840d0eb0-4c95-4fbf-aa51-c18b9a746c24", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.272.20200902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b776a552-a02b-437e-a2b3-bfbdc6d4ff57", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8016cbc7-4cd0-4f7d-95a7-ca9b2a757720", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12969,Microsoft.Compute/GetVMImageFromLocation30Min;73969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:8016cbc7-4cd0-4f7d-95a7-ca9b2a757720", - "Expires" : "-1", - "x-ms-request-id" : "bf08def9-1479-45cc-a31b-5ca12eaf2432", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.272.20200902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.272.20200902\"\r\n}", - "x-ms-client-request-id" : "b776a552-a02b-437e-a2b3-bfbdc6d4ff57", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.161.20200115?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb023f87-1d94-4ca9-81bf-0f68722179ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7496af2c-7ff9-4f59-919e-e9d48dbbb5d8", - "Date" : "Tue, 24 May 2022 13:02:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12966,Microsoft.Compute/GetVMImageFromLocation30Min;73966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:7496af2c-7ff9-4f59-919e-e9d48dbbb5d8", - "Expires" : "-1", - "x-ms-request-id" : "4beb4e75-55f0-4d65-9d88-d1613c3e5f87", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.161.20200115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.161.20200115\"\r\n}", - "x-ms-client-request-id" : "cb023f87-1d94-4ca9-81bf-0f68722179ba", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.200.20200415?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "388622ec-d27e-4c5a-b524-aa411f960dc7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4953b4f9-c18c-416a-a9cb-fc81ebe0e815", - "Date" : "Tue, 24 May 2022 13:02:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12964,Microsoft.Compute/GetVMImageFromLocation30Min;73964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:4953b4f9-c18c-416a-a9cb-fc81ebe0e815", - "Expires" : "-1", - "x-ms-request-id" : "c7ab06ed-626a-478a-9654-31ad5d0fb856", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.200.20200415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.200.20200415\"\r\n}", - "x-ms-client-request-id" : "388622ec-d27e-4c5a-b524-aa411f960dc7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.188.20200320?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03c86c51-7a20-44fd-856b-45df15678cec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11761", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e605ff1-b811-4c24-a15f-93a548ccb14b", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12965,Microsoft.Compute/GetVMImageFromLocation30Min;73965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:3e605ff1-b811-4c24-a15f-93a548ccb14b", - "Expires" : "-1", - "x-ms-request-id" : "62a57fb4-a942-4a7d-bff7-935d14701269", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.188.20200320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.188.20200320\"\r\n}", - "x-ms-client-request-id" : "03c86c51-7a20-44fd-856b-45df15678cec", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.346.20210118?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e03c352d-bb89-4165-95b0-d3f71511559e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10bc2587-0ef9-439f-9818-5e7f77e0bead", - "Date" : "Tue, 24 May 2022 13:02:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12963,Microsoft.Compute/GetVMImageFromLocation30Min;73963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:10bc2587-0ef9-439f-9818-5e7f77e0bead", - "Expires" : "-1", - "x-ms-request-id" : "62601cba-ec44-48bf-808c-f54813d634e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 33,\r\n \"sizeInBytes\": 34361836032\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.346.20210118\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.346.20210118\"\r\n}", - "x-ms-client-request-id" : "e03c352d-bb89-4165-95b0-d3f71511559e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.232.20200629?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40fd7e10-3ba6-4452-b5a0-b00876609a1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c679a58-0b08-401d-b3d8-acb858ab1e7b", - "Date" : "Tue, 24 May 2022 13:02:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12962,Microsoft.Compute/GetVMImageFromLocation30Min;73962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:8c679a58-0b08-401d-b3d8-acb858ab1e7b", - "Expires" : "-1", - "x-ms-request-id" : "c61d0511-6051-4275-96fa-129b33904c60", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.232.20200629\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.232.20200629\"\r\n}", - "x-ms-client-request-id" : "40fd7e10-3ba6-4452-b5a0-b00876609a1f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/osa/skus/osa_311/versions/311.452.20210618?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26d1e7d9-4d9a-4b03-97b0-9a5da675f4d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "980", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64777c52-3e4d-42fe-85a5-d2d97645e23d", - "Date" : "Tue, 24 May 2022 13:02:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12961,Microsoft.Compute/GetVMImageFromLocation30Min;73961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:64777c52-3e4d-42fe-85a5-d2d97645e23d", - "Expires" : "-1", - "x-ms-request-id" : "d649e8ae-7a31-4adb-8d01-e7528dcaacd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"osa_311\",\r\n \"product\": \"osa\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 33,\r\n \"sizeInBytes\": 34361836032\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"311.452.20210618\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/osa/Skus/osa_311/Versions/311.452.20210618\"\r\n}", - "x-ms-client-request-id" : "26d1e7d9-4d9a-4b03-97b0-9a5da675f4d8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-ocp-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "182faaf7-61ee-42d2-8aef-fc1b2cd458a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "807", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0a8fd7d-50b9-4977-9f56-9a9c8c0bc6fd", - "Date" : "Tue, 24 May 2022 13:02:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9994,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130253Z:a0a8fd7d-50b9-4977-9f56-9a9c8c0bc6fd", - "Expires" : "-1", - "x-ms-request-id" : "f3fbae36-3b8c-42c5-84f2-bd5a03f88551", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-ocp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-ocp-worker/Skus/rh-ocp-worker\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-ocp-worker-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-ocp-worker/Skus/rh-ocp-worker-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "182faaf7-61ee-42d2-8aef-fc1b2cd458a2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-ocp-worker/skus/rh-ocp-worker/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3234651f-cf86-445e-a006-20fef097c4e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7e3e10a-d76e-4307-8eab-ebc75fb8a1e6", - "Date" : "Tue, 24 May 2022 13:02:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15966,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130254Z:d7e3e10a-d76e-4307-8eab-ebc75fb8a1e6", - "Expires" : "-1", - "x-ms-request-id" : "e3bceff8-4072-45dc-a728-8dbe6c5cdd3d", - "Body" : "[]", - "x-ms-client-request-id" : "3234651f-cf86-445e-a006-20fef097c4e8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-ocp-worker/skus/rh-ocp-worker-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f665e0ad-1e00-4085-802c-72cc90c880dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8d55589-2f17-4176-8787-b7ae8b43c6ea", - "Date" : "Tue, 24 May 2022 13:02:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15965,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130254Z:b8d55589-2f17-4176-8787-b7ae8b43c6ea", - "Expires" : "-1", - "x-ms-request-id" : "830d8bf1-6de6-43fc-9f64-abd01fd09abe", - "Body" : "[]", - "x-ms-client-request-id" : "f665e0ad-1e00-4085-802c-72cc90c880dd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-oke-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "02f7f506-e2aa-4b33-8339-92a1abc2efae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "807", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8d075aa-798c-4498-8cec-9a72c23a40dc", - "Date" : "Tue, 24 May 2022 13:02:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9993,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130255Z:d8d075aa-798c-4498-8cec-9a72c23a40dc", - "Expires" : "-1", - "x-ms-request-id" : "9a821b48-c3ac-4e93-a645-af262f5a4ab6", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-oke-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-oke-worker/Skus/rh-oke-worker\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-oke-worker-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-oke-worker/Skus/rh-oke-worker-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "02f7f506-e2aa-4b33-8339-92a1abc2efae", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-oke-worker/skus/rh-oke-worker/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a080c5f-32b8-43ca-b4c5-e9d49adb8b8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "702bb276-5ba5-4a33-8f2f-e686dbcaf999", - "Date" : "Tue, 24 May 2022 13:02:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15964,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130255Z:702bb276-5ba5-4a33-8f2f-e686dbcaf999", - "Expires" : "-1", - "x-ms-request-id" : "c7794c96-8d29-4905-b3e5-c2a18cb483a1", - "Body" : "[]", - "x-ms-client-request-id" : "5a080c5f-32b8-43ca-b4c5-e9d49adb8b8c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-oke-worker/skus/rh-oke-worker-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc333c96-a25e-4d23-8589-70bd190be203", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "035efb15-b493-4447-9b7d-cc0b629348ad", - "Date" : "Tue, 24 May 2022 13:02:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15963,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130255Z:035efb15-b493-4447-9b7d-cc0b629348ad", - "Expires" : "-1", - "x-ms-request-id" : "80573fab-bc28-44c0-87f2-b73c2edcc7b8", - "Body" : "[]", - "x-ms-client-request-id" : "cc333c96-a25e-4d23-8589-70bd190be203", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-opp-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cd4c53c-5db9-4477-8f83-f4fe9b64e82d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "807", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0544176b-478e-41fa-bfea-f5ca13c13d33", - "Date" : "Tue, 24 May 2022 13:02:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9992,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130255Z:0544176b-478e-41fa-bfea-f5ca13c13d33", - "Expires" : "-1", - "x-ms-request-id" : "7c61f50f-2abb-4136-a338-9f8be07f84ac", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-opp-worker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-opp-worker/Skus/rh-opp-worker\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-opp-worker-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-opp-worker/Skus/rh-opp-worker-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "5cd4c53c-5db9-4477-8f83-f4fe9b64e82d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-opp-worker/skus/rh-opp-worker/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d84260b5-2d42-412b-a8e2-45a7777f6d8f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "993ead0d-70c8-4d0f-99d2-bdc69e173fdd", - "Date" : "Tue, 24 May 2022 13:02:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15962,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130256Z:993ead0d-70c8-4d0f-99d2-bdc69e173fdd", - "Expires" : "-1", - "x-ms-request-id" : "6ec2167c-5c52-4033-b6a8-adddc7115ef4", - "Body" : "[]", - "x-ms-client-request-id" : "d84260b5-2d42-412b-a8e2-45a7777f6d8f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-opp-worker/skus/rh-opp-worker-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf34cc73-faec-47ff-ab99-edeadb8f3310", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b02a653-e626-449d-9fa8-706ca45f787a", - "Date" : "Tue, 24 May 2022 13:02:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15961,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130256Z:3b02a653-e626-449d-9fa8-706ca45f787a", - "Expires" : "-1", - "x-ms-request-id" : "faf493bb-64d3-4d6d-be53-d4b5c3b693cc", - "Body" : "[]", - "x-ms-client-request-id" : "bf34cc73-faec-47ff-ab99-edeadb8f3310", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed7c0d22-da97-49d1-b644-488cdf943fc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1547", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5074b661-7d89-4d0f-9c25-1509672fc841", - "Date" : "Tue, 24 May 2022 13:02:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9991,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130256Z:5074b661-7d89-4d0f-9c25-1509672fc841", - "Expires" : "-1", - "x-ms-request-id" : "ebcedcd4-c43f-4040-94af-4c40ab5dd6d6", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel/Skus/rh-rhel7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel7-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel/Skus/rh-rhel7-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel/Skus/rh-rhel8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rh-rhel8-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel/Skus/rh-rhel8-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "ed7c0d22-da97-49d1-b644-488cdf943fc0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel/skus/rh-rhel7/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3818d5c9-1727-4e8f-b8f2-ef0f80a33184", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ff4baa4-0d17-49b0-aa99-40eb75367b2c", - "Date" : "Tue, 24 May 2022 13:02:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15960,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130256Z:1ff4baa4-0d17-49b0-aa99-40eb75367b2c", - "Expires" : "-1", - "x-ms-request-id" : "4942e853-eb57-45df-97c8-88f6f42e2d6d", - "Body" : "[]", - "x-ms-client-request-id" : "3818d5c9-1727-4e8f-b8f2-ef0f80a33184", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel/skus/rh-rhel7-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57c11644-80db-402c-bd31-64ad6022150f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b70612a6-c5ef-4d10-a849-006ba136f918", - "Date" : "Tue, 24 May 2022 13:02:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15959,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130257Z:b70612a6-c5ef-4d10-a849-006ba136f918", - "Expires" : "-1", - "x-ms-request-id" : "6823ff56-f08c-48a9-a12a-f9620d99ea54", - "Body" : "[]", - "x-ms-client-request-id" : "57c11644-80db-402c-bd31-64ad6022150f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel/skus/rh-rhel8/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e4eae97-a618-4885-bf76-165bcd734c18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9388906a-3fa8-48bc-8147-ba8e939e94cc", - "Date" : "Tue, 24 May 2022 13:02:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15958,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130257Z:9388906a-3fa8-48bc-8147-ba8e939e94cc", - "Expires" : "-1", - "x-ms-request-id" : "a213a48b-9bf3-40a3-9249-e6ca5f6efe1a", - "Body" : "[]", - "x-ms-client-request-id" : "5e4eae97-a618-4885-bf76-165bcd734c18", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel/skus/rh-rhel8-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "495c4448-4c7a-4029-9ec0-9aa17aa96bad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11760", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9ce96c8-8152-4482-a55a-29195a304bef", - "Date" : "Tue, 24 May 2022 13:02:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15957,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130257Z:a9ce96c8-8152-4482-a55a-29195a304bef", - "Expires" : "-1", - "x-ms-request-id" : "3653572d-3960-4b70-addc-c3285c1ab9da", - "Body" : "[]", - "x-ms-client-request-id" : "495c4448-4c7a-4029-9ec0-9aa17aa96bad", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2164f2d1-5f18-4a32-b958-35e67439d8f0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a569491-5a7a-4093-b1b8-fd1deb681fa8", - "Date" : "Tue, 24 May 2022 13:02:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9990,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130258Z:0a569491-5a7a-4093-b1b8-fd1deb681fa8", - "Expires" : "-1", - "x-ms-request-id" : "d281fada-0f45-470f-8d58-8c351bb6ae79", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_a1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_a1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_a1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_b1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_b1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_b1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_c1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_c1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_c1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_d1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_d1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_d1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "2164f2d1-5f18-4a32-b958-35e67439d8f0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "340bc1d8-06f8-4ab8-bf28-f508fc0e4cbc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "301", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ca8b70a-655c-4aa2-91c2-7fb541a43cb9", - "Date" : "Tue, 24 May 2022 13:02:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15956,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130258Z:9ca8b70a-655c-4aa2-91c2-7fb541a43cb9", - "Expires" : "-1", - "x-ms-request-id" : "13a2c017-21ca-4efd-92f0-cef211970102", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "340bc1d8-06f8-4ab8-bf28-f508fc0e4cbc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec3b42ff-6855-4db8-a6e4-46a6c2f97df3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1082", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1699ad9d-ee43-482a-8bba-ceb20e654208", - "Date" : "Tue, 24 May 2022 13:02:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12960,Microsoft.Compute/GetVMImageFromLocation30Min;73960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130258Z:1699ad9d-ee43-482a-8bba-ceb20e654208", - "Expires" : "-1", - "x-ms-request-id" : "2215333c-26c1-4223-acba-7bca9d513d9c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "ec3b42ff-6855-4db8-a6e4-46a6c2f97df3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_a1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "439e70b1-8454-4f34-8fbd-8e61b829300d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54476f8a-55eb-4d7c-9e99-7d535d982c63", - "Date" : "Tue, 24 May 2022 13:02:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15955,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130259Z:54476f8a-55eb-4d7c-9e99-7d535d982c63", - "Expires" : "-1", - "x-ms-request-id" : "6b5468df-a39d-40ec-b45d-e80006ff19f2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_a1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "439e70b1-8454-4f34-8fbd-8e61b829300d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_a1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11027754-d3f1-4ab2-910e-d43b13983838", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63131461-9c9e-4f18-b977-6e50a9e00d3a", - "Date" : "Tue, 24 May 2022 13:02:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12959,Microsoft.Compute/GetVMImageFromLocation30Min;73959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130259Z:63131461-9c9e-4f18-b977-6e50a9e00d3a", - "Expires" : "-1", - "x-ms-request-id" : "7b8c3324-ae67-4d25-aad0-ea1526de804b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_a1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_a1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "11027754-d3f1-4ab2-910e-d43b13983838", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_a1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "623bcf8c-022b-4cc1-bcc8-9acbaeacdd7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11786", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "263bd2de-ef58-49ba-91d0-a3a81a67c26d", - "Date" : "Tue, 24 May 2022 13:02:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15954,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130259Z:263bd2de-ef58-49ba-91d0-a3a81a67c26d", - "Expires" : "-1", - "x-ms-request-id" : "cd099296-e6b4-4d87-b328-058fa9d22123", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_a1_gen1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "623bcf8c-022b-4cc1-bcc8-9acbaeacdd7d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_a1_gen1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "513647c9-4dea-4e3d-8ab3-78b4887777ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11758", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de6a7b0c-c3ec-4c1c-91ef-3051d04fd27d", - "Date" : "Tue, 24 May 2022 13:02:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12958,Microsoft.Compute/GetVMImageFromLocation30Min;73958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130300Z:de6a7b0c-c3ec-4c1c-91ef-3051d04fd27d", - "Expires" : "-1", - "x-ms-request-id" : "c6850771-f013-4b1c-8438-8b05e75901cc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_a1_gen1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_a1_gen1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "513647c9-4dea-4e3d-8ab3-78b4887777ba", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_b1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3a2290c-61f1-4a27-ab56-c0fba8716e3a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06358b0e-3f36-41ee-9e1e-16f5ae4f6aa8", - "Date" : "Tue, 24 May 2022 13:03:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15953,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130300Z:06358b0e-3f36-41ee-9e1e-16f5ae4f6aa8", - "Expires" : "-1", - "x-ms-request-id" : "390a55f0-5639-4163-ade5-f75174e5676f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_b1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "d3a2290c-61f1-4a27-ab56-c0fba8716e3a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_b1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5855e6d-cf6a-4242-833e-11f310dad632", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bae9b0a-53ed-4a0b-990d-f508d41112ff", - "Date" : "Tue, 24 May 2022 13:02:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12957,Microsoft.Compute/GetVMImageFromLocation30Min;73957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130300Z:8bae9b0a-53ed-4a0b-990d-f508d41112ff", - "Expires" : "-1", - "x-ms-request-id" : "dc29f991-b602-4d45-a28e-9a2669b948d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_b1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_b1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "b5855e6d-cf6a-4242-833e-11f310dad632", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_b1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0b0a715-11ce-4f85-af9a-d672ae7b0b85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d5af03f-c3a4-4526-898c-010df4b5081f", - "Date" : "Tue, 24 May 2022 13:03:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15952,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130300Z:6d5af03f-c3a4-4526-898c-010df4b5081f", - "Expires" : "-1", - "x-ms-request-id" : "7470dddc-d37b-44f0-bdc7-4e8ba2b6d047", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_b1_gen1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "b0b0a715-11ce-4f85-af9a-d672ae7b0b85", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_b1_gen1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "19513daf-ab88-4227-b1e6-eb37edd2fbac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee6a905a-367a-40cd-94d4-757d65f887c0", - "Date" : "Tue, 24 May 2022 13:03:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12956,Microsoft.Compute/GetVMImageFromLocation30Min;73956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130301Z:ee6a905a-367a-40cd-94d4-757d65f887c0", - "Expires" : "-1", - "x-ms-request-id" : "9f3527db-704f-4d76-95aa-c4880441bb4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_b1_gen1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_b1_gen1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "19513daf-ab88-4227-b1e6-eb37edd2fbac", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_c1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c918246-2d5e-4fb6-b0bd-e5bb27945989", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ccc185b-32f4-4ca5-af37-925c2e946338", - "Date" : "Tue, 24 May 2022 13:03:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15951,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130301Z:0ccc185b-32f4-4ca5-af37-925c2e946338", - "Expires" : "-1", - "x-ms-request-id" : "e74b9203-6a66-4c64-9720-c7cd479e6d0c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_c1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "8c918246-2d5e-4fb6-b0bd-e5bb27945989", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_c1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e137ea40-49e7-43b6-97fc-7aab0dcfbc15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db820f19-9acf-4a4f-b26a-6788d96b15a0", - "Date" : "Tue, 24 May 2022 13:03:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12955,Microsoft.Compute/GetVMImageFromLocation30Min;73955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130301Z:db820f19-9acf-4a4f-b26a-6788d96b15a0", - "Expires" : "-1", - "x-ms-request-id" : "a7296bd3-ed4b-46cc-883f-e6de644b0daf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_c1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_c1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "e137ea40-49e7-43b6-97fc-7aab0dcfbc15", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_c1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5413c42f-3b52-46d2-bbdb-c30e68107316", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f78bc4e-04ac-46df-a178-cd4c95808ef0", - "Date" : "Tue, 24 May 2022 13:03:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15950,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130302Z:2f78bc4e-04ac-46df-a178-cd4c95808ef0", - "Expires" : "-1", - "x-ms-request-id" : "88f76020-adf4-4bf4-9384-fc9c72ccc636", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_c1_gen1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "5413c42f-3b52-46d2-bbdb-c30e68107316", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_c1_gen1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "951c25ae-adf4-4672-a18f-66258bb996e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4480506f-0ff3-44b5-bf8c-049f1f9d0e3a", - "Date" : "Tue, 24 May 2022 13:03:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12954,Microsoft.Compute/GetVMImageFromLocation30Min;73954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130302Z:4480506f-0ff3-44b5-bf8c-049f1f9d0e3a", - "Expires" : "-1", - "x-ms-request-id" : "e0a05b63-41a5-4a12-b3f9-b4d3c3b81493", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_c1_gen1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_c1_gen1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "951c25ae-adf4-4672-a18f-66258bb996e1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_d1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69bf2856-7a38-494d-9af0-0f5f51068d07", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5fc311e-df48-40d5-8e98-7fbaa47eadfa", - "Date" : "Tue, 24 May 2022 13:03:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15949,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130302Z:a5fc311e-df48-40d5-8e98-7fbaa47eadfa", - "Expires" : "-1", - "x-ms-request-id" : "d7f2b8ca-d987-4be1-8d42-c7db7173c98f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_d1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "69bf2856-7a38-494d-9af0-0f5f51068d07", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_d1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4774a232-8f6d-41af-a826-0b4f2075bfca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14405c6d-6efa-4a07-a63e-fe21bb653607", - "Date" : "Tue, 24 May 2022 13:03:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12953,Microsoft.Compute/GetVMImageFromLocation30Min;73953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130302Z:14405c6d-6efa-4a07-a63e-fe21bb653607", - "Expires" : "-1", - "x-ms-request-id" : "36d2eab8-be6f-425a-be43-c9b6a043b6f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_d1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_d1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "4774a232-8f6d-41af-a826-0b4f2075bfca", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_d1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "182a04f8-b3f8-4a7c-afeb-6f4542bf35a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b36d15e8-417e-4e2d-a965-b5b073f4e63e", - "Date" : "Tue, 24 May 2022 13:03:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15948,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130303Z:b36d15e8-417e-4e2d-a965-b5b073f4e63e", - "Expires" : "-1", - "x-ms-request-id" : "3498d7b7-fae2-42db-8794-ec348ec1f7e9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_d1_gen1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "182a04f8-b3f8-4a7c-afeb-6f4542bf35a4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_d1_gen1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e759a10-a850-44e0-bab0-4abf39bbcee7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "958e6f72-dfae-4c77-9f4e-b3751da861df", - "Date" : "Tue, 24 May 2022 13:03:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12952,Microsoft.Compute/GetVMImageFromLocation30Min;73952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130303Z:958e6f72-dfae-4c77-9f4e-b3751da861df", - "Expires" : "-1", - "x-ms-request-id" : "a267353d-871a-4ab1-a062-55cd42bb8893", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_d1_gen1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_d1_gen1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "6e759a10-a850-44e0-bab0-4abf39bbcee7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8ecd534-d21d-4ce9-a9e6-634517f52750", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdd76032-b77e-474b-8d1b-5954be13f751", - "Date" : "Tue, 24 May 2022 13:03:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15947,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130303Z:fdd76032-b77e-474b-8d1b-5954be13f751", - "Expires" : "-1", - "x-ms-request-id" : "7c35ff2a-a9b4-4845-a602-defe77abab4f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_gen1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "c8ecd534-d21d-4ce9-a9e6-634517f52750", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-7-main-2/skus/rhel_7_main_gen1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62889f40-2752-4663-a09f-2d123bd2202c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1105", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd22df2d-69b0-4348-a824-272c28936b93", - "Date" : "Tue, 24 May 2022 13:03:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12951,Microsoft.Compute/GetVMImageFromLocation30Min;73951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130304Z:cd22df2d-69b0-4348-a824-272c28936b93", - "Expires" : "-1", - "x-ms-request-id" : "5ef4a2ab-ab6f-4010-8203-5a6dd2b64485", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_gen1\",\r\n \"product\": \"rh-rhel-7-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-7-main-2/Skus/rhel_7_main_gen1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "62889f40-2752-4663-a09f-2d123bd2202c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70e1c906-147a-47c4-9b74-57d8e1918694", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2445", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11785", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "baf477d0-15a8-4046-b94e-f86355770e3e", - "Date" : "Tue, 24 May 2022 13:03:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9989,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130304Z:baf477d0-15a8-4046-b94e-f86355770e3e", - "Expires" : "-1", - "x-ms-request-id" : "9c3b7991-ce0d-4e71-ad34-9ba75b30ae54", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_a1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_a1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_b1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_b1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_c1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_c1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1_gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "70e1c906-147a-47c4-9b74-57d8e1918694", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_a1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba8bd4ab-638c-4299-b133-53a9e10ea871", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "605", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9858277-a530-4baf-a071-1908c87bf5bc", - "Date" : "Tue, 24 May 2022 13:03:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15946,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130304Z:c9858277-a530-4baf-a071-1908c87bf5bc", - "Expires" : "-1", - "x-ms-request-id" : "81a45011-72e2-4c14-99a5-66ad82690ad6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1/Versions/8.4.2021110400\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "ba8bd4ab-638c-4299-b133-53a9e10ea871", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_a1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97c3bfe3-525d-4402-8e98-66de174668f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ae07572-c984-46a3-bec8-045f8ec884a3", - "Date" : "Tue, 24 May 2022 13:03:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12950,Microsoft.Compute/GetVMImageFromLocation30Min;73950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130304Z:7ae07572-c984-46a3-bec8-045f8ec884a3", - "Expires" : "-1", - "x-ms-request-id" : "d9e89413-3d4c-433d-969f-20cb811e6479", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_a1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "97c3bfe3-525d-4402-8e98-66de174668f9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_a1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1411de6f-e8f9-46c1-946c-215cab7ea162", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b30d978-b41a-42d7-ba2d-b4b64b444761", - "Date" : "Tue, 24 May 2022 13:03:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12949,Microsoft.Compute/GetVMImageFromLocation30Min;73949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130304Z:5b30d978-b41a-42d7-ba2d-b4b64b444761", - "Expires" : "-1", - "x-ms-request-id" : "cbc572e0-319c-4d82-b4a6-6e4eb6f92626", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_a1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "1411de6f-e8f9-46c1-946c-215cab7ea162", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_a1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c251a10-9ee7-4afa-8626-e197afdff782", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "615", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6189c68-8e8b-4860-b022-1903ac9b1224", - "Date" : "Tue, 24 May 2022 13:03:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15945,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130305Z:f6189c68-8e8b-4860-b022-1903ac9b1224", - "Expires" : "-1", - "x-ms-request-id" : "d69acd7c-9e01-4e57-9fa3-8786009aa78e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1_gen1/Versions/8.4.2021110400\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1_gen1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "9c251a10-9ee7-4afa-8626-e197afdff782", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_a1_gen1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93355bec-1f65-4106-8146-fa483b43edb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9679a5b0-b366-49b9-8562-13d40898a52c", - "Date" : "Tue, 24 May 2022 13:03:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12948,Microsoft.Compute/GetVMImageFromLocation30Min;73948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130305Z:9679a5b0-b366-49b9-8562-13d40898a52c", - "Expires" : "-1", - "x-ms-request-id" : "3046690e-0392-4c90-9d83-3d1e6065d8b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_a1_gen1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1_gen1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "93355bec-1f65-4106-8146-fa483b43edb7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_a1_gen1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "513285e9-f3bf-4f50-b187-f79360d450ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea8019e0-8739-4eda-9a23-9ee3a29b057d", - "Date" : "Tue, 24 May 2022 13:03:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12947,Microsoft.Compute/GetVMImageFromLocation30Min;73947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130305Z:ea8019e0-8739-4eda-9a23-9ee3a29b057d", - "Expires" : "-1", - "x-ms-request-id" : "88418560-bf0f-4aa6-bcfb-7d2a132c9353", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_a1_gen1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_a1_gen1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "513285e9-f3bf-4f50-b187-f79360d450ed", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_b1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a1e6027-82dc-4098-87d1-d5e5aa60b982", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "605", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57ec5244-e7ed-43c3-ab78-5201a9af7855", - "Date" : "Tue, 24 May 2022 13:03:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15944,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130305Z:57ec5244-e7ed-43c3-ab78-5201a9af7855", - "Expires" : "-1", - "x-ms-request-id" : "59d532f0-ea79-4fef-8687-6df6f1270c8e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1/Versions/8.4.2021110400\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "2a1e6027-82dc-4098-87d1-d5e5aa60b982", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_b1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03dc5d7a-eb08-4a93-a3da-04adcbbff456", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c355665-9cd8-49cd-9864-cad1320b6ef2", - "Date" : "Tue, 24 May 2022 13:03:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12946,Microsoft.Compute/GetVMImageFromLocation30Min;73946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130306Z:5c355665-9cd8-49cd-9864-cad1320b6ef2", - "Expires" : "-1", - "x-ms-request-id" : "c0da750c-7ad2-4956-bd14-2f66b59cb6bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_b1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "03dc5d7a-eb08-4a93-a3da-04adcbbff456", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_b1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e14de5d2-e662-4802-93a0-bc717f6f6cfe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9ca1cccc-fb3c-445a-98ba-9eff5e19e194", - "Date" : "Tue, 24 May 2022 13:03:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12945,Microsoft.Compute/GetVMImageFromLocation30Min;73945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130306Z:9ca1cccc-fb3c-445a-98ba-9eff5e19e194", - "Expires" : "-1", - "x-ms-request-id" : "5cf2d9c9-1cf3-4c70-935b-579ae6dd2695", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_b1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "e14de5d2-e662-4802-93a0-bc717f6f6cfe", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_b1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ed64e75-3521-45d9-8aed-bb166fdf28eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "615", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2941dfde-2ee8-4a46-bef8-8b56fc0f9c49", - "Date" : "Tue, 24 May 2022 13:03:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15943,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130306Z:2941dfde-2ee8-4a46-bef8-8b56fc0f9c49", - "Expires" : "-1", - "x-ms-request-id" : "21762d06-30a1-46ec-b105-ecb8196c3659", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1_gen1/Versions/8.4.2021110400\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1_gen1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "5ed64e75-3521-45d9-8aed-bb166fdf28eb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_b1_gen1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fedb4d8-4939-4601-87b0-8246d0d51758", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6d69a35-acbc-43c8-8464-09ebf390c8cd", - "Date" : "Tue, 24 May 2022 13:03:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12943,Microsoft.Compute/GetVMImageFromLocation30Min;73943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130306Z:c6d69a35-acbc-43c8-8464-09ebf390c8cd", - "Expires" : "-1", - "x-ms-request-id" : "a0def2ca-f8c9-4717-9718-a5f8d82156c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_b1_gen1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1_gen1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "9fedb4d8-4939-4601-87b0-8246d0d51758", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_b1_gen1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9525a110-7b76-45a3-9d4b-1f08f27a2301", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bff3777d-f3bc-426e-ba7b-c1d7107abacd", - "Date" : "Tue, 24 May 2022 13:03:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12944,Microsoft.Compute/GetVMImageFromLocation30Min;73944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130306Z:bff3777d-f3bc-426e-ba7b-c1d7107abacd", - "Expires" : "-1", - "x-ms-request-id" : "41b75ac9-0e1b-4829-add6-e9c1d766879c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_b1_gen1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_b1_gen1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "9525a110-7b76-45a3-9d4b-1f08f27a2301", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_c1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7afec2be-eb57-4cf9-8602-11f2b95a0540", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "605", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2611809-10b4-452f-a340-26006d1be7c3", - "Date" : "Tue, 24 May 2022 13:03:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15942,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130306Z:d2611809-10b4-452f-a340-26006d1be7c3", - "Expires" : "-1", - "x-ms-request-id" : "dd9bddda-9842-4b1c-98dd-2e653bb0aef5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1/Versions/8.4.2021110400\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "7afec2be-eb57-4cf9-8602-11f2b95a0540", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_c1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e7f0f7e-9cfd-4d12-bcdd-4052f5c5ce28", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c4729ac-e91c-4026-961e-bced36f7d1de", - "Date" : "Tue, 24 May 2022 13:03:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12941,Microsoft.Compute/GetVMImageFromLocation30Min;73941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130307Z:6c4729ac-e91c-4026-961e-bced36f7d1de", - "Expires" : "-1", - "x-ms-request-id" : "71593ce3-1ec0-49c0-be5f-15e27ac2fc2d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_c1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "8e7f0f7e-9cfd-4d12-bcdd-4052f5c5ce28", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_c1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a87e4620-bc84-4ded-a581-0dbd113deee5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1088", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11756", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ea3935b-9e63-4710-8229-f6f8229db200", - "Date" : "Tue, 24 May 2022 13:03:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12942,Microsoft.Compute/GetVMImageFromLocation30Min;73942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130307Z:7ea3935b-9e63-4710-8229-f6f8229db200", - "Expires" : "-1", - "x-ms-request-id" : "b74d1428-9703-4677-9790-9bde502125e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_c1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "a87e4620-bc84-4ded-a581-0dbd113deee5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_c1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2e6ab78-cea4-4ffc-8034-eca5bfb65956", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "615", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "310efa1a-a03d-433e-9cea-210d557caf41", - "Date" : "Tue, 24 May 2022 13:03:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15941,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130307Z:310efa1a-a03d-433e-9cea-210d557caf41", - "Expires" : "-1", - "x-ms-request-id" : "c13d2159-973f-4231-b436-3eb2e923e09f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1_gen1/Versions/8.4.2021110400\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1_gen1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "a2e6ab78-cea4-4ffc-8034-eca5bfb65956", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_c1_gen1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0edaf6f7-86bd-4e18-ba7f-6eac24750583", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0074814-b8a9-434c-ae03-6d0530b08f58", - "Date" : "Tue, 24 May 2022 13:03:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12940,Microsoft.Compute/GetVMImageFromLocation30Min;73940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130307Z:a0074814-b8a9-434c-ae03-6d0530b08f58", - "Expires" : "-1", - "x-ms-request-id" : "55d74a3f-0e1b-4222-8406-a40bc4858530", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_c1_gen1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1_gen1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "0edaf6f7-86bd-4e18-ba7f-6eac24750583", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-8-main-2/skus/rhel_8_main_c1_gen1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f87135a-74ac-4bd3-9ca0-1e6bf3a9a0cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1111", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "696df89b-fc2e-44f8-92be-9d0d9bf9610f", - "Date" : "Tue, 24 May 2022 13:03:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12939,Microsoft.Compute/GetVMImageFromLocation30Min;73939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130307Z:696df89b-fc2e-44f8-92be-9d0d9bf9610f", - "Expires" : "-1", - "x-ms-request-id" : "12784afe-6bd7-4d2c-b82f-889a8c18f39c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_c1_gen1\",\r\n \"product\": \"rh-rhel-8-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-8-main-2/Skus/rhel_8_main_c1_gen1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "1f87135a-74ac-4bd3-9ca0-1e6bf3a9a0cc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7de184fb-c5c7-4d34-92b7-39daed8f51e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1599", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbdca429-09ef-4926-8b98-46630f090db7", - "Date" : "Tue, 24 May 2022 13:03:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9988,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130308Z:cbdca429-09ef-4926-8b98-46630f090db7", - "Expires" : "-1", - "x-ms-request-id" : "43c29985-bc5b-4bbe-9d9a-43783b3af7a9", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_7_main\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_7_main_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_7_main_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_8_main\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_8_main_gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "7de184fb-c5c7-4d34-92b7-39daed8f51e4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_7_main/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69cdb130-4246-4763-a078-cb91c1c637a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc9041cc-0a75-451c-8701-0e99a791f6fd", - "Date" : "Tue, 24 May 2022 13:03:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15940,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130308Z:fc9041cc-0a75-451c-8701-0e99a791f6fd", - "Expires" : "-1", - "x-ms-request-id" : "1730a607-f635-41a5-9a00-7337ed7b1b22", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_7_main/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "69cdb130-4246-4763-a078-cb91c1c637a5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_7_main/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "83fcb8fb-46e7-4210-a9dc-f703d1132c59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9783ff3-4f18-4f39-91ad-b7754ce64f38", - "Date" : "Tue, 24 May 2022 13:03:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12938,Microsoft.Compute/GetVMImageFromLocation30Min;73938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130308Z:d9783ff3-4f18-4f39-91ad-b7754ce64f38", - "Expires" : "-1", - "x-ms-request-id" : "061064a4-eab6-4073-90ac-c08e1f9011d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main\",\r\n \"product\": \"rh-rhel-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_7_main/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "83fcb8fb-46e7-4210-a9dc-f703d1132c59", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_7_main_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62e7cfbe-3049-4da8-a365-7538a9a8e262", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0ebaf91-d28c-4230-a875-71e3748919c7", - "Date" : "Tue, 24 May 2022 13:03:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15939,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130308Z:a0ebaf91-d28c-4230-a875-71e3748919c7", - "Expires" : "-1", - "x-ms-request-id" : "489c952d-7481-4b9a-8457-47e03a88a319", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_7_main_gen1/Versions/7.9.2021110401\"\r\n }\r\n]", - "x-ms-client-request-id" : "62e7cfbe-3049-4da8-a365-7538a9a8e262", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_7_main_gen1/versions/7.9.2021110401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53b05947-a6bb-4367-bba8-6475b4af2e91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1101", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "abd27923-824c-4caa-adb8-db361f1ed488", - "Date" : "Tue, 24 May 2022 13:03:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12937,Microsoft.Compute/GetVMImageFromLocation30Min;73937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130309Z:abd27923-824c-4caa-adb8-db361f1ed488", - "Expires" : "-1", - "x-ms-request-id" : "4e34e46a-d6c5-4f68-bfcc-7d3bb4103965", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_7_main_gen1\",\r\n \"product\": \"rh-rhel-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021110401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_7_main_gen1/Versions/7.9.2021110401\"\r\n}", - "x-ms-client-request-id" : "53b05947-a6bb-4367-bba8-6475b4af2e91", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_8_main/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "559d262f-0be2-41f7-9b77-77063044f4f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "afa5afbc-e21b-4ba9-aac9-8baf3b3d3454", - "Date" : "Tue, 24 May 2022 13:03:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15938,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130309Z:afa5afbc-e21b-4ba9-aac9-8baf3b3d3454", - "Expires" : "-1", - "x-ms-request-id" : "32143caa-4215-48c3-8c49-6107475c9ecf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_8_main/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "559d262f-0be2-41f7-9b77-77063044f4f2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_8_main/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41bc4b5c-cf16-4393-b41c-6ce6ad6d5ef6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1078", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e63aaba-bc62-4711-9f03-2d5f3aabf5ca", - "Date" : "Tue, 24 May 2022 13:03:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12936,Microsoft.Compute/GetVMImageFromLocation30Min;73936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130309Z:2e63aaba-bc62-4711-9f03-2d5f3aabf5ca", - "Expires" : "-1", - "x-ms-request-id" : "fd328265-6a19-4174-8ef0-305607a4f2af", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main\",\r\n \"product\": \"rh-rhel-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_8_main/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "41bc4b5c-cf16-4393-b41c-6ce6ad6d5ef6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_8_main_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a31bc82-c6a8-4738-83d9-2612d0c42abf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "304", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8cff52d-75ce-456f-b6d2-38d4babbefb1", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15937,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130310Z:b8cff52d-75ce-456f-b6d2-38d4babbefb1", - "Expires" : "-1", - "x-ms-request-id" : "19e2aef1-f6bd-429f-933a-5f8c1b71c303", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_8_main_gen1/Versions/8.5.2022030600\"\r\n }\r\n]", - "x-ms-client-request-id" : "6a31bc82-c6a8-4738-83d9-2612d0c42abf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh-rhel-main-2/skus/rhel_8_main_gen1/versions/8.5.2022030600?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "202c8e64-a53f-4ac7-afc8-94d56f29815c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1101", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3e91411-2571-4c2e-b04f-bbcfa109725c", - "Date" : "Tue, 24 May 2022 13:03:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12935,Microsoft.Compute/GetVMImageFromLocation30Min;73935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130310Z:e3e91411-2571-4c2e-b04f-bbcfa109725c", - "Expires" : "-1", - "x-ms-request-id" : "025ea570-368f-474c-a5c0-6eb563083b8b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_gen1\",\r\n \"product\": \"rh-rhel-main-2\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022030600\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh-rhel-main-2/Skus/rhel_8_main_gen1/Versions/8.5.2022030600\"\r\n}", - "x-ms-client-request-id" : "202c8e64-a53f-4ac7-afc8-94d56f29815c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "021b1d23-567f-4f84-b256-9684afb3e30a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "14537", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5423611-137f-42c9-a60c-c16bea9568ea", - "Date" : "Tue, 24 May 2022 13:03:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9987,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130310Z:f5423611-137f-42c9-a60c-c16bea9568ea", - "Expires" : "-1", - "x-ms-request-id" : "aa914a63-fb45-461e-a6fa-56060587ec2a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-LVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-RAW\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-RAW-CI\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3-DAILY\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"74-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"75-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"77-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"78-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"79-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7lvm-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8-BETA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-BETA\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8-LVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8-lvm-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1-ci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"81-ci-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"81gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"82gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"83-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"84-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"85-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"86-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/86-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_6\"\r\n }\r\n]", - "x-ms-client-request-id" : "021b1d23-567f-4f84-b256-9684afb3e30a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.10/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbb9fe79-3328-48c8-94d9-b7e90b3689f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "565", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6058b33-bef8-426c-8b94-5127567a3fb3", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15936,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130310Z:a6058b33-bef8-426c-8b94-5127567a3fb3", - "Expires" : "-1", - "x-ms-request-id" : "1cb51b9e-ed45-43fd-9f10-0d5bfc7f8f32", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.10.2019030722\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.10/Versions/6.10.2019030722\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.10.2019061919\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.10/Versions/6.10.2019061919\"\r\n }\r\n]", - "x-ms-client-request-id" : "dbb9fe79-3328-48c8-94d9-b7e90b3689f7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.10/versions/6.10.2019030722?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fb5adad-22c0-46e8-9457-9e09ba0d17c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "664", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "684ca5ac-864b-4553-9df5-310cab08b49d", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12934,Microsoft.Compute/GetVMImageFromLocation30Min;73934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:684ca5ac-864b-4553-9df5-310cab08b49d", - "Expires" : "-1", - "x-ms-request-id" : "11619444-680a-49ed-ba33-7b40d7e08631", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.10.2019030722\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.10/Versions/6.10.2019030722\"\r\n}", - "x-ms-client-request-id" : "6fb5adad-22c0-46e8-9457-9e09ba0d17c9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.10/versions/6.10.2019061919?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87028442-a46b-418e-801d-306138694fdb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "664", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3574ebfd-3f48-4b5f-be93-21764d0bcffd", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12933,Microsoft.Compute/GetVMImageFromLocation30Min;73933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:3574ebfd-3f48-4b5f-be93-21764d0bcffd", - "Expires" : "-1", - "x-ms-request-id" : "8edf531f-20ff-4e4f-abc3-0d60b5fde63b", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.10.2019061919\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.10/Versions/6.10.2019061919\"\r\n}", - "x-ms-client-request-id" : "87028442-a46b-418e-801d-306138694fdb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d8864af-b339-407c-a3f7-a6d0096eb970", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "8959", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49520666-c81f-4cd3-bd2d-8a0873d2c1cd", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15935,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:49520666-c81f-4cd3-bd2d-8a0873d2c1cd", - "Expires" : "-1", - "x-ms-request-id" : "636e7f41-6ecd-49ef-829b-7dc5799233e6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.4.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.4.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.5.2021051103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.5.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2018103108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2018103108\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019051523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019051523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019060521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019062019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062414\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019062414\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.20191204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020082422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2020082422\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019081522\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2019081522\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019102813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2019102813\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020020413\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020020413\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020031212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020031212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020053001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020053001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020082422\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020110301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020041421\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020041421\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020042719\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020042719\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020082421\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020082421\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020111201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2020100116\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2020111202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2021100812\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121603\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2021121603\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2022032203\"\r\n }\r\n]", - "x-ms-client-request-id" : "2d8864af-b339-407c-a3f7-a6d0096eb970", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.4.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6d86bb6-0678-43a8-b6c9-9d0b834ac598", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab02939f-f4ac-475b-81cf-3bd1b5c153b7", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12931,Microsoft.Compute/GetVMImageFromLocation30Min;73931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:ab02939f-f4ac-475b-81cf-3bd1b5c153b7", - "Expires" : "-1", - "x-ms-request-id" : "0562be2a-7042-4ec8-a5ed-216786f1d40b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.4.2021051701\"\r\n}", - "x-ms-client-request-id" : "f6d86bb6-0678-43a8-b6c9-9d0b834ac598", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2019102813?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "510184af-68b9-4580-9630-227b8acd8529", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fea3b68a-ce14-4284-aeb2-8e884f210ca0", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12927,Microsoft.Compute/GetVMImageFromLocation30Min;73927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:fea3b68a-ce14-4284-aeb2-8e884f210ca0", - "Expires" : "-1", - "x-ms-request-id" : "1c1d1721-040f-4938-906a-e259d7cb3a0f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019102813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2019102813\"\r\n}", - "x-ms-client-request-id" : "510184af-68b9-4580-9630-227b8acd8529", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dee72d07-b283-4c1b-b555-f565652c6e43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5e9f797-f030-4ab2-bb84-d3f871f134e5", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12926,Microsoft.Compute/GetVMImageFromLocation30Min;73926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:e5e9f797-f030-4ab2-bb84-d3f871f134e5", - "Expires" : "-1", - "x-ms-request-id" : "0706bfc4-a88f-4c01-ad7c-f21746e2cbe4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2021051101\"\r\n}", - "x-ms-client-request-id" : "dee72d07-b283-4c1b-b555-f565652c6e43", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2020031212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b5354f0-e646-452b-abe2-fa01b445b9b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb908f25-fdb4-4e36-9492-984acfc19e71", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12924,Microsoft.Compute/GetVMImageFromLocation30Min;73924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:eb908f25-fdb4-4e36-9492-984acfc19e71", - "Expires" : "-1", - "x-ms-request-id" : "e4bdfcda-925d-4509-a8d4-582edaa459c4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020031212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020031212\"\r\n}", - "x-ms-client-request-id" : "5b5354f0-e646-452b-abe2-fa01b445b9b8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.5.2021051103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c61e99a3-0e12-4bf9-a1b6-c4b570bc62dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13a03e58-9937-4934-84e2-9233acfd5d6f", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12923,Microsoft.Compute/GetVMImageFromLocation30Min;73923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:13a03e58-9937-4934-84e2-9233acfd5d6f", - "Expires" : "-1", - "x-ms-request-id" : "c2283180-3832-42ce-9526-37e9b19bafb6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.5.2021051103\"\r\n}", - "x-ms-client-request-id" : "c61e99a3-0e12-4bf9-a1b6-c4b570bc62dc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "510910fc-9ee2-4926-a68b-357fc589d45a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1085c5f9-ee3a-4020-9f01-1cb2302f247d", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12922,Microsoft.Compute/GetVMImageFromLocation30Min;73922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:1085c5f9-ee3a-4020-9f01-1cb2302f247d", - "Expires" : "-1", - "x-ms-request-id" : "2a5e2de2-bb5d-4eec-b0dc-153ddfe41338", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2021051701\"\r\n}", - "x-ms-client-request-id" : "510910fc-9ee2-4926-a68b-357fc589d45a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.5.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f1b5518-c802-42d0-ad94-a13d8d44277c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0d556bb-0d00-4396-a6ac-b6a3837c254d", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12932,Microsoft.Compute/GetVMImageFromLocation30Min;73932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:a0d556bb-0d00-4396-a6ac-b6a3837c254d", - "Expires" : "-1", - "x-ms-request-id" : "4b828995-0c70-41b0-8c76-e5e770e92f42", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.5.2021051701\"\r\n}", - "x-ms-client-request-id" : "3f1b5518-c802-42d0-ad94-a13d8d44277c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2020110301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1ed83d5-649a-4603-b6d9-422105e3f1bd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80563887-fcc7-4ff2-8fa2-3f1aa7f603db", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12920,Microsoft.Compute/GetVMImageFromLocation30Min;73920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:80563887-fcc7-4ff2-8fa2-3f1aa7f603db", - "Expires" : "-1", - "x-ms-request-id" : "b54ef776-0974-4d51-a48c-d20ba3426d0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020110301\"\r\n}", - "x-ms-client-request-id" : "c1ed83d5-649a-4603-b6d9-422105e3f1bd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2019051523?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09642c12-4c94-43c6-bd58-1eb303476219", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcc94c91-7111-4aa8-9c3d-4a5ce761407c", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12929,Microsoft.Compute/GetVMImageFromLocation30Min;73929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:fcc94c91-7111-4aa8-9c3d-4a5ce761407c", - "Expires" : "-1", - "x-ms-request-id" : "958d55d6-5d0a-45ce-b2ad-35434a03db28", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019051523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019051523\"\r\n}", - "x-ms-client-request-id" : "09642c12-4c94-43c6-bd58-1eb303476219", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2019062019?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45611675-a157-4696-8a23-e853f01fea92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fde15512-e880-4164-81f3-f19dbeb47bfe", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12930,Microsoft.Compute/GetVMImageFromLocation30Min;73930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:fde15512-e880-4164-81f3-f19dbeb47bfe", - "Expires" : "-1", - "x-ms-request-id" : "8e374e61-408b-49ad-b6ba-f6ff09e2a227", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019062019\"\r\n}", - "x-ms-client-request-id" : "45611675-a157-4696-8a23-e853f01fea92", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.8.2020042719?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25e61bd7-5441-4105-a696-6d9d1ebbb78e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bbfdd24-ca10-44a1-971d-2b691b018400", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12921,Microsoft.Compute/GetVMImageFromLocation30Min;73921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:5bbfdd24-ca10-44a1-971d-2b691b018400", - "Expires" : "-1", - "x-ms-request-id" : "862807c3-9658-4212-9d9f-392521a4c041", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020042719\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020042719\"\r\n}", - "x-ms-client-request-id" : "25e61bd7-5441-4105-a696-6d9d1ebbb78e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2019060521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "694ac133-70f3-48af-8491-d28307c49c09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5cce80b-ca0c-45b5-95ba-8bb272cf7da2", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12925,Microsoft.Compute/GetVMImageFromLocation30Min;73925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:e5cce80b-ca0c-45b5-95ba-8bb272cf7da2", - "Expires" : "-1", - "x-ms-request-id" : "d5e56fd9-d9d4-4bb1-bb71-a998b562cfd5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019060521\"\r\n}", - "x-ms-client-request-id" : "694ac133-70f3-48af-8491-d28307c49c09", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2020111202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a96a54d-68d5-46c9-9264-1dc54f76afa0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11782", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bde5570a-b2bb-4c5b-95b9-754bc6a53141", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12917,Microsoft.Compute/GetVMImageFromLocation30Min;73917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:bde5570a-b2bb-4c5b-95b9-754bc6a53141", - "Expires" : "-1", - "x-ms-request-id" : "ca5b469a-efbd-441e-88e6-713fbbc3313a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2020111202\"\r\n}", - "x-ms-client-request-id" : "2a96a54d-68d5-46c9-9264-1dc54f76afa0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2022032203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13f1abdf-f561-4b4c-8cf1-3d50763744e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8cce9cbc-dce4-48e8-9782-ca11d5cc1b90", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12919,Microsoft.Compute/GetVMImageFromLocation30Min;73919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:8cce9cbc-dce4-48e8-9782-ca11d5cc1b90", - "Expires" : "-1", - "x-ms-request-id" : "84cec835-d87b-43bc-9f87-628d1a3ea701", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2022032203\"\r\n}", - "x-ms-client-request-id" : "13f1abdf-f561-4b4c-8cf1-3d50763744e0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.8.2020111201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6e49473-9107-483e-9a12-45763ebb843b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc3bcee3-3a40-4c04-8d5f-052cf30cd95e", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12918,Microsoft.Compute/GetVMImageFromLocation30Min;73918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:dc3bcee3-3a40-4c04-8d5f-052cf30cd95e", - "Expires" : "-1", - "x-ms-request-id" : "a262bd31-7c07-48e3-acb7-bfaaaf4f8830", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020111201\"\r\n}", - "x-ms-client-request-id" : "f6e49473-9107-483e-9a12-45763ebb843b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2018103108?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc892eba-8fda-4c29-b2a4-430a420ecb9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d38b000-4763-4b16-ba61-207e96778ddb", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12915,Microsoft.Compute/GetVMImageFromLocation30Min;73915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:3d38b000-4763-4b16-ba61-207e96778ddb", - "Expires" : "-1", - "x-ms-request-id" : "46c80652-5236-4e21-bbb7-e01b7b46ce6c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2018103108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2018103108\"\r\n}", - "x-ms-client-request-id" : "cc892eba-8fda-4c29-b2a4-430a420ecb9c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f043120f-f454-4578-a81b-426f2118119c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "50334be4-c166-47cb-b8dc-7dce1d3d3032", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12928,Microsoft.Compute/GetVMImageFromLocation30Min;73928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:50334be4-c166-47cb-b8dc-7dce1d3d3032", - "Expires" : "-1", - "x-ms-request-id" : "2e9f94c6-9f1a-4634-a6ca-ee4a87524183", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2021051701\"\r\n}", - "x-ms-client-request-id" : "f043120f-f454-4578-a81b-426f2118119c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.8.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6aebba3-86fb-478c-9945-da116981d9b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0607e0d8-c49f-4aab-859e-a403f5b7bf44", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12913,Microsoft.Compute/GetVMImageFromLocation30Min;73913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:0607e0d8-c49f-4aab-859e-a403f5b7bf44", - "Expires" : "-1", - "x-ms-request-id" : "d7fddcce-f5ce-4cb7-85e4-9b26ba898deb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2021051701\"\r\n}", - "x-ms-client-request-id" : "a6aebba3-86fb-478c-9945-da116981d9b7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2020082422?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "670d67d4-5678-4869-a2d6-18446f18c232", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11755", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f081c5a7-ff5a-4a68-b7f3-5a7cbe4fae65", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12910,Microsoft.Compute/GetVMImageFromLocation30Min;73910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:f081c5a7-ff5a-4a68-b7f3-5a7cbe4fae65", - "Expires" : "-1", - "x-ms-request-id" : "ccfdf938-83bd-4d36-aeff-b1d1f56e6833", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020082422\"\r\n}", - "x-ms-client-request-id" : "670d67d4-5678-4869-a2d6-18446f18c232", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2021100812?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4e888bb-5f39-419f-94f1-50d7d6ed4965", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f8eaec8-928a-4161-b80c-f94b01aaa81e", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12916,Microsoft.Compute/GetVMImageFromLocation30Min;73916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:0f8eaec8-928a-4161-b80c-f94b01aaa81e", - "Expires" : "-1", - "x-ms-request-id" : "2d017c80-7fea-4b78-a9ed-1ff2f42a546b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2021100812\"\r\n}", - "x-ms-client-request-id" : "c4e888bb-5f39-419f-94f1-50d7d6ed4965", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2021121603?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c9b12de-0d69-428d-84d3-7abd49f7ef0e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41839045-1a3e-4059-be00-f232f822f309", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12909,Microsoft.Compute/GetVMImageFromLocation30Min;73909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:41839045-1a3e-4059-be00-f232f822f309", - "Expires" : "-1", - "x-ms-request-id" : "8cc15afa-ed8e-4db9-9d7b-07ee7ed2da79", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121603\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2021121603\"\r\n}", - "x-ms-client-request-id" : "1c9b12de-0d69-428d-84d3-7abd49f7ef0e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.8.2020041421?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b86b6ccd-24ec-4f8b-ad29-07a9fe27d8c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "047fc518-b522-46ad-b09f-007f9cebb854", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12908,Microsoft.Compute/GetVMImageFromLocation30Min;73908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:047fc518-b522-46ad-b09f-007f9cebb854", - "Expires" : "-1", - "x-ms-request-id" : "c10ecdb9-f5a8-4def-838a-1c5962429d29", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020041421\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020041421\"\r\n}", - "x-ms-client-request-id" : "b86b6ccd-24ec-4f8b-ad29-07a9fe27d8c9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.8.2020082421?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b558b21e-6f16-4eb8-9069-7c3d0363e5bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6510fb99-6be4-4409-85d0-a01fcf4741af", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12912,Microsoft.Compute/GetVMImageFromLocation30Min;73912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:6510fb99-6be4-4409-85d0-a01fcf4741af", - "Expires" : "-1", - "x-ms-request-id" : "4801d87d-9406-413f-a9f1-6b8013b12751", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020082421\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.8.2020082421\"\r\n}", - "x-ms-client-request-id" : "b558b21e-6f16-4eb8-9069-7c3d0363e5bb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2020053001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8d00ec1-fd9e-44d0-8990-83b28c77b1bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3bdc9f9-a5cc-45f8-8e20-41f3c6e5380f", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12906,Microsoft.Compute/GetVMImageFromLocation30Min;73906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:e3bdc9f9-a5cc-45f8-8e20-41f3c6e5380f", - "Expires" : "-1", - "x-ms-request-id" : "4b97c103-97a5-471b-9013-1aab25b71396", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020053001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020053001\"\r\n}", - "x-ms-client-request-id" : "d8d00ec1-fd9e-44d0-8990-83b28c77b1bb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2020082422?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9e77631-dc05-466c-9507-490a6dd22794", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45731993-edaf-4aa9-b431-2dcba1d537c6", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12911,Microsoft.Compute/GetVMImageFromLocation30Min;73911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:45731993-edaf-4aa9-b431-2dcba1d537c6", - "Expires" : "-1", - "x-ms-request-id" : "f8f4e84b-533f-42d2-afd0-7b17f20e727e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020082422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2020082422\"\r\n}", - "x-ms-client-request-id" : "a9e77631-dc05-466c-9507-490a6dd22794", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cad96ea5-4d93-446c-9903-32fb24fee8cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11782", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e4a02e1-1294-47eb-8768-cf2e04fe34d6", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12907,Microsoft.Compute/GetVMImageFromLocation30Min;73907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:5e4a02e1-1294-47eb-8768-cf2e04fe34d6", - "Expires" : "-1", - "x-ms-request-id" : "63745e8f-5fac-49a3-b5a4-07fd09eb3cf9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2021051701\"\r\n}", - "x-ms-client-request-id" : "cad96ea5-4d93-446c-9903-32fb24fee8cc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.20191204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45cc09a3-65f2-40a9-a9da-8d2272c02c63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bdefb55-46f2-4b78-bcd2-cff71e4e5d88", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12914,Microsoft.Compute/GetVMImageFromLocation30Min;73914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:8bdefb55-46f2-4b78-bcd2-cff71e4e5d88", - "Expires" : "-1", - "x-ms-request-id" : "1d0f7f4a-42ed-4483-96f9-5a090d5a3ec7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.20191204\"\r\n}", - "x-ms-client-request-id" : "45cc09a3-65f2-40a9-a9da-8d2272c02c63", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.9.2020100116?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5abf14c7-2e4c-437d-8420-eb7f922280b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2b1f02d-3efa-4a1e-af9d-935a40e1309c", - "Date" : "Tue, 24 May 2022 13:03:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12905,Microsoft.Compute/GetVMImageFromLocation30Min;73905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:a2b1f02d-3efa-4a1e-af9d-935a40e1309c", - "Expires" : "-1", - "x-ms-request-id" : "75269f1e-d709-44e2-9df5-a6f10c967cf6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.9.2020100116\"\r\n}", - "x-ms-client-request-id" : "5abf14c7-2e4c-437d-8420-eb7f922280b7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.6.2019062414?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20f4db3d-7112-4951-9845-62b55988c8a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cba92063-1734-4f6c-ae06-aee67d467153", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12903,Microsoft.Compute/GetVMImageFromLocation30Min;73903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:cba92063-1734-4f6c-ae06-aee67d467153", - "Expires" : "-1", - "x-ms-request-id" : "b92faf0b-d69d-4a25-a3cc-9b92abe79ea8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062414\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.6.2019062414\"\r\n}", - "x-ms-client-request-id" : "20f4db3d-7112-4951-9845-62b55988c8a6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2019081522?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c0ef3e0-bef6-4428-915f-01adb79327b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80c403e7-ae6b-4c2f-aff8-bd7d418da28f", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12904,Microsoft.Compute/GetVMImageFromLocation30Min;73904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:80c403e7-ae6b-4c2f-aff8-bd7d418da28f", - "Expires" : "-1", - "x-ms-request-id" : "a6b14677-8795-48cf-9432-8062280a6f45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019081522\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2019081522\"\r\n}", - "x-ms-client-request-id" : "9c0ef3e0-bef6-4428-915f-01adb79327b1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.4.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e141e7a2-ca90-4325-a474-eb4e6916c19d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f3c7b93-946e-4a0c-86ff-58ed11c3011e", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12902,Microsoft.Compute/GetVMImageFromLocation30Min;73902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:1f3c7b93-946e-4a0c-86ff-58ed11c3011e", - "Expires" : "-1", - "x-ms-request-id" : "c094f61f-2d72-4e47-b93d-134c6f53d5d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.4.2021051101\"\r\n}", - "x-ms-client-request-id" : "e141e7a2-ca90-4325-a474-eb4e6916c19d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-LVM/versions/7.7.2020020413?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f02bde2-18f1-4369-900f-4e24dc2894fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b95197b8-fc2b-4afd-b397-b28db5deaa50", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12901,Microsoft.Compute/GetVMImageFromLocation30Min;73901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130311Z:b95197b8-fc2b-4afd-b397-b28db5deaa50", - "Expires" : "-1", - "x-ms-request-id" : "4f2ef575-ef7d-4cd6-a36a-ad69e9f43000", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020020413\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-LVM/Versions/7.7.2020020413\"\r\n}", - "x-ms-client-request-id" : "3f02bde2-18f1-4369-900f-4e24dc2894fd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15b00d38-e792-4468-8f98-c952806a1f60", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5043", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96665648-2cef-490d-8ca4-07bd657c92c6", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15934,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:96665648-2cef-490d-8ca4-07bd657c92c6", - "Expires" : "-1", - "x-ms-request-id" : "3e1de3cc-2083-4985-84e4-01340151cfa3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.2017090716\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.2.2017090716\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.3.2017090723\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017080220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017080220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017080923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017080923\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017111521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017111521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017120423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017120423\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2018010506\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2018010506\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018041319\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018041319\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018042521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018042521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018050901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018050901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018072019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018072019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018081518\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018081518\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2018103108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2018103108\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019051523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019051523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019060521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019062020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019062120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019090418\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.7.2019090418\"\r\n }\r\n]", - "x-ms-client-request-id" : "15b00d38-e792-4468-8f98-c952806a1f60", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.4.2017080923?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4a6ab78-576a-40d7-972e-2c18472fa9ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfa6ef28-bd93-46f4-8110-9146c05fdd98", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12900,Microsoft.Compute/GetVMImageFromLocation30Min;73900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:cfa6ef28-bd93-46f4-8110-9146c05fdd98", - "Expires" : "-1", - "x-ms-request-id" : "901741c4-39af-4726-8174-00c9bc68ba5f", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017080923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017080923\"\r\n}", - "x-ms-client-request-id" : "d4a6ab78-576a-40d7-972e-2c18472fa9ac", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.2.2017090716?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd86b243-abae-470a-895a-7cb127954aa5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11781", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1e16d40-04b5-4c7b-ba67-094203de399e", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12898,Microsoft.Compute/GetVMImageFromLocation30Min;73898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:d1e16d40-04b5-4c7b-ba67-094203de399e", - "Expires" : "-1", - "x-ms-request-id" : "8f863753-485d-4d08-a1c0-be5121d0f213", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.2017090716\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.2.2017090716\"\r\n}", - "x-ms-client-request-id" : "fd86b243-abae-470a-895a-7cb127954aa5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.4.2017120423?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bcc72af-8a8c-4c52-863c-e887c5c65645", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ab75411-6493-466c-b9cd-d435ec988dec", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12899,Microsoft.Compute/GetVMImageFromLocation30Min;73899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:5ab75411-6493-466c-b9cd-d435ec988dec", - "Expires" : "-1", - "x-ms-request-id" : "6ad563b8-a34a-40d5-8af9-bc20d8a493c8", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017120423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017120423\"\r\n}", - "x-ms-client-request-id" : "3bcc72af-8a8c-4c52-863c-e887c5c65645", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.6.2019051523?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98290462-0a89-4171-aea7-236ce09dc5ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2540678f-3945-4072-b9fe-965ef50b7067", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12896,Microsoft.Compute/GetVMImageFromLocation30Min;73896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:2540678f-3945-4072-b9fe-965ef50b7067", - "Expires" : "-1", - "x-ms-request-id" : "fb15ec0d-41d2-42d2-934b-578a2448a8c1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019051523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019051523\"\r\n}", - "x-ms-client-request-id" : "98290462-0a89-4171-aea7-236ce09dc5ed", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.4.2018010506?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5e7ef49-80f0-4375-8d4b-f0ccda682c0c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9011bb62-ce44-45ff-9446-1e614c1a9349", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12895,Microsoft.Compute/GetVMImageFromLocation30Min;73895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:9011bb62-ce44-45ff-9446-1e614c1a9349", - "Expires" : "-1", - "x-ms-request-id" : "127334c9-91e8-455d-92e5-5808c40ef3fb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2018010506\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2018010506\"\r\n}", - "x-ms-client-request-id" : "b5e7ef49-80f0-4375-8d4b-f0ccda682c0c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.5.2018042521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9174262-2040-4654-8881-cd6cf3434d5f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8604f6a6-702e-4d03-b41b-f5cbd8b577a0", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12894,Microsoft.Compute/GetVMImageFromLocation30Min;73894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:8604f6a6-702e-4d03-b41b-f5cbd8b577a0", - "Expires" : "-1", - "x-ms-request-id" : "ec158082-4277-4e8b-a0e3-f35c90ca691c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018042521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018042521\"\r\n}", - "x-ms-client-request-id" : "e9174262-2040-4654-8881-cd6cf3434d5f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.6.2018103108?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6f2c6a1-178c-475a-bb78-59092f855cd8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "076039e0-e646-43a4-a317-2a62c610b75e", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12891,Microsoft.Compute/GetVMImageFromLocation30Min;73891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:076039e0-e646-43a4-a317-2a62c610b75e", - "Expires" : "-1", - "x-ms-request-id" : "7fb8213d-47c1-4242-98d9-9f27dd03f658", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2018103108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2018103108\"\r\n}", - "x-ms-client-request-id" : "e6f2c6a1-178c-475a-bb78-59092f855cd8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.4.2017111521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7c40428-7ed2-4107-9299-43afcf522818", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59c64c81-70a4-4ae5-b976-ca213396b639", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12892,Microsoft.Compute/GetVMImageFromLocation30Min;73892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:59c64c81-70a4-4ae5-b976-ca213396b639", - "Expires" : "-1", - "x-ms-request-id" : "5dc34051-b36d-4269-8634-2ca3197b1cf8", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017111521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017111521\"\r\n}", - "x-ms-client-request-id" : "f7c40428-7ed2-4107-9299-43afcf522818", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.5.2018050901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31db73f9-0d37-4a14-a304-53ac3c903cea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dac15d9b-79ff-494d-8bb4-8a57e5199bb6", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12897,Microsoft.Compute/GetVMImageFromLocation30Min;73897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:dac15d9b-79ff-494d-8bb4-8a57e5199bb6", - "Expires" : "-1", - "x-ms-request-id" : "d5ee49ed-5959-4d28-b24f-15fe94c316e2", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018050901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018050901\"\r\n}", - "x-ms-client-request-id" : "31db73f9-0d37-4a14-a304-53ac3c903cea", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.6.2019062020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cd932eb-e644-4d15-8f58-83a204fe1b69", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b96dc2a3-026c-4aae-9ca2-ef736b12d87b", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12888,Microsoft.Compute/GetVMImageFromLocation30Min;73888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:b96dc2a3-026c-4aae-9ca2-ef736b12d87b", - "Expires" : "-1", - "x-ms-request-id" : "beea20f0-52ce-4b60-98c4-bf3cd8e47664", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019062020\"\r\n}", - "x-ms-client-request-id" : "6cd932eb-e644-4d15-8f58-83a204fe1b69", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.3.2017090723?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf9e2ea9-71f3-4460-b7de-717c48e7d981", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42efa042-9801-4359-bc88-d87fa320f21d", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12890,Microsoft.Compute/GetVMImageFromLocation30Min;73890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:42efa042-9801-4359-bc88-d87fa320f21d", - "Expires" : "-1", - "x-ms-request-id" : "3d29d5d8-9952-4955-9ee6-cc05b7c41a1a", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.3.2017090723\"\r\n}", - "x-ms-client-request-id" : "bf9e2ea9-71f3-4460-b7de-717c48e7d981", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.5.2018041319?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2849ac38-7a45-4210-973f-af2a16601949", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7f9a656-56c2-486d-8339-cd247ddf23df", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12893,Microsoft.Compute/GetVMImageFromLocation30Min;73893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:e7f9a656-56c2-486d-8339-cd247ddf23df", - "Expires" : "-1", - "x-ms-request-id" : "d82f2773-b37a-4c1e-8b6e-a4d5220ec607", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018041319\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018041319\"\r\n}", - "x-ms-client-request-id" : "2849ac38-7a45-4210-973f-af2a16601949", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.7.2019090418?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd4277a7-0d81-4809-9752-0b63f46a0369", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7aaec155-6535-4599-b6e2-f6c91c23a570", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12889,Microsoft.Compute/GetVMImageFromLocation30Min;73889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:7aaec155-6535-4599-b6e2-f6c91c23a570", - "Expires" : "-1", - "x-ms-request-id" : "8119083e-749c-4351-8c00-b6a74dbebbdb", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019090418\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.7.2019090418\"\r\n}", - "x-ms-client-request-id" : "dd4277a7-0d81-4809-9752-0b63f46a0369", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.6.2019062120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6221b298-e4a3-45a5-bfa5-987fabfe8395", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d70a56d-ac6a-4f45-b872-b2cf0761f771", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12886,Microsoft.Compute/GetVMImageFromLocation30Min;73886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:1d70a56d-ac6a-4f45-b872-b2cf0761f771", - "Expires" : "-1", - "x-ms-request-id" : "b8972ff6-4b9f-4e25-a397-f5f05c5abe35", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019062120\"\r\n}", - "x-ms-client-request-id" : "6221b298-e4a3-45a5-bfa5-987fabfe8395", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.5.2018081518?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "301ae48b-83ae-475e-9afa-caf5f2790f04", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf97db9e-9dc9-46e3-8de6-8bc1e3b1318f", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12887,Microsoft.Compute/GetVMImageFromLocation30Min;73887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:cf97db9e-9dc9-46e3-8de6-8bc1e3b1318f", - "Expires" : "-1", - "x-ms-request-id" : "55212184-7c4e-47a2-9c6c-77379ae06ab7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018081518\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018081518\"\r\n}", - "x-ms-client-request-id" : "301ae48b-83ae-475e-9afa-caf5f2790f04", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.5.2018072019?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eee4c2d0-0877-4a41-8a8d-0cae2d0859b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11754", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3648b3f-b1ec-4a21-a5f8-c5187c455bb9", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12884,Microsoft.Compute/GetVMImageFromLocation30Min;73884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:e3648b3f-b1ec-4a21-a5f8-c5187c455bb9", - "Expires" : "-1", - "x-ms-request-id" : "b0e77996-8177-4dd3-b76b-74f95d1021fa", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018072019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.5.2018072019\"\r\n}", - "x-ms-client-request-id" : "eee4c2d0-0877-4a41-8a8d-0cae2d0859b5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.4.2017080220?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5e6bcb4-1a18-4bfa-afea-3d9a3dcf1f6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fabf251c-c1a0-4000-b542-b45d117bc06f", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12885,Microsoft.Compute/GetVMImageFromLocation30Min;73885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:fabf251c-c1a0-4000-b542-b45d117bc06f", - "Expires" : "-1", - "x-ms-request-id" : "a176fc39-98fa-47df-96e9-a9968c586557", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017080220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.4.2017080220\"\r\n}", - "x-ms-client-request-id" : "e5e6bcb4-1a18-4bfa-afea-3d9a3dcf1f6b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW/versions/7.6.2019060521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df4d3aa8-d97d-406e-bd88-86c5f5ada11c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "663", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27bfc45b-7cf5-46ba-956d-64a7456aca5e", - "Date" : "Tue, 24 May 2022 13:03:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12883,Microsoft.Compute/GetVMImageFromLocation30Min;73883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:27bfc45b-7cf5-46ba-956d-64a7456aca5e", - "Expires" : "-1", - "x-ms-request-id" : "ed0fa685-fdbf-4c85-9324-935f0d1ca804", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW/Versions/7.6.2019060521\"\r\n}", - "x-ms-client-request-id" : "df4d3aa8-d97d-406e-bd88-86c5f5ada11c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "991eb3fe-46b3-453e-a4ab-39ce3f6ef481", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2833", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54a13f22-4122-42e8-b330-9ef315d551ac", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15933,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130312Z:54a13f22-4122-42e8-b330-9ef315d551ac", - "Expires" : "-1", - "x-ms-request-id" : "a64edecf-14ed-4681-b9b5-abcc63e22c8d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017112900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.4.2017112900\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018041704\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.5.2018041704\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2018103121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2018103121\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019030421\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019030421\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019040919\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019040919\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019051523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019051523\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019060521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019062019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019072418\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019072418\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019081601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.7.2019081601\"\r\n }\r\n]", - "x-ms-client-request-id" : "991eb3fe-46b3-453e-a4ab-39ce3f6ef481", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2019040919?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ed85811-5a04-46bd-bd68-c3a18151fe7f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d504e8de-d8e0-420d-abf3-242b2f89643e", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12881,Microsoft.Compute/GetVMImageFromLocation30Min;73881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:d504e8de-d8e0-420d-abf3-242b2f89643e", - "Expires" : "-1", - "x-ms-request-id" : "205ea27a-a488-49c6-950f-cba571623e81", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019040919\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019040919\"\r\n}", - "x-ms-client-request-id" : "8ed85811-5a04-46bd-bd68-c3a18151fe7f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2019030421?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b678f9f5-bdfc-4b3a-9341-7859ec9510d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0710e02-bfaf-4398-bdf5-93053fb4a089", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12882,Microsoft.Compute/GetVMImageFromLocation30Min;73882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:b0710e02-bfaf-4398-bdf5-93053fb4a089", - "Expires" : "-1", - "x-ms-request-id" : "76ae6423-ee67-4619-81cb-c23fc1a1d235", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019030421\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019030421\"\r\n}", - "x-ms-client-request-id" : "b678f9f5-bdfc-4b3a-9341-7859ec9510d4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.4.2017112900?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0fc401a-f288-4081-8c3d-74b9891b6f39", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff8428fa-e247-4ca3-bd3e-f65d84df4a03", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12875,Microsoft.Compute/GetVMImageFromLocation30Min;73875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:ff8428fa-e247-4ca3-bd3e-f65d84df4a03", - "Expires" : "-1", - "x-ms-request-id" : "6671fad5-7b9e-498a-aa07-02d741d64a21", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2017112900\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.4.2017112900\"\r\n}", - "x-ms-client-request-id" : "e0fc401a-f288-4081-8c3d-74b9891b6f39", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2019060521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3842ba70-991b-406b-80a0-6e1045da0d77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c281550e-b457-4954-9176-8af2a3222b84", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12878,Microsoft.Compute/GetVMImageFromLocation30Min;73878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:c281550e-b457-4954-9176-8af2a3222b84", - "Expires" : "-1", - "x-ms-request-id" : "56d5dce3-6baa-4645-a070-e8e429e85ef7", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019060521\"\r\n}", - "x-ms-client-request-id" : "3842ba70-991b-406b-80a0-6e1045da0d77", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2018103121?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "751026a1-4d14-42a9-b9e6-5c0cbd40f63d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3d1cf0f-0fc3-483a-bafd-976dac1fbd91", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12880,Microsoft.Compute/GetVMImageFromLocation30Min;73880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:c3d1cf0f-0fc3-483a-bafd-976dac1fbd91", - "Expires" : "-1", - "x-ms-request-id" : "ca0f6ba3-ae46-45aa-89a5-398e46e3406d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2018103121\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2018103121\"\r\n}", - "x-ms-client-request-id" : "751026a1-4d14-42a9-b9e6-5c0cbd40f63d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.5.2018041704?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0753fa8-a424-4bd6-8778-53327f3e125b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11753", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "22739aae-8559-4a33-86eb-1de979c8fb50", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12879,Microsoft.Compute/GetVMImageFromLocation30Min;73879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:22739aae-8559-4a33-86eb-1de979c8fb50", - "Expires" : "-1", - "x-ms-request-id" : "e35ff85b-29a4-4f4d-a03b-2757c62bec46", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018041704\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.5.2018041704\"\r\n}", - "x-ms-client-request-id" : "e0753fa8-a424-4bd6-8778-53327f3e125b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.7.2019081601?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "be1dea9c-e80f-4ff7-ae68-2b18137bb8dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adec8afa-c749-4059-9520-d9125cd6e32a", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12876,Microsoft.Compute/GetVMImageFromLocation30Min;73876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:adec8afa-c749-4059-9520-d9125cd6e32a", - "Expires" : "-1", - "x-ms-request-id" : "a0150703-7b8c-4cd6-ab55-27a9be779a8d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019081601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.7.2019081601\"\r\n}", - "x-ms-client-request-id" : "be1dea9c-e80f-4ff7-ae68-2b18137bb8dc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2019072418?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9986518-6c06-476c-9b88-647cf9b1837a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3026df97-97a9-4489-bdec-243ef2975e38", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12877,Microsoft.Compute/GetVMImageFromLocation30Min;73877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:3026df97-97a9-4489-bdec-243ef2975e38", - "Expires" : "-1", - "x-ms-request-id" : "cd9e7df1-f0cb-425d-9ef9-fef68319eeb3", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019072418\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019072418\"\r\n}", - "x-ms-client-request-id" : "c9986518-6c06-476c-9b88-647cf9b1837a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2019051523?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01ee685e-a5ea-4697-9989-298bc23f2647", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "559594d9-9475-4682-9d32-5388df6eff59", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12874,Microsoft.Compute/GetVMImageFromLocation30Min;73874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:559594d9-9475-4682-9d32-5388df6eff59", - "Expires" : "-1", - "x-ms-request-id" : "a398bd8c-8acf-457e-857b-feb97ce4e712", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019051523\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019051523\"\r\n}", - "x-ms-client-request-id" : "01ee685e-a5ea-4697-9989-298bc23f2647", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7-RAW-CI/versions/7.6.2019062019?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e23487b8-8575-4f75-9040-5152983f930d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "666", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "25440692-9586-4b6c-993c-23bd4ba3a25f", - "Date" : "Tue, 24 May 2022 13:03:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12873,Microsoft.Compute/GetVMImageFromLocation30Min;73873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:25440692-9586-4b6c-993c-23bd4ba3a25f", - "Expires" : "-1", - "x-ms-request-id" : "7567b5dc-d248-40de-9977-c4cf19e811b9", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7-RAW-CI/Versions/7.6.2019062019\"\r\n}", - "x-ms-client-request-id" : "e23487b8-8575-4f75-9040-5152983f930d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aaa28a9e-54d9-481c-9ad1-5d0e63ca3cb9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "281", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5a7c120-7253-4a44-8964-e1b7bec9c42f", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15932,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:e5a7c120-7253-4a44-8964-e1b7bec9c42f", - "Expires" : "-1", - "x-ms-request-id" : "3ec2f540-c9ae-4ee9-ad32-74dbe8d54551", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.2017090717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.2017090717\"\r\n }\r\n]", - "x-ms-client-request-id" : "aaa28a9e-54d9-481c-9ad1-5d0e63ca3cb9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.2017090717?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "166c0557-cf0b-438e-a01a-b0e8e140c6c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76480db2-b751-4d07-ae57-07ddea122303", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12872,Microsoft.Compute/GetVMImageFromLocation30Min;73872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130313Z:76480db2-b751-4d07-ae57-07ddea122303", - "Expires" : "-1", - "x-ms-request-id" : "0463c28c-fa69-48e1-85eb-93550e1bb582", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.2017090717\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.2017090717\"\r\n}", - "x-ms-client-request-id" : "166c0557-cf0b-438e-a01a-b0e8e140c6c2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7adf6dba-53da-4d1b-8e83-ca2f982a4423", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4161", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "099e6e35-8b0c-40a4-82ed-cdb8b07bbea6", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15931,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:099e6e35-8b0c-40a4-82ed-cdb8b07bbea6", - "Expires" : "-1", - "x-ms-request-id" : "94894b35-eb04-4a7e-aec6-6e73c5e545bb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20161104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017032021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017032021\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017042521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017042521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017051117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017051117\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017052619\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017052619\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017053019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017053019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017062722\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017062722\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017071923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017071923\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017081103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017081103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017081120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017081120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017090105\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017090723\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017090800\"\r\n }\r\n]", - "x-ms-client-request-id" : "7adf6dba-53da-4d1b-8e83-ca2f982a4423", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017042521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5da7d8a7-5c9e-481b-999c-2035a559d606", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "968630ea-7dd3-4eea-9a5b-2f034f681312", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12870,Microsoft.Compute/GetVMImageFromLocation30Min;73870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:968630ea-7dd3-4eea-9a5b-2f034f681312", - "Expires" : "-1", - "x-ms-request-id" : "a9a5c8b8-77d8-4502-af32-26f2ce71c8dd", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017042521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017042521\"\r\n}", - "x-ms-client-request-id" : "5da7d8a7-5c9e-481b-999c-2035a559d606", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20161104?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b802546-2eb1-4932-a482-069b0b385498", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "657", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74019bd1-a334-48dd-9c91-297a96521151", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12871,Microsoft.Compute/GetVMImageFromLocation30Min;73871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:74019bd1-a334-48dd-9c91-297a96521151", - "Expires" : "-1", - "x-ms-request-id" : "316dab11-185f-492d-a2b9-0bbfc05ac82a", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20161104\"\r\n}", - "x-ms-client-request-id" : "7b802546-2eb1-4932-a482-069b0b385498", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20170201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aec95789-7eaa-4bd7-8b68-9b447b2db3e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "657", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "050f5b53-ed33-47c5-ad22-5fb8996a6eea", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12869,Microsoft.Compute/GetVMImageFromLocation30Min;73869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:050f5b53-ed33-47c5-ad22-5fb8996a6eea", - "Expires" : "-1", - "x-ms-request-id" : "fb09dd41-1ae9-4f04-aa43-eb2bd1fb9d23", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 31457280512\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170201\"\r\n}", - "x-ms-client-request-id" : "aec95789-7eaa-4bd7-8b68-9b447b2db3e1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017090800?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "709933e3-1c64-4551-ae50-844c32b9bf8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0514f880-266b-4fc0-8f7e-caf8e37e32e7", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12866,Microsoft.Compute/GetVMImageFromLocation30Min;73866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:0514f880-266b-4fc0-8f7e-caf8e37e32e7", - "Expires" : "-1", - "x-ms-request-id" : "6a11a0c5-5e5a-4b5d-9ea6-77e1814ed099", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017090800\"\r\n}", - "x-ms-client-request-id" : "709933e3-1c64-4551-ae50-844c32b9bf8a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017032021?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bf0d4e6-d767-4238-979c-31682ba15aee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9bba3c6e-97a9-45b6-a38a-a74284909c59", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12865,Microsoft.Compute/GetVMImageFromLocation30Min;73865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:9bba3c6e-97a9-45b6-a38a-a74284909c59", - "Expires" : "-1", - "x-ms-request-id" : "420cebe8-2d2b-4679-808e-34506d68ceac", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017032021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017032021\"\r\n}", - "x-ms-client-request-id" : "8bf0d4e6-d767-4238-979c-31682ba15aee", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017081103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "490f018d-67f9-442e-b9a8-2e110ca7d249", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "891bac28-90f9-46ac-bf27-94fc32516e90", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12868,Microsoft.Compute/GetVMImageFromLocation30Min;73868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:891bac28-90f9-46ac-bf27-94fc32516e90", - "Expires" : "-1", - "x-ms-request-id" : "fdd79811-4512-408c-940b-22969b3d8a31", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017081103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017081103\"\r\n}", - "x-ms-client-request-id" : "490f018d-67f9-442e-b9a8-2e110ca7d249", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017090723?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbe39d95-08e0-48bf-9f03-4e1ad7ba6b09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4fc77361-2a67-4b3d-9a11-1284c7362136", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12867,Microsoft.Compute/GetVMImageFromLocation30Min;73867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:4fc77361-2a67-4b3d-9a11-1284c7362136", - "Expires" : "-1", - "x-ms-request-id" : "9734946c-0bef-4072-b660-d04123e3e24e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017090723\"\r\n}", - "x-ms-client-request-id" : "dbe39d95-08e0-48bf-9f03-4e1ad7ba6b09", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20170223?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff5c1a0f-31e9-41e6-a759-825d0fee435d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "657", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "497491c7-893c-4401-af05-8399adda5028", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12864,Microsoft.Compute/GetVMImageFromLocation30Min;73864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:497491c7-893c-4401-af05-8399adda5028", - "Expires" : "-1", - "x-ms-request-id" : "84a15f3d-e1a1-4d67-b1e1-394431c6b77d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170223\"\r\n}", - "x-ms-client-request-id" : "ff5c1a0f-31e9-41e6-a759-825d0fee435d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017090105?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "932d6da3-c281-4a50-88cd-8de0516d20ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11750", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fb90e1b-5f47-4e56-ba22-aab06145da27", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12863,Microsoft.Compute/GetVMImageFromLocation30Min;73863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:2fb90e1b-5f47-4e56-ba22-aab06145da27", - "Expires" : "-1", - "x-ms-request-id" : "fee3983f-f24c-4cd1-b03f-fe2e02feee0c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017090105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017090105\"\r\n}", - "x-ms-client-request-id" : "932d6da3-c281-4a50-88cd-8de0516d20ea", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017062722?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a53cd0ee-189c-4f12-8080-efd703961b5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11750", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07667fa7-a0b8-4c71-aa40-c01bcde7bece", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12861,Microsoft.Compute/GetVMImageFromLocation30Min;73861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:07667fa7-a0b8-4c71-aa40-c01bcde7bece", - "Expires" : "-1", - "x-ms-request-id" : "7065fdaf-7f48-4eb3-a6e3-f5685a3ff9b8", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017062722\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017062722\"\r\n}", - "x-ms-client-request-id" : "a53cd0ee-189c-4f12-8080-efd703961b5e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017052619?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "40d806f4-035f-4720-862a-d7bfd4446a08", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86fd1a8a-d3b3-45c0-a94c-f8712e0d7896", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12862,Microsoft.Compute/GetVMImageFromLocation30Min;73862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:86fd1a8a-d3b3-45c0-a94c-f8712e0d7896", - "Expires" : "-1", - "x-ms-request-id" : "aa0da769-caae-4a44-a2be-0d2815c1d15e", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017052619\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017052619\"\r\n}", - "x-ms-client-request-id" : "40d806f4-035f-4720-862a-d7bfd4446a08", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017051117?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f3c0fbf-0d95-43cc-9b98-5af01eb076d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11750", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9c74ce6-b945-4066-9a35-c3f6054de9d1", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12860,Microsoft.Compute/GetVMImageFromLocation30Min;73860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:e9c74ce6-b945-4066-9a35-c3f6054de9d1", - "Expires" : "-1", - "x-ms-request-id" : "3aea9c68-d0bd-4f17-906b-6e1bba79abad", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017051117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017051117\"\r\n}", - "x-ms-client-request-id" : "4f3c0fbf-0d95-43cc-9b98-5af01eb076d2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017053019?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de84a31e-2959-45eb-a092-bc514ae7432f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a35c71e4-01cb-4e00-a598-30a54788fd23", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12858,Microsoft.Compute/GetVMImageFromLocation30Min;73858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:a35c71e4-01cb-4e00-a598-30a54788fd23", - "Expires" : "-1", - "x-ms-request-id" : "adcae39e-2059-43c3-a815-bbf958534c33", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017053019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017053019\"\r\n}", - "x-ms-client-request-id" : "de84a31e-2959-45eb-a092-bc514ae7432f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017071923?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d362022-81e4-4750-b66c-df2ad58a5655", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63003cb9-6b7f-4689-b5c2-561715c61622", - "Date" : "Tue, 24 May 2022 13:03:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12859,Microsoft.Compute/GetVMImageFromLocation30Min;73859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:63003cb9-6b7f-4689-b5c2-561715c61622", - "Expires" : "-1", - "x-ms-request-id" : "46446e09-52c3-4800-9c4d-765d4efac9d1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017071923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017071923\"\r\n}", - "x-ms-client-request-id" : "2d362022-81e4-4750-b66c-df2ad58a5655", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017081120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fbd85635-2e8b-4449-ab02-771f2218e13a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "661", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11778", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cdd6e67c-e789-437f-8fbd-33a8669ccd27", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12857,Microsoft.Compute/GetVMImageFromLocation30Min;73857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:cdd6e67c-e789-437f-8fbd-33a8669ccd27", - "Expires" : "-1", - "x-ms-request-id" : "dbda42c2-c8d3-41c0-bab4-61b6a5cbd8e1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017081120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017081120\"\r\n}", - "x-ms-client-request-id" : "fbd85635-2e8b-4449-ab02-771f2218e13a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3-DAILY/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb1616de-731d-4722-82fd-ff5e548ef8ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "155e4e8a-31a9-4b15-9d60-cff0ed320c13", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15930,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:155e4e8a-31a9-4b15-9d60-cff0ed320c13", - "Expires" : "-1", - "x-ms-request-id" : "c1aab368-5235-420e-a6c9-7b7700f74f1f", - "Body" : "[]", - "x-ms-client-request-id" : "fb1616de-731d-4722-82fd-ff5e548ef8ec", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c657d137-51d2-4f03-8a65-391be70b97de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1949", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bfcc38f2-814a-4a58-bc8c-4989168cc882", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15929,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130314Z:bfcc38f2-814a-4a58-bc8c-4989168cc882", - "Expires" : "-1", - "x-ms-request-id" : "940e3ffc-5bda-4411-9f69-48b1b3abce1e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2018010506\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2018010506\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2018010507\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2018010507\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019041718\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2019041718\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062107\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2019062107\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019102813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2019102813\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2021051001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2021051701\"\r\n }\r\n]", - "x-ms-client-request-id" : "c657d137-51d2-4f03-8a65-391be70b97de", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2018010507?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d71131ef-f6ec-42ce-85d0-27643f4f1253", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9daa5ad-966d-4491-ba03-13b38a70d243", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12855,Microsoft.Compute/GetVMImageFromLocation30Min;73855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:f9daa5ad-966d-4491-ba03-13b38a70d243", - "Expires" : "-1", - "x-ms-request-id" : "7ece4274-8402-4236-8e1e-6094f72c1216", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2018010507\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2018010507\"\r\n}", - "x-ms-client-request-id" : "d71131ef-f6ec-42ce-85d0-27643f4f1253", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2019041718?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "929a5cef-15e9-4ad2-a8b8-450d131fd036", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "800ca328-f45c-4e5d-a445-4a6c3f5aee17", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12856,Microsoft.Compute/GetVMImageFromLocation30Min;73856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:800ca328-f45c-4e5d-a445-4a6c3f5aee17", - "Expires" : "-1", - "x-ms-request-id" : "f3df3694-61f7-47b9-addd-ef5fad7c5ba8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019041718\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2019041718\"\r\n}", - "x-ms-client-request-id" : "929a5cef-15e9-4ad2-a8b8-450d131fd036", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2019102813?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1abd6e4d-dce2-4283-9f8a-ecde1383b2b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9148016d-2ce3-43e5-9e5f-edd5de80cafd", - "Date" : "Tue, 24 May 2022 13:03:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12852,Microsoft.Compute/GetVMImageFromLocation30Min;73852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:9148016d-2ce3-43e5-9e5f-edd5de80cafd", - "Expires" : "-1", - "x-ms-request-id" : "2dd01739-f435-44b9-96f5-57e0cbbbc059", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019102813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2019102813\"\r\n}", - "x-ms-client-request-id" : "1abd6e4d-dce2-4283-9f8a-ecde1383b2b8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2019062107?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2010c31-32af-4cab-b347-7128a97d753d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0edcab07-2806-4878-b645-410d2837c483", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12854,Microsoft.Compute/GetVMImageFromLocation30Min;73854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:0edcab07-2806-4878-b645-410d2837c483", - "Expires" : "-1", - "x-ms-request-id" : "8bf4723f-7cf4-4827-8481-377b00f33afd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062107\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2019062107\"\r\n}", - "x-ms-client-request-id" : "a2010c31-32af-4cab-b347-7128a97d753d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2018010506?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b3fb95f-8a23-4718-b6b6-fbd36c08d110", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2b23543-ffa3-483f-bc76-3ea82db073a7", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12853,Microsoft.Compute/GetVMImageFromLocation30Min;73853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:c2b23543-ffa3-483f-bc76-3ea82db073a7", - "Expires" : "-1", - "x-ms-request-id" : "6cfcddd7-c2a3-4b0c-a482-a38ac049beb5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2018010506\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2018010506\"\r\n}", - "x-ms-client-request-id" : "0b3fb95f-8a23-4718-b6b6-fbd36c08d110", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2021051001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90faa3b8-51a4-44d3-89b7-94e46161bf2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54f07f5c-7b05-4e37-879f-7a0bd7e6a500", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12850,Microsoft.Compute/GetVMImageFromLocation30Min;73850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:54f07f5c-7b05-4e37-879f-7a0bd7e6a500", - "Expires" : "-1", - "x-ms-request-id" : "22c9d221-fe23-4616-9a07-d1c52b6343da", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2021051001\"\r\n}", - "x-ms-client-request-id" : "90faa3b8-51a4-44d3-89b7-94e46161bf2f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.4/versions/7.4.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f05a86c-2d6d-4927-8148-32646ebc7554", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3acfea92-e28f-4036-b88e-535871ff6b99", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12851,Microsoft.Compute/GetVMImageFromLocation30Min;73851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:3acfea92-e28f-4036-b88e-535871ff6b99", - "Expires" : "-1", - "x-ms-request-id" : "35a5e2c2-4421-477e-bc8e-232f8ba20f67", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.4/Versions/7.4.2021051701\"\r\n}", - "x-ms-client-request-id" : "1f05a86c-2d6d-4927-8148-32646ebc7554", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51630927-a274-4c8d-9436-18ce0168179c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1671", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ea473cb-6a37-49c1-887e-e520bdb3229a", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15928,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:1ea473cb-6a37-49c1-887e-e520bdb3229a", - "Expires" : "-1", - "x-ms-request-id" : "b1170bcc-c4a8-4091-bc89-b92416a46965", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018081519\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2018081519\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019060305\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2019060305\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062018\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2019062018\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021071301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2021071301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021072201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2021072201\"\r\n }\r\n]", - "x-ms-client-request-id" : "51630927-a274-4c8d-9436-18ce0168179c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions/7.5.2019062018?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "705712f1-e0e7-45ee-a8c9-5c1afc0fc33e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11777", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee0597cf-a5ae-42ab-ba01-fd005fc60fae", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12848,Microsoft.Compute/GetVMImageFromLocation30Min;73848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:ee0597cf-a5ae-42ab-ba01-fd005fc60fae", - "Expires" : "-1", - "x-ms-request-id" : "8c99e24b-723c-440e-a6ec-30d9914a001a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062018\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2019062018\"\r\n}", - "x-ms-client-request-id" : "705712f1-e0e7-45ee-a8c9-5c1afc0fc33e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions/7.5.2019060305?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f0f6f5d-13d4-4ab4-93b7-9bec5eff9feb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf1ede53-2afd-4e61-8e0e-1e010969a1c1", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12849,Microsoft.Compute/GetVMImageFromLocation30Min;73849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:bf1ede53-2afd-4e61-8e0e-1e010969a1c1", - "Expires" : "-1", - "x-ms-request-id" : "70eb8284-8210-4980-874e-501244ebb9f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019060305\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2019060305\"\r\n}", - "x-ms-client-request-id" : "2f0f6f5d-13d4-4ab4-93b7-9bec5eff9feb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions/7.5.2018081519?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72877165-345c-45d4-81a2-e3233298077c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3c6032f-5671-4122-b0fe-6f63b0f1a6a6", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12847,Microsoft.Compute/GetVMImageFromLocation30Min;73847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:e3c6032f-5671-4122-b0fe-6f63b0f1a6a6", - "Expires" : "-1", - "x-ms-request-id" : "053a2c38-4279-4d85-b31f-eaa4240ad97e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018081519\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2018081519\"\r\n}", - "x-ms-client-request-id" : "72877165-345c-45d4-81a2-e3233298077c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions/7.5.2021071301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5f93909-4e13-47f5-9e20-f80df895e3bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f016a012-6289-4895-a05b-e26f9b247fa1", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12845,Microsoft.Compute/GetVMImageFromLocation30Min;73845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:f016a012-6289-4895-a05b-e26f9b247fa1", - "Expires" : "-1", - "x-ms-request-id" : "84b2c054-0e14-42a2-a53a-0336e6054327", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021071301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2021071301\"\r\n}", - "x-ms-client-request-id" : "c5f93909-4e13-47f5-9e20-f80df895e3bc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions/7.5.2021072201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1440a8a-1dd2-4a75-84ec-7a86bba54e14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a58a30e-dc3c-4ab8-a11b-e186cc9be7e2", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12846,Microsoft.Compute/GetVMImageFromLocation30Min;73846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:1a58a30e-dc3c-4ab8-a11b-e186cc9be7e2", - "Expires" : "-1", - "x-ms-request-id" : "1947b7b2-bdd0-4b3f-8c3f-947572e222d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021072201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2021072201\"\r\n}", - "x-ms-client-request-id" : "a1440a8a-1dd2-4a75-84ec-7a86bba54e14", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.5/versions/7.5.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "537ef8df-6186-46d8-9d23-26093690962a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d589823-243e-4f28-bcd6-0b26b838a231", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12844,Microsoft.Compute/GetVMImageFromLocation30Min;73844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130315Z:6d589823-243e-4f28-bcd6-0b26b838a231", - "Expires" : "-1", - "x-ms-request-id" : "2285daf7-58d3-4164-8675-51853c50a493", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.5/Versions/7.5.2021051101\"\r\n}", - "x-ms-client-request-id" : "537ef8df-6186-46d8-9d23-26093690962a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c8f5540-5432-4e90-856c-eae29c0fc830", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1671", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7f0fe4b-eff9-47f2-aaab-8171870d33da", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15927,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:d7f0fe4b-eff9-47f2-aaab-8171870d33da", - "Expires" : "-1", - "x-ms-request-id" : "29433390-b141-4157-9063-5d11425b4824", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019052206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019052206\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019060521\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019062116\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019102813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019102813\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020080921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2020080921\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2021051101\"\r\n }\r\n]", - "x-ms-client-request-id" : "0c8f5540-5432-4e90-856c-eae29c0fc830", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions/7.6.2019052206?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9469a676-0bb3-4525-9f52-74b85c4eb350", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b81fd6f4-b659-4744-9e86-f388d98c1067", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12843,Microsoft.Compute/GetVMImageFromLocation30Min;73843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:b81fd6f4-b659-4744-9e86-f388d98c1067", - "Expires" : "-1", - "x-ms-request-id" : "b23799cd-845f-4eb6-b978-dfc30a6c2296", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019052206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019052206\"\r\n}", - "x-ms-client-request-id" : "9469a676-0bb3-4525-9f52-74b85c4eb350", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions/7.6.2019060521?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a1598ba-07e3-4246-be48-15e9afa6dcd8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d1c24bc-feb1-4557-91ab-c85f4a347fd5", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12842,Microsoft.Compute/GetVMImageFromLocation30Min;73842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:6d1c24bc-feb1-4557-91ab-c85f4a347fd5", - "Expires" : "-1", - "x-ms-request-id" : "044fbebd-d4ca-44af-a6fb-6089113d0d8b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019060521\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019060521\"\r\n}", - "x-ms-client-request-id" : "2a1598ba-07e3-4246-be48-15e9afa6dcd8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions/7.6.2020080921?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77150987-34eb-4346-b3ca-acdf2a5f5ff8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9fd058f-6119-4ae2-86e1-b64f956ca1b6", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12841,Microsoft.Compute/GetVMImageFromLocation30Min;73841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:f9fd058f-6119-4ae2-86e1-b64f956ca1b6", - "Expires" : "-1", - "x-ms-request-id" : "546a8716-aaf8-44b7-9f1c-7190fffbb493", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020080921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2020080921\"\r\n}", - "x-ms-client-request-id" : "77150987-34eb-4346-b3ca-acdf2a5f5ff8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions/7.6.2019102813?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dedbec10-ff62-4997-8bc1-4968ff8715a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d9fb77a-573c-4897-b4a2-d43b4e68cf4a", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12840,Microsoft.Compute/GetVMImageFromLocation30Min;73840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:8d9fb77a-573c-4897-b4a2-d43b4e68cf4a", - "Expires" : "-1", - "x-ms-request-id" : "4e4149b2-f608-412d-a044-5c6e9fad4f0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019102813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019102813\"\r\n}", - "x-ms-client-request-id" : "dedbec10-ff62-4997-8bc1-4968ff8715a7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions/7.6.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3b78c38-a583-4eb1-b740-d4076a1e636f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab0723d0-e4d7-42ba-80f0-f336cc75f1e4", - "Date" : "Tue, 24 May 2022 13:03:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12839,Microsoft.Compute/GetVMImageFromLocation30Min;73839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:ab0723d0-e4d7-42ba-80f0-f336cc75f1e4", - "Expires" : "-1", - "x-ms-request-id" : "23da520d-11bd-447c-af3d-1812124e2b50", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2021051101\"\r\n}", - "x-ms-client-request-id" : "e3b78c38-a583-4eb1-b740-d4076a1e636f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.6/versions/7.6.2019062116?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3a7bfa3-9005-4fee-9d12-af88e38e6101", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06a496ff-b032-4081-baf9-b5b5e64a9589", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12838,Microsoft.Compute/GetVMImageFromLocation30Min;73838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:06a496ff-b032-4081-baf9-b5b5e64a9589", - "Expires" : "-1", - "x-ms-request-id" : "4c01e6aa-86e0-491e-bcfa-0807b44564e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.6/Versions/7.6.2019062116\"\r\n}", - "x-ms-client-request-id" : "a3a7bfa3-9005-4fee-9d12-af88e38e6101", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24bf1866-5a5e-4023-82c0-0f1a8e325170", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1671", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2dbd2467-ddff-4cf8-8c8b-9e7b92af6752", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15926,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130316Z:2dbd2467-ddff-4cf8-8c8b-9e7b92af6752", - "Expires" : "-1", - "x-ms-request-id" : "f1652c47-6cf9-4c11-9cc1-7f0898b9dab9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019090316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2019090316\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020052922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2020052922\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020090823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2020090823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110315\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2020110315\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021052001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2021052001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2022051301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2022051301\"\r\n }\r\n]", - "x-ms-client-request-id" : "24bf1866-5a5e-4023-82c0-0f1a8e325170", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions/7.7.2022051301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f94f258-af7c-424e-8911-78e51f4f8e1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "448471fe-3fd7-4793-960a-933501becad3", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12837,Microsoft.Compute/GetVMImageFromLocation30Min;73837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:448471fe-3fd7-4793-960a-933501becad3", - "Expires" : "-1", - "x-ms-request-id" : "416f5da2-0b7e-449c-9e44-ea69167b1558", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2022051301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2022051301\"\r\n}", - "x-ms-client-request-id" : "7f94f258-af7c-424e-8911-78e51f4f8e1d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions/7.7.2020110315?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "672ecf88-f37b-436a-971f-2030b9646686", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11748", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a66fa073-f254-4e16-ad21-c96d80e78fdd", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12835,Microsoft.Compute/GetVMImageFromLocation30Min;73835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:a66fa073-f254-4e16-ad21-c96d80e78fdd", - "Expires" : "-1", - "x-ms-request-id" : "8b280a6c-feb6-482f-a44e-cf2db389a988", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110315\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2020110315\"\r\n}", - "x-ms-client-request-id" : "672ecf88-f37b-436a-971f-2030b9646686", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions/7.7.2020090823?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "543fb3ae-3b3e-44b2-b269-e809e4c131d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "acb20433-5a32-4cc2-beb4-eeacd581b0b8", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12836,Microsoft.Compute/GetVMImageFromLocation30Min;73836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:acb20433-5a32-4cc2-beb4-eeacd581b0b8", - "Expires" : "-1", - "x-ms-request-id" : "d6f7903a-32b1-4961-8b18-570a2d779c6d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020090823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2020090823\"\r\n}", - "x-ms-client-request-id" : "543fb3ae-3b3e-44b2-b269-e809e4c131d1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions/7.7.2021052001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "65f54bf5-75e0-4ba5-af3c-65795e66ed37", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d281f925-72ad-46c1-b957-d70021795b2a", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12834,Microsoft.Compute/GetVMImageFromLocation30Min;73834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:d281f925-72ad-46c1-b957-d70021795b2a", - "Expires" : "-1", - "x-ms-request-id" : "488b24b2-2024-4aa3-97de-dd161db2390c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021052001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2021052001\"\r\n}", - "x-ms-client-request-id" : "65f54bf5-75e0-4ba5-af3c-65795e66ed37", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions/7.7.2019090316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f308b8e-8c86-4419-960a-58e5447782b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11748", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ab402a6-1267-4b75-bf42-d8a7ac9de544", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12833,Microsoft.Compute/GetVMImageFromLocation30Min;73833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:4ab402a6-1267-4b75-bf42-d8a7ac9de544", - "Expires" : "-1", - "x-ms-request-id" : "a1e60df6-d678-4b7c-a176-5d73e15ee956", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019090316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2019090316\"\r\n}", - "x-ms-client-request-id" : "9f308b8e-8c86-4419-960a-58e5447782b3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.7/versions/7.7.2020052922?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37a2f784-2c30-4e47-a552-12016d7258ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7aa9fb4d-8b32-4ef7-bff1-8459c1f40552", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12832,Microsoft.Compute/GetVMImageFromLocation30Min;73832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:7aa9fb4d-8b32-4ef7-bff1-8459c1f40552", - "Expires" : "-1", - "x-ms-request-id" : "7f715f31-8919-4d69-84ae-76c3a642f2d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020052922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.7/Versions/7.7.2020052922\"\r\n}", - "x-ms-client-request-id" : "37a2f784-2c30-4e47-a552-12016d7258ae", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e9345b5-b186-420d-982f-52e8586e5494", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1671", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45f8e0e7-1bd2-4ef3-b108-15035b8fd515", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15925,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:45f8e0e7-1bd2-4ef3-b108-15035b8fd515", - "Expires" : "-1", - "x-ms-request-id" : "1cb15ac4-0112-400b-8aeb-94d504963ce5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020040309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020040309\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020050910\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020050910\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020090816\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020090816\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020110315\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020110315\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020111309\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2021051701\"\r\n }\r\n]", - "x-ms-client-request-id" : "7e9345b5-b186-420d-982f-52e8586e5494", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions/7.8.2020050910?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec443624-ff75-4626-ac62-17a5e9634894", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5681916-6679-4a2e-a7ed-fcd7f56b00b6", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12831,Microsoft.Compute/GetVMImageFromLocation30Min;73831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:e5681916-6679-4a2e-a7ed-fcd7f56b00b6", - "Expires" : "-1", - "x-ms-request-id" : "43a4c85d-ea2c-4897-b0a7-1294a682e17d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020050910\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020050910\"\r\n}", - "x-ms-client-request-id" : "ec443624-ff75-4626-ac62-17a5e9634894", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions/7.8.2020090816?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe1512d9-c054-42e3-b913-a4e9d5f44dc3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11776", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbec9912-9aee-4dff-97bb-0270258106c7", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12830,Microsoft.Compute/GetVMImageFromLocation30Min;73830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:cbec9912-9aee-4dff-97bb-0270258106c7", - "Expires" : "-1", - "x-ms-request-id" : "50c75770-c745-402a-971c-0910e61fc6cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020090816\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020090816\"\r\n}", - "x-ms-client-request-id" : "fe1512d9-c054-42e3-b913-a4e9d5f44dc3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions/7.8.2020040309?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d15085c-f6c3-4408-affb-b2d31524d03a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "81e4d1dc-8432-4c0e-a9d2-7bd931c0c59c", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12829,Microsoft.Compute/GetVMImageFromLocation30Min;73829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:81e4d1dc-8432-4c0e-a9d2-7bd931c0c59c", - "Expires" : "-1", - "x-ms-request-id" : "f2fc359c-06e3-4ef6-9058-d0084e5eeda1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020040309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020040309\"\r\n}", - "x-ms-client-request-id" : "1d15085c-f6c3-4408-affb-b2d31524d03a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions/7.8.2020111309?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35d0c8d4-9f78-470b-aec4-880c3b7628ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba9d8b0c-20bf-42cf-a235-3034c1c1b614", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12827,Microsoft.Compute/GetVMImageFromLocation30Min;73827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:ba9d8b0c-20bf-42cf-a235-3034c1c1b614", - "Expires" : "-1", - "x-ms-request-id" : "2c996813-55f6-464e-b7f5-338d1f0fe2fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111309\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020111309\"\r\n}", - "x-ms-client-request-id" : "35d0c8d4-9f78-470b-aec4-880c3b7628ae", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions/7.8.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98c715f4-f652-4d4a-996b-fdf8857561bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b792707-1d27-49d8-8694-79c3e6f5493e", - "Date" : "Tue, 24 May 2022 13:03:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12828,Microsoft.Compute/GetVMImageFromLocation30Min;73828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130317Z:3b792707-1d27-49d8-8694-79c3e6f5493e", - "Expires" : "-1", - "x-ms-request-id" : "d00a7efb-d4b9-4975-a6db-1d51ba1b23ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2021051701\"\r\n}", - "x-ms-client-request-id" : "98c715f4-f652-4d4a-996b-fdf8857561bf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.8/versions/7.8.2020110315?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90512113-c4b4-4d87-8053-e2c6a7a831c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "756963f3-3925-468b-8107-44fe7b82d38d", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12826,Microsoft.Compute/GetVMImageFromLocation30Min;73826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130318Z:756963f3-3925-468b-8107-44fe7b82d38d", - "Expires" : "-1", - "x-ms-request-id" : "418d1c16-0c41-4ac8-abc6-83b8f2d2e881", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020110315\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.8/Versions/7.8.2020110315\"\r\n}", - "x-ms-client-request-id" : "90512113-c4b4-4d87-8053-e2c6a7a831c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/74-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "207ce73a-e4a3-4e07-a749-f6307de3ef21", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "845", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8eeb64ee-d5f5-4c66-89fc-905630de9d99", - "Date" : "Tue, 24 May 2022 13:03:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15924,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130318Z:8eeb64ee-d5f5-4c66-89fc-905630de9d99", - "Expires" : "-1", - "x-ms-request-id" : "07438af9-76a5-4f8e-b183-5699c1ddc54f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20200123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2/Versions/7.4.20200123\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2/Versions/7.4.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2/Versions/7.4.2021051702\"\r\n }\r\n]", - "x-ms-client-request-id" : "207ce73a-e4a3-4e07-a749-f6307de3ef21", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/74-gen2/versions/7.4.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84fbcd51-5c49-4121-8fd4-ec48a7b0b5dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b80140f6-3151-4639-90f8-5e202bbf8aa5", - "Date" : "Tue, 24 May 2022 13:03:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12825,Microsoft.Compute/GetVMImageFromLocation30Min;73825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130318Z:b80140f6-3151-4639-90f8-5e202bbf8aa5", - "Expires" : "-1", - "x-ms-request-id" : "798bfdea-b070-464b-b5a6-edfbb07c4043", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2/Versions/7.4.2021051702\"\r\n}", - "x-ms-client-request-id" : "84fbcd51-5c49-4121-8fd4-ec48a7b0b5dd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/74-gen2/versions/7.4.20200123?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51b22fd8-d1c0-4e2e-b95b-751f43eaa27a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "742", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32f38c78-ff41-437c-930f-88b2ab4c2de1", - "Date" : "Tue, 24 May 2022 13:03:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12824,Microsoft.Compute/GetVMImageFromLocation30Min;73824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130318Z:32f38c78-ff41-437c-930f-88b2ab4c2de1", - "Expires" : "-1", - "x-ms-request-id" : "345cede5-67cd-451d-8371-b3a4a564538f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20200123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2/Versions/7.4.20200123\"\r\n}", - "x-ms-client-request-id" : "51b22fd8-d1c0-4e2e-b95b-751f43eaa27a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/74-gen2/versions/7.4.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb3b4cc5-787a-4d55-a544-760be562786b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d637452a-399d-43c9-801a-d6dea3d5b1a8", - "Date" : "Tue, 24 May 2022 13:03:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12823,Microsoft.Compute/GetVMImageFromLocation30Min;73823", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:d637452a-399d-43c9-801a-d6dea3d5b1a8", - "Expires" : "-1", - "x-ms-request-id" : "ec573c76-f117-4551-9a03-8cc8e7f14d7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/74-gen2/Versions/7.4.2021051102\"\r\n}", - "x-ms-client-request-id" : "fb3b4cc5-787a-4d55-a544-760be562786b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/75-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9e2ed23-1616-49d4-9612-1a405b92d6c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1409", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86aca370-dbaa-4dc6-a868-f5d48357f597", - "Date" : "Tue, 24 May 2022 13:03:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15923,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:86aca370-dbaa-4dc6-a868-f5d48357f597", - "Expires" : "-1", - "x-ms-request-id" : "617fd80a-2de3-4be7-b258-900d32670c97", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2020090820\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2020090820\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021071302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2021071302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021072202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2021072202\"\r\n }\r\n]", - "x-ms-client-request-id" : "b9e2ed23-1616-49d4-9612-1a405b92d6c6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/75-gen2/versions/7.5.2021072202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4b56391-58d5-4ef9-ab06-de7af5f3f27b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ecc6e46e-cc93-4a78-8176-4d2178ef72a8", - "Date" : "Tue, 24 May 2022 13:03:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12819,Microsoft.Compute/GetVMImageFromLocation30Min;73819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:ecc6e46e-cc93-4a78-8176-4d2178ef72a8", - "Expires" : "-1", - "x-ms-request-id" : "08dbe42b-b45c-4fa9-ab43-5fa735d6918e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021072202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2021072202\"\r\n}", - "x-ms-client-request-id" : "b4b56391-58d5-4ef9-ab06-de7af5f3f27b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/75-gen2/versions/7.5.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7af8a24-e669-4450-bd56-0a7e5f3145d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbfd841f-ae93-4299-880c-daf5cb92f1d2", - "Date" : "Tue, 24 May 2022 13:03:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12820,Microsoft.Compute/GetVMImageFromLocation30Min;73820", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:bbfd841f-ae93-4299-880c-daf5cb92f1d2", - "Expires" : "-1", - "x-ms-request-id" : "7bf8464b-5590-4bdf-98b4-4951dae163b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2021051102\"\r\n}", - "x-ms-client-request-id" : "f7af8a24-e669-4450-bd56-0a7e5f3145d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/75-gen2/versions/7.5.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ef077dc-9d96-4bfe-8410-f7bf90fb34fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "742", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f52d0c59-b814-46dc-aff0-df437c3221d5", - "Date" : "Tue, 24 May 2022 13:03:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12822,Microsoft.Compute/GetVMImageFromLocation30Min;73822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:f52d0c59-b814-46dc-aff0-df437c3221d5", - "Expires" : "-1", - "x-ms-request-id" : "4ac72324-4706-40e8-953c-97e6dcb9f40b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.20191212\"\r\n}", - "x-ms-client-request-id" : "9ef077dc-9d96-4bfe-8410-f7bf90fb34fd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/75-gen2/versions/7.5.2020090820?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7ca72ab-81ef-4b82-a6a8-7fb976b885e3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8278361e-cd95-4ac0-89fc-c89a043085b8", - "Date" : "Tue, 24 May 2022 13:03:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12821,Microsoft.Compute/GetVMImageFromLocation30Min;73821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:8278361e-cd95-4ac0-89fc-c89a043085b8", - "Expires" : "-1", - "x-ms-request-id" : "6588770c-b7c7-40bc-8f1b-81aade8dade1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2020090820\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2020090820\"\r\n}", - "x-ms-client-request-id" : "b7ca72ab-81ef-4b82-a6a8-7fb976b885e3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/75-gen2/versions/7.5.2021071302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d48ea8d0-13ef-4e7a-9f26-9e109b23a1d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b219d812-df9d-40c1-8726-49cce0acd770", - "Date" : "Tue, 24 May 2022 13:03:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12818,Microsoft.Compute/GetVMImageFromLocation30Min;73818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130319Z:b219d812-df9d-40c1-8726-49cce0acd770", - "Expires" : "-1", - "x-ms-request-id" : "515bc2c2-e89f-4521-9549-aeec97f5123d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021071302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/75-gen2/Versions/7.5.2021071302\"\r\n}", - "x-ms-client-request-id" : "d48ea8d0-13ef-4e7a-9f26-9e109b23a1d6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/76-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a967d4c-42bc-4585-bcde-bc6a4d58fd23", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "845", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d33b753f-08c6-47ed-b02f-dd229fab3f90", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15922,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130320Z:d33b753f-08c6-47ed-b02f-dd229fab3f90", - "Expires" : "-1", - "x-ms-request-id" : "0ad35f30-aedf-4090-a89d-0c336d4c00a6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2/Versions/7.6.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020090822\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2/Versions/7.6.2020090822\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2/Versions/7.6.2021051101\"\r\n }\r\n]", - "x-ms-client-request-id" : "3a967d4c-42bc-4585-bcde-bc6a4d58fd23", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/76-gen2/versions/7.6.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "314be3bd-2ae2-4fe7-9d88-2eb41d19a589", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "742", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7744f8f-bd79-49cd-91d8-b3d5e06cda9e", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12817,Microsoft.Compute/GetVMImageFromLocation30Min;73817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130320Z:b7744f8f-bd79-49cd-91d8-b3d5e06cda9e", - "Expires" : "-1", - "x-ms-request-id" : "e0131671-cbf3-41b1-8ab8-1ea9108eb0b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2/Versions/7.6.20191212\"\r\n}", - "x-ms-client-request-id" : "314be3bd-2ae2-4fe7-9d88-2eb41d19a589", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/76-gen2/versions/7.6.2020090822?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f189928-ba4b-47e5-96bc-ee5e94984ca9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6256dbd-6620-4756-9271-48421d1ab3ed", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12816,Microsoft.Compute/GetVMImageFromLocation30Min;73816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130320Z:e6256dbd-6620-4756-9271-48421d1ab3ed", - "Expires" : "-1", - "x-ms-request-id" : "c3363c56-0d0e-4bdd-af14-63af3715dc84", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020090822\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2/Versions/7.6.2020090822\"\r\n}", - "x-ms-client-request-id" : "8f189928-ba4b-47e5-96bc-ee5e94984ca9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/76-gen2/versions/7.6.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b47a0550-d038-4eb9-a819-b583ef7f2247", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36753e1e-85c3-4016-8e95-d3131d94ca2e", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12815,Microsoft.Compute/GetVMImageFromLocation30Min;73815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130320Z:36753e1e-85c3-4016-8e95-d3131d94ca2e", - "Expires" : "-1", - "x-ms-request-id" : "2ee9a543-8c39-47f5-ac25-bf359a09b43c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/76-gen2/Versions/7.6.2021051101\"\r\n}", - "x-ms-client-request-id" : "b47a0550-d038-4eb9-a819-b583ef7f2247", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "830a5e6b-e0e0-467b-ac2d-38a443dbabd4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1695", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a39ded3-5560-41c0-bfc6-6f9f5fbc322c", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15921,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130320Z:1a39ded3-5560-41c0-bfc6-6f9f5fbc322c", - "Expires" : "-1", - "x-ms-request-id" : "925bc10c-368b-4b9b-8c44-2cf61c978b03", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020020416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020020416\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020052923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020052923\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020080924\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020080924\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020110316\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021052002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2021052002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2022051302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2022051302\"\r\n }\r\n]", - "x-ms-client-request-id" : "830a5e6b-e0e0-467b-ac2d-38a443dbabd4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions/7.7.2020020416?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e721f68-943b-4c03-a175-9ba88c5e910a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc7debf3-0c78-408c-a64e-6db239ba0125", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12814,Microsoft.Compute/GetVMImageFromLocation30Min;73814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130320Z:bc7debf3-0c78-408c-a64e-6db239ba0125", - "Expires" : "-1", - "x-ms-request-id" : "771bf572-3834-47e5-81c4-bba0a9389146", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020020416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020020416\"\r\n}", - "x-ms-client-request-id" : "8e721f68-943b-4c03-a175-9ba88c5e910a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions/7.7.2022051302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55886e82-f0d3-4ee6-a153-a5678602826d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11775", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dcd71cf9-1b26-48f0-a805-96c0d1d7731f", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12813,Microsoft.Compute/GetVMImageFromLocation30Min;73813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:dcd71cf9-1b26-48f0-a805-96c0d1d7731f", - "Expires" : "-1", - "x-ms-request-id" : "b62e9045-651a-4011-8ccd-48022244ab73", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2022051302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2022051302\"\r\n}", - "x-ms-client-request-id" : "55886e82-f0d3-4ee6-a153-a5678602826d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions/7.7.2020080924?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84ac0925-b167-4038-a9e3-c6298331392d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55f02ed5-58e4-48d7-9b46-416235761426", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12812,Microsoft.Compute/GetVMImageFromLocation30Min;73812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:55f02ed5-58e4-48d7-9b46-416235761426", - "Expires" : "-1", - "x-ms-request-id" : "5eed4235-a718-4b1c-9575-672274b77ff5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020080924\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020080924\"\r\n}", - "x-ms-client-request-id" : "84ac0925-b167-4038-a9e3-c6298331392d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions/7.7.2021052002?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "657fd5f5-bb5b-4954-8643-2b9a5e6c3f96", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "647968b1-2c23-4ebc-93fd-2a81f3d720ac", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12811,Microsoft.Compute/GetVMImageFromLocation30Min;73811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:647968b1-2c23-4ebc-93fd-2a81f3d720ac", - "Expires" : "-1", - "x-ms-request-id" : "22b04a35-b773-468e-986e-0b5dc2577e14", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021052002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2021052002\"\r\n}", - "x-ms-client-request-id" : "657fd5f5-bb5b-4954-8643-2b9a5e6c3f96", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions/7.7.2020110316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c429bab-6130-494b-8170-260b622f61bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6161ff9c-2baf-4ea5-9014-9c3d693e797e", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12810,Microsoft.Compute/GetVMImageFromLocation30Min;73810", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:6161ff9c-2baf-4ea5-9014-9c3d693e797e", - "Expires" : "-1", - "x-ms-request-id" : "bd2290a3-0810-4dae-a3c2-8b37aeef043d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020110316\"\r\n}", - "x-ms-client-request-id" : "2c429bab-6130-494b-8170-260b622f61bc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/77-gen2/versions/7.7.2020052923?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0ce94f3-ab87-4a79-9159-8bc3f53cb848", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56f78b37-4d0b-44f1-8af5-52291b52bbd2", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12809,Microsoft.Compute/GetVMImageFromLocation30Min;73809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:56f78b37-4d0b-44f1-8af5-52291b52bbd2", - "Expires" : "-1", - "x-ms-request-id" : "729922ac-feae-45a1-b809-c216a6db2b48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020052923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/77-gen2/Versions/7.7.2020052923\"\r\n}", - "x-ms-client-request-id" : "b0ce94f3-ab87-4a79-9159-8bc3f53cb848", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f296643-131d-4a66-b601-0ccb1e12675b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1693", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c9d13a8-4ebc-4161-9594-4ba601765f7f", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15920,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:8c9d13a8-4ebc-4161-9594-4ba601765f7f", - "Expires" : "-1", - "x-ms-request-id" : "cf61a2b7-fc8f-4c03-9093-eddcfc4df726", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.202004014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.202004014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020050911\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020050911\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020090817\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020090817\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020110317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020110317\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020111310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2021051702\"\r\n }\r\n]", - "x-ms-client-request-id" : "7f296643-131d-4a66-b601-0ccb1e12675b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions/7.8.2020050911?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf0958ed-c9b6-41e0-bec6-b2047fb7f37c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56c50728-8733-48a2-9a1d-b1756e9a653f", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12807,Microsoft.Compute/GetVMImageFromLocation30Min;73807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:56c50728-8733-48a2-9a1d-b1756e9a653f", - "Expires" : "-1", - "x-ms-request-id" : "2a5c3b10-4d74-4986-b2c4-e66926041a57", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020050911\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020050911\"\r\n}", - "x-ms-client-request-id" : "bf0958ed-c9b6-41e0-bec6-b2047fb7f37c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions/7.8.2020110317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47a6da6c-7a8c-4d06-8e62-33ed3347c5a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7088bcaf-7acd-49f7-babd-61514336ab8f", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12808,Microsoft.Compute/GetVMImageFromLocation30Min;73808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:7088bcaf-7acd-49f7-babd-61514336ab8f", - "Expires" : "-1", - "x-ms-request-id" : "53560697-5607-4b1f-b24f-ee432ae774dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020110317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020110317\"\r\n}", - "x-ms-client-request-id" : "47a6da6c-7a8c-4d06-8e62-33ed3347c5a2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions/7.8.2020090817?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3104d750-90e2-4626-98c6-7b8b6725de74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f3b6a1a-5ee9-44e2-9dfd-1afd68fbf249", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12806,Microsoft.Compute/GetVMImageFromLocation30Min;73806", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:6f3b6a1a-5ee9-44e2-9dfd-1afd68fbf249", - "Expires" : "-1", - "x-ms-request-id" : "95d2612b-a5c2-45b7-af00-8b2f18117472", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020090817\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020090817\"\r\n}", - "x-ms-client-request-id" : "3104d750-90e2-4626-98c6-7b8b6725de74", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions/7.8.202004014?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c724f89b-022a-4e06-8f6b-19050a557b98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e8e5801-0182-40e9-bdb5-b1384a287330", - "Date" : "Tue, 24 May 2022 13:03:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12805,Microsoft.Compute/GetVMImageFromLocation30Min;73805", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:6e8e5801-0182-40e9-bdb5-b1384a287330", - "Expires" : "-1", - "x-ms-request-id" : "b26dc066-c24e-4e2f-b333-f11b5afc449a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.202004014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.202004014\"\r\n}", - "x-ms-client-request-id" : "c724f89b-022a-4e06-8f6b-19050a557b98", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions/7.8.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "71792e87-592c-4655-8827-6e056e682a89", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ce7294c-2488-4c04-bf40-2ea8be523f25", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12804,Microsoft.Compute/GetVMImageFromLocation30Min;73804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:4ce7294c-2488-4c04-bf40-2ea8be523f25", - "Expires" : "-1", - "x-ms-request-id" : "e45faf2b-084c-4d20-abb3-915ebf2c17d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2021051702\"\r\n}", - "x-ms-client-request-id" : "71792e87-592c-4655-8827-6e056e682a89", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/78-gen2/versions/7.8.2020111310?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6c48fbd-2e0f-41b3-824c-95547c86fa09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11747", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd63ce6f-2c7f-4575-a981-8a9157d451a0", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12803,Microsoft.Compute/GetVMImageFromLocation30Min;73803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130321Z:dd63ce6f-2c7f-4575-a981-8a9157d451a0", - "Expires" : "-1", - "x-ms-request-id" : "e3f6225e-d6d9-4418-8b4e-3dbef46d1402", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/78-gen2/Versions/7.8.2020111310\"\r\n}", - "x-ms-client-request-id" : "a6c48fbd-2e0f-41b3-824c-95547c86fa09", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "21ff539b-2c60-4ff6-8fc6-9476440a32a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1695", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "350de121-ee98-462b-babe-e5b999d7d889", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15919,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:350de121-ee98-462b-babe-e5b999d7d889", - "Expires" : "-1", - "x-ms-request-id" : "fbc9631a-0e0d-407b-a917-d037095c1aea", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2020100116\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2020111302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100810\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2021100810\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2021121602\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2022032202\"\r\n }\r\n]", - "x-ms-client-request-id" : "21ff539b-2c60-4ff6-8fc6-9476440a32a4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions/7.9.2020100116?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e658f7ff-c2bf-4bd0-b997-22222a40a9c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adb978b1-c64e-46a6-8891-d9b2c2fdd069", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12802,Microsoft.Compute/GetVMImageFromLocation30Min;73802", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:adb978b1-c64e-46a6-8891-d9b2c2fdd069", - "Expires" : "-1", - "x-ms-request-id" : "be006312-5c08-46a1-868d-c5fa73f82ea8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2020100116\"\r\n}", - "x-ms-client-request-id" : "e658f7ff-c2bf-4bd0-b997-22222a40a9c5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions/7.9.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41cab684-2df9-41e8-ba1a-e0570d7ece61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51611151-be76-4e22-98bf-fe5f27478bc8", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12800,Microsoft.Compute/GetVMImageFromLocation30Min;73800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:51611151-be76-4e22-98bf-fe5f27478bc8", - "Expires" : "-1", - "x-ms-request-id" : "7f151fbf-140f-4e3c-a966-9b26f5cf84a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2021051702\"\r\n}", - "x-ms-client-request-id" : "41cab684-2df9-41e8-ba1a-e0570d7ece61", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions/7.9.2020111302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6851bdf-de0f-4705-8293-b872a25824ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "675467c4-88fc-4828-aa6a-c0513a4d4c35", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12801,Microsoft.Compute/GetVMImageFromLocation30Min;73801", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:675467c4-88fc-4828-aa6a-c0513a4d4c35", - "Expires" : "-1", - "x-ms-request-id" : "5b845b12-bacc-4c13-9a4d-22b149cea998", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2020111302\"\r\n}", - "x-ms-client-request-id" : "b6851bdf-de0f-4705-8293-b872a25824ca", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions/7.9.2021121602?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6580026a-a3bf-4b47-a41d-b3082283c982", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11774", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87930572-aa00-4ec8-a113-f93cea5a681e", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12799,Microsoft.Compute/GetVMImageFromLocation30Min;73799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:87930572-aa00-4ec8-a113-f93cea5a681e", - "Expires" : "-1", - "x-ms-request-id" : "e6ec2dd0-75eb-4c73-846b-1c869f0871a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2021121602\"\r\n}", - "x-ms-client-request-id" : "6580026a-a3bf-4b47-a41d-b3082283c982", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions/7.9.2021100810?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2dcdf72-144d-42a5-82e7-9e003536e1ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6e34bf6-98ef-4dd2-b714-5868f0696b9b", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12798,Microsoft.Compute/GetVMImageFromLocation30Min;73798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:a6e34bf6-98ef-4dd2-b714-5868f0696b9b", - "Expires" : "-1", - "x-ms-request-id" : "f5fe2620-d4d4-4d66-ac0c-8072bfac10bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100810\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2021100810\"\r\n}", - "x-ms-client-request-id" : "b2dcdf72-144d-42a5-82e7-9e003536e1ab", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/79-gen2/versions/7.9.2022032202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d731eb21-4d23-4461-9f45-106c34e5cdf9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40a87afb-6540-4ea5-91ee-64fb3e4af14d", - "Date" : "Tue, 24 May 2022 13:03:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12797,Microsoft.Compute/GetVMImageFromLocation30Min;73797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:40a87afb-6540-4ea5-91ee-64fb3e4af14d", - "Expires" : "-1", - "x-ms-request-id" : "6ff6bf4a-baa2-46f9-afe1-a72481b130dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/79-gen2/Versions/7.9.2022032202\"\r\n}", - "x-ms-client-request-id" : "d731eb21-4d23-4461-9f45-106c34e5cdf9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00a73956-336e-4953-9ba1-d3df74139c92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7659", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33970ccd-2902-41aa-a5ec-34e8aff32964", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15918,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130322Z:33970ccd-2902-41aa-a5ec-34e8aff32964", - "Expires" : "-1", - "x-ms-request-id" : "1a591be2-9d5e-44c4-bb6e-03a82c71bfcf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.4.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.4.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.4.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.5.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.5.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.5.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.20191206\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020082423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.2020082423\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020020420\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020020420\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020031213\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020031213\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020053002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020053002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020082423\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110307\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020110307\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020041422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020041422\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020042720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020042720\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020082423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020082423\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020111204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2018100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2018100812\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2020100117\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111205\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2020111205\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2021051702\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121604\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2021121604\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2022032206\"\r\n }\r\n]", - "x-ms-client-request-id" : "00a73956-336e-4953-9ba1-d3df74139c92", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.6.2020082423?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23232854-3889-48f5-8b85-8473f654df02", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c64fd2f-4705-45e2-ab7a-65d668585085", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12795,Microsoft.Compute/GetVMImageFromLocation30Min;73795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:2c64fd2f-4705-45e2-ab7a-65d668585085", - "Expires" : "-1", - "x-ms-request-id" : "81835364-f72f-4462-b5b3-8d7f1e676271", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020082423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.2020082423\"\r\n}", - "x-ms-client-request-id" : "23232854-3889-48f5-8b85-8473f654df02", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.6.20191206?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "313d7fce-923e-46ad-b0b4-2a5039050d27", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11773", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a7609e4-2dbb-431f-8afc-9d0eac458b5c", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12791,Microsoft.Compute/GetVMImageFromLocation30Min;73791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:9a7609e4-2dbb-431f-8afc-9d0eac458b5c", - "Expires" : "-1", - "x-ms-request-id" : "ba2134e6-ff55-4b6f-b6c2-c52fcf220c10", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.20191206\"\r\n}", - "x-ms-client-request-id" : "313d7fce-923e-46ad-b0b4-2a5039050d27", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.4.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbac00fb-7d57-40e2-956b-cb4eb38e27bd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33e98a36-5124-4a69-b6e8-14b3fac14399", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12793,Microsoft.Compute/GetVMImageFromLocation30Min;73793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:33e98a36-5124-4a69-b6e8-14b3fac14399", - "Expires" : "-1", - "x-ms-request-id" : "1ced3b68-006d-482b-831e-0d5793ab6551", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.4.2021051102\"\r\n}", - "x-ms-client-request-id" : "cbac00fb-7d57-40e2-956b-cb4eb38e27bd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.7.2020053002?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1cef651d-7b76-4999-9828-0d7d70c24a7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b80b8be-7c4d-4ee1-8c03-dc5dabc15173", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12788,Microsoft.Compute/GetVMImageFromLocation30Min;73788", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:3b80b8be-7c4d-4ee1-8c03-dc5dabc15173", - "Expires" : "-1", - "x-ms-request-id" : "bdd4d2c8-4c19-4d10-9441-fa52c6912c18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020053002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020053002\"\r\n}", - "x-ms-client-request-id" : "1cef651d-7b76-4999-9828-0d7d70c24a7e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.9.2020100117?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e991ebb3-0590-41f5-8441-f7c2ecf85dbc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "973ee9d7-66af-449c-a556-21ab3a106f24", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12789,Microsoft.Compute/GetVMImageFromLocation30Min;73789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:973ee9d7-66af-449c-a556-21ab3a106f24", - "Expires" : "-1", - "x-ms-request-id" : "65e2ad55-b369-4bb0-8879-fe9773969edc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2020100117\"\r\n}", - "x-ms-client-request-id" : "e991ebb3-0590-41f5-8441-f7c2ecf85dbc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.7.2020031213?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f231661-20ef-4c79-af7e-4d939ac154d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4c53146-b557-41f3-b887-53a65f2fb4ea", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12794,Microsoft.Compute/GetVMImageFromLocation30Min;73794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:e4c53146-b557-41f3-b887-53a65f2fb4ea", - "Expires" : "-1", - "x-ms-request-id" : "a634b6ea-fc8a-4c1e-bf9c-b03a816150a8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020031213\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020031213\"\r\n}", - "x-ms-client-request-id" : "5f231661-20ef-4c79-af7e-4d939ac154d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.4.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cb4c4af-ea23-4a06-8117-d938a2497729", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "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" : "84ad72cd-78b5-4898-b27b-b1477ae11e77", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12792,Microsoft.Compute/GetVMImageFromLocation30Min;73792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:84ad72cd-78b5-4898-b27b-b1477ae11e77", - "Expires" : "-1", - "x-ms-request-id" : "cb891d5c-5135-4351-9acf-4751fef52959", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.4.2021051702\"\r\n}", - "x-ms-client-request-id" : "8cb4c4af-ea23-4a06-8117-d938a2497729", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.9.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d91d7c58-9a44-4e17-aab4-d613d21cf5d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1654bbf7-68e0-43f2-9650-02b90b224d02", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12786,Microsoft.Compute/GetVMImageFromLocation30Min;73786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:1654bbf7-68e0-43f2-9650-02b90b224d02", - "Expires" : "-1", - "x-ms-request-id" : "bc0bbe60-b4d5-4c38-acb6-22503312b658", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2021051702\"\r\n}", - "x-ms-client-request-id" : "d91d7c58-9a44-4e17-aab4-d613d21cf5d7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.8.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab66fd41-a3f9-471e-9021-46f26cfea1df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11746", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d844ead3-9e36-4b69-9dfc-85df996583bd", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12784,Microsoft.Compute/GetVMImageFromLocation30Min;73784", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:d844ead3-9e36-4b69-9dfc-85df996583bd", - "Expires" : "-1", - "x-ms-request-id" : "e0b8f6f5-85fb-4e59-874b-4d243debf7b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2021051702\"\r\n}", - "x-ms-client-request-id" : "ab66fd41-a3f9-471e-9021-46f26cfea1df", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.5.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d529856f-63f1-474b-aeb7-41b3f8b67331", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38bb959b-acaf-42b3-869f-3f047c6b1189", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12785,Microsoft.Compute/GetVMImageFromLocation30Min;73785", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:38bb959b-acaf-42b3-869f-3f047c6b1189", - "Expires" : "-1", - "x-ms-request-id" : "ce9cc7ea-c50b-4121-ac4b-4e81eb3f43e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.5.20191212\"\r\n}", - "x-ms-client-request-id" : "d529856f-63f1-474b-aeb7-41b3f8b67331", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.4.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2099e44d-e135-4a52-8d81-b507c3e9c4dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8660109-c80e-4fb7-99d3-c533688d78e6", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12796,Microsoft.Compute/GetVMImageFromLocation30Min;73796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:f8660109-c80e-4fb7-99d3-c533688d78e6", - "Expires" : "-1", - "x-ms-request-id" : "fa773467-deed-4102-b9b2-2cc2400e7f3b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.4.20191212\"\r\n}", - "x-ms-client-request-id" : "2099e44d-e135-4a52-8d81-b507c3e9c4dc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.7.2020110307?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f24856a5-98a7-4910-9a4e-fdfbf65f4376", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "65ee928d-1574-4332-934f-057d68015229", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12790,Microsoft.Compute/GetVMImageFromLocation30Min;73790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:65ee928d-1574-4332-934f-057d68015229", - "Expires" : "-1", - "x-ms-request-id" : "b34dc719-f3ca-4f7f-a9bf-bfa95b4310db", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020110307\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020110307\"\r\n}", - "x-ms-client-request-id" : "f24856a5-98a7-4910-9a4e-fdfbf65f4376", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.9.2022032206?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9bf2cc4-90d7-4dd0-824f-4296b36ab01c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74844ac2-f849-4f14-8f1a-7decc5a1804e", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12787,Microsoft.Compute/GetVMImageFromLocation30Min;73787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:74844ac2-f849-4f14-8f1a-7decc5a1804e", - "Expires" : "-1", - "x-ms-request-id" : "c16a7c89-4a4e-42f9-95b5-992390839330", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2022032206\"\r\n}", - "x-ms-client-request-id" : "a9bf2cc4-90d7-4dd0-824f-4296b36ab01c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.8.2020111204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afbc233c-1203-4f87-9d7a-32e7fa707b57", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7333f3e-7452-464e-9f00-d4f5c2a8f6d2", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12781,Microsoft.Compute/GetVMImageFromLocation30Min;73781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:e7333f3e-7452-464e-9f00-d4f5c2a8f6d2", - "Expires" : "-1", - "x-ms-request-id" : "14f243c1-6a9d-4783-a073-c05ae4d19e42", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020111204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020111204\"\r\n}", - "x-ms-client-request-id" : "afbc233c-1203-4f87-9d7a-32e7fa707b57", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.9.2018100812?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf3aa687-3efd-42a2-bde6-59d57d4d2d98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fec65246-916c-4cbc-aec2-2573860827be", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12782,Microsoft.Compute/GetVMImageFromLocation30Min;73782", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:fec65246-916c-4cbc-aec2-2573860827be", - "Expires" : "-1", - "x-ms-request-id" : "1a43f027-652b-4f7c-8a29-940068330586", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2018100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2018100812\"\r\n}", - "x-ms-client-request-id" : "bf3aa687-3efd-42a2-bde6-59d57d4d2d98", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.7.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d117f0b4-d2ae-4a9a-848f-b7ba88da1fd0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1557cba-f3e2-4c10-8fbf-29c40a5e1ede", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12780,Microsoft.Compute/GetVMImageFromLocation30Min;73780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:c1557cba-f3e2-4c10-8fbf-29c40a5e1ede", - "Expires" : "-1", - "x-ms-request-id" : "18fb0b65-873a-40a7-bbae-501c361e0416", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2021051702\"\r\n}", - "x-ms-client-request-id" : "d117f0b4-d2ae-4a9a-848f-b7ba88da1fd0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.8.2020082423?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "014ad784-5c0a-4916-a0eb-c6a72464bb4b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6311aa29-0901-49e7-b1f5-2eab67ee2f15", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12783,Microsoft.Compute/GetVMImageFromLocation30Min;73783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:6311aa29-0901-49e7-b1f5-2eab67ee2f15", - "Expires" : "-1", - "x-ms-request-id" : "e2deafac-65bb-4352-9bb9-8fe41c502a1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020082423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020082423\"\r\n}", - "x-ms-client-request-id" : "014ad784-5c0a-4916-a0eb-c6a72464bb4b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.8.2020042720?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5635cf59-05ab-475e-bf0c-ebb504df976a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c06048f6-0c99-458a-a581-f353a047ccc4", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12779,Microsoft.Compute/GetVMImageFromLocation30Min;73779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:c06048f6-0c99-458a-a581-f353a047ccc4", - "Expires" : "-1", - "x-ms-request-id" : "b83ef595-39bc-43e1-a572-e229765c431c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020042720\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020042720\"\r\n}", - "x-ms-client-request-id" : "5635cf59-05ab-475e-bf0c-ebb504df976a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.9.2021121604?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d335fe8-f3a6-49ca-a991-dff59c8d83fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f92735e-a71d-45ba-8408-f9d3831ab47e", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12778,Microsoft.Compute/GetVMImageFromLocation30Min;73778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:4f92735e-a71d-45ba-8408-f9d3831ab47e", - "Expires" : "-1", - "x-ms-request-id" : "a6fc931a-4b7f-46d0-9a6c-30bd6c62441e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121604\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2021121604\"\r\n}", - "x-ms-client-request-id" : "9d335fe8-f3a6-49ca-a991-dff59c8d83fe", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.6.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b1c4dccb-440a-4b4c-b445-dd08d902e624", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1ead8eb-a447-42e5-a167-7fd010366852", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12777,Microsoft.Compute/GetVMImageFromLocation30Min;73777", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:b1ead8eb-a447-42e5-a167-7fd010366852", - "Expires" : "-1", - "x-ms-request-id" : "b38f534f-28ec-4522-b67a-629d3e93419d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.2021051102\"\r\n}", - "x-ms-client-request-id" : "b1c4dccb-440a-4b4c-b445-dd08d902e624", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.7.2020020420?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1258ad1c-d0c2-496d-9554-945e132efa10", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2aee42c5-5d62-4dfa-8295-82eb2ad2995d", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12776,Microsoft.Compute/GetVMImageFromLocation30Min;73776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:2aee42c5-5d62-4dfa-8295-82eb2ad2995d", - "Expires" : "-1", - "x-ms-request-id" : "639c05fb-860e-49f6-a512-c7d9691131cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020020420\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020020420\"\r\n}", - "x-ms-client-request-id" : "1258ad1c-d0c2-496d-9554-945e132efa10", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.6.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5ef94e2-e65d-44a5-bb02-b86dcd4f334d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc00a91c-b0dd-4aca-ab14-a139d537e5a1", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12774,Microsoft.Compute/GetVMImageFromLocation30Min;73774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:bc00a91c-b0dd-4aca-ab14-a139d537e5a1", - "Expires" : "-1", - "x-ms-request-id" : "9e4f3927-8261-4c03-869f-d6293beb7c3e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.6.2021051702\"\r\n}", - "x-ms-client-request-id" : "a5ef94e2-e65d-44a5-bb02-b86dcd4f334d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.7.2020082423?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5a6560a-b081-41db-99f8-dcbdf37356e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7fee533-8492-4a37-9b5b-f0f2b9858a75", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12775,Microsoft.Compute/GetVMImageFromLocation30Min;73775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:a7fee533-8492-4a37-9b5b-f0f2b9858a75", - "Expires" : "-1", - "x-ms-request-id" : "02889e0e-8dc0-40fa-af9a-a5382eeecad9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082423\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.7.2020082423\"\r\n}", - "x-ms-client-request-id" : "e5a6560a-b081-41db-99f8-dcbdf37356e6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.5.2021051702?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b44fbf87-bb41-4292-9bdc-2f98557c4a9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f11287b-1e24-4742-8b7c-7f8c2bbe57e3", - "Date" : "Tue, 24 May 2022 13:03:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12773,Microsoft.Compute/GetVMImageFromLocation30Min;73773", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:1f11287b-1e24-4742-8b7c-7f8c2bbe57e3", - "Expires" : "-1", - "x-ms-request-id" : "a66d1069-688e-4471-a2ca-f5e94efc54ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051702\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.5.2021051702\"\r\n}", - "x-ms-client-request-id" : "b44fbf87-bb41-4292-9bdc-2f98557c4a9c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.9.2020111205?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "faf9539c-1bb7-485a-80af-fda6c23be9b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67768b02-dbf7-4725-9127-486c9fdc575b", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12772,Microsoft.Compute/GetVMImageFromLocation30Min;73772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:67768b02-dbf7-4725-9127-486c9fdc575b", - "Expires" : "-1", - "x-ms-request-id" : "31068871-70f0-4021-86ec-14b4bc73dfe0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111205\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.9.2020111205\"\r\n}", - "x-ms-client-request-id" : "faf9539c-1bb7-485a-80af-fda6c23be9b6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.8.2020041422?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "25b27b16-159e-4885-97bd-3f3e2602c87e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c9db057-2c43-457c-a6b7-b80128bc85ff", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12771,Microsoft.Compute/GetVMImageFromLocation30Min;73771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:7c9db057-2c43-457c-a6b7-b80128bc85ff", - "Expires" : "-1", - "x-ms-request-id" : "9b9f361e-8e30-429d-86f0-571dcf3e8095", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2020041422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.8.2020041422\"\r\n}", - "x-ms-client-request-id" : "25b27b16-159e-4885-97bd-3f3e2602c87e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7lvm-gen2/versions/7.5.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f21d2fbe-7545-4564-90fc-82389c60f98b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "868", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "221458f7-90a4-4834-b8f1-f4278de3b913", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12770,Microsoft.Compute/GetVMImageFromLocation30Min;73770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:221458f7-90a4-4834-b8f1-f4278de3b913", - "Expires" : "-1", - "x-ms-request-id" : "088423b5-5b7b-4b95-9470-11032a5c2224", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7lvm-gen2/Versions/7.5.2021051101\"\r\n}", - "x-ms-client-request-id" : "f21d2fbe-7545-4564-90fc-82389c60f98b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d951f94-7ac8-4d36-b93e-06552dc3251c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1669", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7d51a5d9-afe9-46ca-93dc-4823eac21710", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15917,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130323Z:7d51a5d9-afe9-46ca-93dc-4823eac21710", - "Expires" : "-1", - "x-ms-request-id" : "5a7cf7e3-61c5-4d75-b621-7a30cd4106d2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2020100115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2020111301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2021051701\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.202110089\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.202110089\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2021121601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2022032201\"\r\n }\r\n]", - "x-ms-client-request-id" : "7d951f94-7ac8-4d36-b93e-06552dc3251c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions/7.9.202110089?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98ca7c39-8830-4151-b51e-a36d44adafec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11771", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8426287f-c55c-4a08-ac76-f32eb4fd30ff", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12768,Microsoft.Compute/GetVMImageFromLocation30Min;73768", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:8426287f-c55c-4a08-ac76-f32eb4fd30ff", - "Expires" : "-1", - "x-ms-request-id" : "5d6aa66b-a268-4aaf-9077-7437df2a1419", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.202110089\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.202110089\"\r\n}", - "x-ms-client-request-id" : "98ca7c39-8830-4151-b51e-a36d44adafec", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions/7.9.2021051701?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "651fa3fd-5bfd-4a5c-8943-c7e8c1c8dabf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11771", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "015d2ffc-284f-4f57-9211-1436bacac8c1", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12767,Microsoft.Compute/GetVMImageFromLocation30Min;73767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:015d2ffc-284f-4f57-9211-1436bacac8c1", - "Expires" : "-1", - "x-ms-request-id" : "9066a457-82c1-463e-98af-2af6bce60abe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051701\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2021051701\"\r\n}", - "x-ms-client-request-id" : "651fa3fd-5bfd-4a5c-8943-c7e8c1c8dabf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions/7.9.2020111301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "443dce0a-215b-4a1c-acb2-9b5cd4ef5bb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11745", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fafac1fa-e316-4dcf-a5e6-a3547a01f179", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12769,Microsoft.Compute/GetVMImageFromLocation30Min;73769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:fafac1fa-e316-4dcf-a5e6-a3547a01f179", - "Expires" : "-1", - "x-ms-request-id" : "295c1805-8cfb-46be-92d0-ebaeccd3193e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020111301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2020111301\"\r\n}", - "x-ms-client-request-id" : "443dce0a-215b-4a1c-acb2-9b5cd4ef5bb2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions/7.9.2020100115?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb5582a1-6d03-4f6f-bf8e-f33d94f71b28", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2e911cbb-f0a9-4db8-843f-9603e5d450cb", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12766,Microsoft.Compute/GetVMImageFromLocation30Min;73766", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:2e911cbb-f0a9-4db8-843f-9603e5d450cb", - "Expires" : "-1", - "x-ms-request-id" : "06b39454-063f-4a7c-b5e5-6de6884d69ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2020100115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2020100115\"\r\n}", - "x-ms-client-request-id" : "fb5582a1-6d03-4f6f-bf8e-f33d94f71b28", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions/7.9.2022032201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "de656106-5504-4154-91c1-81f9573b04f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1917234-1765-4d9f-94b2-e45551d36438", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12765,Microsoft.Compute/GetVMImageFromLocation30Min;73765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:a1917234-1765-4d9f-94b2-e45551d36438", - "Expires" : "-1", - "x-ms-request-id" : "2b2c0cf4-6f3f-4a51-ae84-875bc6cf8c09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2022032201\"\r\n}", - "x-ms-client-request-id" : "de656106-5504-4154-91c1-81f9573b04f2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7_9/versions/7.9.2021121601?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2b4f31b-0d19-4a84-80a8-f9e5b03780ad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f563f33d-8e20-4bb5-9735-2af11f99378a", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12764,Microsoft.Compute/GetVMImageFromLocation30Min;73764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:f563f33d-8e20-4bb5-9735-2af11f99378a", - "Expires" : "-1", - "x-ms-request-id" : "cbd14668-6e0b-4536-b81a-99b1b6c241e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021121601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7_9/Versions/7.9.2021121601\"\r\n}", - "x-ms-client-request-id" : "f2b4f31b-0d19-4a84-80a8-f9e5b03780ad", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03a237bf-9330-4fee-9517-c89c1e34fed5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1379", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dba91025-1789-46b6-96a0-b5741a87da7f", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15916,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:dba91025-1789-46b6-96a0-b5741a87da7f", - "Expires" : "-1", - "x-ms-request-id" : "6ded4f35-adb2-450a-8498-aa4dcfc84b39", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019050711\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019050711\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019062020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019062020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019100320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019100320\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019101800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019101800\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20191023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.20191023\"\r\n }\r\n]", - "x-ms-client-request-id" : "03a237bf-9330-4fee-9517-c89c1e34fed5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8/versions/8.0.20191023?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6cce1cc-8d5e-4924-866c-6484379d43b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "743", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ce8caab-3fc3-4e7e-8eea-fd9c8d39f855", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12762,Microsoft.Compute/GetVMImageFromLocation30Min;73762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:1ce8caab-3fc3-4e7e-8eea-fd9c8d39f855", - "Expires" : "-1", - "x-ms-request-id" : "4399f01c-fdfe-4468-94fd-2eec8efedce4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20191023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.20191023\"\r\n}", - "x-ms-client-request-id" : "c6cce1cc-8d5e-4924-866c-6484379d43b8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8/versions/8.0.2019050711?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74f8dd63-8987-462e-a8b1-498c81534408", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e655e43-619b-474f-8fc0-ce07176c5b71", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12763,Microsoft.Compute/GetVMImageFromLocation30Min;73763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:7e655e43-619b-474f-8fc0-ce07176c5b71", - "Expires" : "-1", - "x-ms-request-id" : "83e1d27a-3bf0-43ec-89d1-b061f9097613", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019050711\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019050711\"\r\n}", - "x-ms-client-request-id" : "74f8dd63-8987-462e-a8b1-498c81534408", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8/versions/8.0.2019062020?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6ab4912-c6ec-4699-8e79-a897ac2a4dab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db794566-3c4d-42de-b1c4-cf25b52145b6", - "Date" : "Tue, 24 May 2022 13:03:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12761,Microsoft.Compute/GetVMImageFromLocation30Min;73761", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:db794566-3c4d-42de-b1c4-cf25b52145b6", - "Expires" : "-1", - "x-ms-request-id" : "7f14799a-2ea9-4889-b41f-3dcc62c8ab06", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019062020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019062020\"\r\n}", - "x-ms-client-request-id" : "f6ab4912-c6ec-4699-8e79-a897ac2a4dab", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8/versions/8.0.2019101800?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2044679-b42e-489b-bdb1-076e87de2f7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e77511a-3e20-4bbf-bf23-857d8b08ca36", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12760,Microsoft.Compute/GetVMImageFromLocation30Min;73760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:9e77511a-3e20-4bbf-bf23-857d8b08ca36", - "Expires" : "-1", - "x-ms-request-id" : "35a0d651-445e-41e3-9062-41471e968eda", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019101800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019101800\"\r\n}", - "x-ms-client-request-id" : "d2044679-b42e-489b-bdb1-076e87de2f7d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8/versions/8.0.2019100320?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c4e86ed-f27e-44f9-85ca-da5019749235", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ed0fd2b-1aea-41a3-89d8-ed5713517620", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12759,Microsoft.Compute/GetVMImageFromLocation30Min;73759", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130324Z:7ed0fd2b-1aea-41a3-89d8-ed5713517620", - "Expires" : "-1", - "x-ms-request-id" : "0de95b35-5049-4fd1-9f89-bec1b03016a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2019100320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8/Versions/8.0.2019100320\"\r\n}", - "x-ms-client-request-id" : "6c4e86ed-f27e-44f9-85ca-da5019749235", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-BETA/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36b981af-28f0-4d53-a5d8-738ef5a5105c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05f8561e-7132-40c6-ad6f-ec46c95cf1cb", - "Date" : "Tue, 24 May 2022 13:03:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15915,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130325Z:05f8561e-7132-40c6-ad6f-ec46c95cf1cb", - "Expires" : "-1", - "x-ms-request-id" : "6f725516-03d5-437e-9086-7ed187fb675a", - "Body" : "[]", - "x-ms-client-request-id" : "36b981af-28f0-4d53-a5d8-738ef5a5105c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd90f8a8-bc65-488b-a79d-57a99e2d98c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "280", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5d92de5-c1c1-4a97-a14a-3ad3ebc8207a", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15914,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130325Z:c5d92de5-c1c1-4a97-a14a-3ad3ebc8207a", - "Expires" : "-1", - "x-ms-request-id" : "2aa3fbb3-aa92-4274-b004-e79373c4649a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20191024\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-gen2/Versions/8.0.20191024\"\r\n }\r\n]", - "x-ms-client-request-id" : "cd90f8a8-bc65-488b-a79d-57a99e2d98c4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-gen2/versions/8.0.20191024?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "660f6d70-74b1-4946-9b43-d2c6a3a537f1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "861", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdc557a1-a93d-401f-aa04-315436305a8f", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12758,Microsoft.Compute/GetVMImageFromLocation30Min;73758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130325Z:fdc557a1-a93d-401f-aa04-315436305a8f", - "Expires" : "-1", - "x-ms-request-id" : "e564e445-f5cc-444a-a4df-ac599ff46cfe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20191024\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-gen2/Versions/8.0.20191024\"\r\n}", - "x-ms-client-request-id" : "660f6d70-74b1-4946-9b43-d2c6a3a537f1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84190978-bd7f-48a3-85db-a8d6a19b293d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7263", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9da40ced-b1c4-4199-a671-b24b3effd997", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15913,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:9da40ced-b1c4-4199-a671-b24b3effd997", - "Expires" : "-1", - "x-ms-request-id" : "4bd5c575-2d60-4aaa-af71-3450b9f9c32b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.0.20210422\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.0.2021091103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031411\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.0.2022031411\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.20200318\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.20200901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.2021040401\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.2021091103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200509\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.20200509\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200905\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.20200905\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.2021040401\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.2021091203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111909\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2020111909\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2021040401\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2021091103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2022011203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021052301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2021052301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2021081901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2021091103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.5.2021121503\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.5.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032205\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.5.2022032205\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.6.2022051813\"\r\n }\r\n]", - "x-ms-client-request-id" : "84190978-bd7f-48a3-85db-a8d6a19b293d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.1.20200901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7deb98a0-f0b6-4cf5-b6ee-ed8f4f11d759", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37355ec3-b9fd-48d1-aa0e-34d3c9e45d68", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12756,Microsoft.Compute/GetVMImageFromLocation30Min;73756", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:37355ec3-b9fd-48d1-aa0e-34d3c9e45d68", - "Expires" : "-1", - "x-ms-request-id" : "df80e073-5677-492c-82e3-4bc98532d659", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.20200901\"\r\n}", - "x-ms-client-request-id" : "7deb98a0-f0b6-4cf5-b6ee-ed8f4f11d759", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.0.2022031411?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2625d189-b9b6-4c5c-87ec-76972c63649a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "666a4047-ca75-4ca5-8af3-f9999bd0ab52", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12757,Microsoft.Compute/GetVMImageFromLocation30Min;73757", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:666a4047-ca75-4ca5-8af3-f9999bd0ab52", - "Expires" : "-1", - "x-ms-request-id" : "7b3a333b-f1b5-445a-8e93-0bb691aeab0e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031411\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.0.2022031411\"\r\n}", - "x-ms-client-request-id" : "2625d189-b9b6-4c5c-87ec-76972c63649a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.1.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5479fa03-5f02-413f-9d1a-39b3164e5fbd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11769", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ec6cd62-3b55-46f0-a324-11c88b3bed70", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12755,Microsoft.Compute/GetVMImageFromLocation30Min;73755", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:8ec6cd62-3b55-46f0-a324-11c88b3bed70", - "Expires" : "-1", - "x-ms-request-id" : "fde0b5d4-9819-4876-9bb5-6c3319c6678c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.2022031405\"\r\n}", - "x-ms-client-request-id" : "5479fa03-5f02-413f-9d1a-39b3164e5fbd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.3.2021040401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a65675b3-8ad6-4e1f-8383-87c07cd35f63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "20e5064c-8263-4e82-8e4a-d85a31d44b10", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12754,Microsoft.Compute/GetVMImageFromLocation30Min;73754", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:20e5064c-8263-4e82-8e4a-d85a31d44b10", - "Expires" : "-1", - "x-ms-request-id" : "64bc4e1d-193b-4037-8e92-b7cd462bbd4b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2021040401\"\r\n}", - "x-ms-client-request-id" : "a65675b3-8ad6-4e1f-8383-87c07cd35f63", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.0.2021091103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f92005f0-858a-4306-9dea-d7a0dc3c6740", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f28a8ffd-64a4-461e-bfbf-279684d02525", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12749,Microsoft.Compute/GetVMImageFromLocation30Min;73749", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:f28a8ffd-64a4-461e-bfbf-279684d02525", - "Expires" : "-1", - "x-ms-request-id" : "759c3a46-18ba-42d5-b9ca-66c41043e657", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.0.2021091103\"\r\n}", - "x-ms-client-request-id" : "f92005f0-858a-4306-9dea-d7a0dc3c6740", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.3.2022011203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dfb7f3e-5931-465f-b463-2176b9cd507e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e22c8fb-841f-4305-8444-cc0861f950ce", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12751,Microsoft.Compute/GetVMImageFromLocation30Min;73751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:5e22c8fb-841f-4305-8444-cc0861f950ce", - "Expires" : "-1", - "x-ms-request-id" : "058bf05e-1b81-4e1e-bfe8-86e1dc3d44be", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2022011203\"\r\n}", - "x-ms-client-request-id" : "3dfb7f3e-5931-465f-b463-2176b9cd507e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.5.2022032205?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4443480a-9e0c-4bd7-b4e3-b6928620b3f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "22f1aaf3-f2cd-46d0-9873-f5cab8951e1b", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12753,Microsoft.Compute/GetVMImageFromLocation30Min;73753", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:22f1aaf3-f2cd-46d0-9873-f5cab8951e1b", - "Expires" : "-1", - "x-ms-request-id" : "04e58c88-d2f9-4671-9f22-9eaac4b0cf53", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032205\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.5.2022032205\"\r\n}", - "x-ms-client-request-id" : "4443480a-9e0c-4bd7-b4e3-b6928620b3f9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.2.2021040401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3acb7fe-1a3e-4cac-8e63-d8a8dbf1b6ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3252cf3e-1b61-406f-8aaf-bf6e698b5f1a", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12748,Microsoft.Compute/GetVMImageFromLocation30Min;73748", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:3252cf3e-1b61-406f-8aaf-bf6e698b5f1a", - "Expires" : "-1", - "x-ms-request-id" : "8e90f92b-a3e3-4550-a9fc-f5fbab26132d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.2021040401\"\r\n}", - "x-ms-client-request-id" : "a3acb7fe-1a3e-4cac-8e63-d8a8dbf1b6ff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.4.2021081901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a3704b2-dd79-4af7-9cf7-fd8d397b70da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0f59aaf-14d4-4f3b-a2ea-aff87d08d9b7", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12750,Microsoft.Compute/GetVMImageFromLocation30Min;73750", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:a0f59aaf-14d4-4f3b-a2ea-aff87d08d9b7", - "Expires" : "-1", - "x-ms-request-id" : "05a0bb1f-0470-4c11-bfa6-3d71a1c20445", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2021081901\"\r\n}", - "x-ms-client-request-id" : "3a3704b2-dd79-4af7-9cf7-fd8d397b70da", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.4.2021052301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3bde282-2ea3-4a6c-af97-8a75e1eac4de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11769", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe3065c6-2074-4e5c-aa62-45c8d13d816a", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12745,Microsoft.Compute/GetVMImageFromLocation30Min;73745", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:fe3065c6-2074-4e5c-aa62-45c8d13d816a", - "Expires" : "-1", - "x-ms-request-id" : "33df9b00-14d5-489c-8e1e-9544a10f0e56", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021052301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2021052301\"\r\n}", - "x-ms-client-request-id" : "a3bde282-2ea3-4a6c-af97-8a75e1eac4de", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.3.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82106f72-2814-4f5f-88ef-77d857509ffc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38f2652e-3f7a-4416-b664-078cf803432c", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12752,Microsoft.Compute/GetVMImageFromLocation30Min;73752", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:38f2652e-3f7a-4416-b664-078cf803432c", - "Expires" : "-1", - "x-ms-request-id" : "32c1e14f-6ea5-4287-823e-6e7b6a2fbe10", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2022031405\"\r\n}", - "x-ms-client-request-id" : "82106f72-2814-4f5f-88ef-77d857509ffc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.4.2021091103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9cbe9c7-bda7-4429-8d35-ba465a5867f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "009bc4fa-c866-46d4-87d8-4495c06592e9", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12744,Microsoft.Compute/GetVMImageFromLocation30Min;73744", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:009bc4fa-c866-46d4-87d8-4495c06592e9", - "Expires" : "-1", - "x-ms-request-id" : "94053331-e68d-4abe-a3f6-ef4cc4d78fa2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2021091103\"\r\n}", - "x-ms-client-request-id" : "a9cbe9c7-bda7-4429-8d35-ba465a5867f3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.2.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f096469b-b044-4832-9084-99ead935c06d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e5f49a3-340f-4ad8-9f09-d057ca15409b", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12746,Microsoft.Compute/GetVMImageFromLocation30Min;73746", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:8e5f49a3-340f-4ad8-9f09-d057ca15409b", - "Expires" : "-1", - "x-ms-request-id" : "f44c1347-354a-4674-bfbd-3741a1f859e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.2022031405\"\r\n}", - "x-ms-client-request-id" : "f096469b-b044-4832-9084-99ead935c06d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.3.2021091103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf10b1ef-8bbf-4331-9843-0098ef7de476", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6816b372-3e07-44dd-8f9c-0c3086b59af0", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12747,Microsoft.Compute/GetVMImageFromLocation30Min;73747", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:6816b372-3e07-44dd-8f9c-0c3086b59af0", - "Expires" : "-1", - "x-ms-request-id" : "325888f9-7a80-4338-ad19-5af0ef2e370d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2021091103\"\r\n}", - "x-ms-client-request-id" : "cf10b1ef-8bbf-4331-9843-0098ef7de476", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.2.20200905?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9bf74006-b892-4673-9237-99d78ba61de5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "562eecb7-b494-4986-a2d2-6370586e738a", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12743,Microsoft.Compute/GetVMImageFromLocation30Min;73743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:562eecb7-b494-4986-a2d2-6370586e738a", - "Expires" : "-1", - "x-ms-request-id" : "cd642a02-c65d-420e-a51b-e821f3cdad8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200905\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.20200905\"\r\n}", - "x-ms-client-request-id" : "9bf74006-b892-4673-9237-99d78ba61de5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.5.2021121503?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42451a28-d463-490a-8982-89f1451a220a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da2fed28-62ee-4f06-9387-c3ef91c5c32d", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12741,Microsoft.Compute/GetVMImageFromLocation30Min;73741", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:da2fed28-62ee-4f06-9387-c3ef91c5c32d", - "Expires" : "-1", - "x-ms-request-id" : "ae15b485-9188-41bb-a023-3c897284a3e2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121503\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.5.2021121503\"\r\n}", - "x-ms-client-request-id" : "42451a28-d463-490a-8982-89f1451a220a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.2.20200509?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e00e41f-b258-4f22-a1d2-607ff5e4edbd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7067ddd-b858-4dcc-9aaf-27a4ba3c2580", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12742,Microsoft.Compute/GetVMImageFromLocation30Min;73742", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:c7067ddd-b858-4dcc-9aaf-27a4ba3c2580", - "Expires" : "-1", - "x-ms-request-id" : "7a1cbe2c-58b2-4cf1-886f-b385aad3a78c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200509\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.20200509\"\r\n}", - "x-ms-client-request-id" : "2e00e41f-b258-4f22-a1d2-607ff5e4edbd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.6.2022051813?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53adb39f-7dfd-4154-8c5f-f526addf5402", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "813a5ee3-713e-4cc6-8466-c82ac7cae910", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12740,Microsoft.Compute/GetVMImageFromLocation30Min;73740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:813a5ee3-713e-4cc6-8466-c82ac7cae910", - "Expires" : "-1", - "x-ms-request-id" : "086d6c82-401d-4cfa-bb2c-07385f7eb91b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051813\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.6.2022051813\"\r\n}", - "x-ms-client-request-id" : "53adb39f-7dfd-4154-8c5f-f526addf5402", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.1.20200318?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8c99340-7e01-43c0-8755-c9e4c47e5f6f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d83e9aa-5d72-4fc4-b207-91e6ddd88733", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12739,Microsoft.Compute/GetVMImageFromLocation30Min;73739", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:6d83e9aa-5d72-4fc4-b207-91e6ddd88733", - "Expires" : "-1", - "x-ms-request-id" : "732f5d35-6981-4576-8c79-7c0b95137bb7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.20200318\"\r\n}", - "x-ms-client-request-id" : "c8c99340-7e01-43c0-8755-c9e4c47e5f6f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.1.2021040401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7539744c-451b-4786-b90e-22e64ad8cf16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e7c263c-53fd-400c-b86b-6ff2fea605cf", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12738,Microsoft.Compute/GetVMImageFromLocation30Min;73738", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:5e7c263c-53fd-400c-b86b-6ff2fea605cf", - "Expires" : "-1", - "x-ms-request-id" : "3d02ae37-4183-4cee-b05c-d9a0852d5f8f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.2021040401\"\r\n}", - "x-ms-client-request-id" : "7539744c-451b-4786-b90e-22e64ad8cf16", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.1.2021091103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94dfd5ed-cde0-44ff-96d1-3ff909d04561", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42f0dab0-1ea5-4e6c-9097-fe716d166271", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12737,Microsoft.Compute/GetVMImageFromLocation30Min;73737", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:42f0dab0-1ea5-4e6c-9097-fe716d166271", - "Expires" : "-1", - "x-ms-request-id" : "bb4fa5b3-97c7-4dbb-bfee-5fece6372d98", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.1.2021091103\"\r\n}", - "x-ms-client-request-id" : "94dfd5ed-cde0-44ff-96d1-3ff909d04561", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.5.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e78435d2-f488-4690-9fc9-5777541941dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bac06814-9fc5-4d77-a133-ae8eca17fc47", - "Date" : "Tue, 24 May 2022 13:03:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12736,Microsoft.Compute/GetVMImageFromLocation30Min;73736", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:bac06814-9fc5-4d77-a133-ae8eca17fc47", - "Expires" : "-1", - "x-ms-request-id" : "c777eea5-8bee-4ced-912e-e3ecfccbdadd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.5.2022031405\"\r\n}", - "x-ms-client-request-id" : "e78435d2-f488-4690-9fc9-5777541941dc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.3.2020111909?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c8139ca-2f80-44d0-9f07-22f8266fcd41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a5579f8-6647-434f-8c61-68ee9f407d6a", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12735,Microsoft.Compute/GetVMImageFromLocation30Min;73735", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:8a5579f8-6647-434f-8c61-68ee9f407d6a", - "Expires" : "-1", - "x-ms-request-id" : "36b8336f-fcc4-47db-b5f6-a1f098bb4550", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111909\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.3.2020111909\"\r\n}", - "x-ms-client-request-id" : "4c8139ca-2f80-44d0-9f07-22f8266fcd41", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.2.2021091203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ce691d2-2345-406d-a2f0-7a7da0509c44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c93270a3-492b-4bda-b716-aeaeaf0c2482", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12734,Microsoft.Compute/GetVMImageFromLocation30Min;73734", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:c93270a3-492b-4bda-b716-aeaeaf0c2482", - "Expires" : "-1", - "x-ms-request-id" : "064beb10-3c5b-41be-8e01-da41711a3c9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.2.2021091203\"\r\n}", - "x-ms-client-request-id" : "2ce691d2-2345-406d-a2f0-7a7da0509c44", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.4.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97ba4645-07e9-470f-8e01-2aef3782921d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7457e1b9-5f00-49d9-873e-2613fb58a05c", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12733,Microsoft.Compute/GetVMImageFromLocation30Min;73733", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130326Z:7457e1b9-5f00-49d9-873e-2613fb58a05c", - "Expires" : "-1", - "x-ms-request-id" : "b4d003c2-4109-4ec6-bf13-bb174dc7b4d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.4.2022031405\"\r\n}", - "x-ms-client-request-id" : "97ba4645-07e9-470f-8e01-2aef3782921d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-LVM/versions/8.0.20210422?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "64167d23-762e-4be2-8874-92a0655c4d16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31464187-a974-4702-b48b-065b384cebc6", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12732,Microsoft.Compute/GetVMImageFromLocation30Min;73732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:31464187-a974-4702-b48b-065b384cebc6", - "Expires" : "-1", - "x-ms-request-id" : "9e17c6c4-02ec-4f92-bd8d-65f90e1bee4d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-LVM/Versions/8.0.20210422\"\r\n}", - "x-ms-client-request-id" : "64167d23-762e-4be2-8874-92a0655c4d16", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87ddf45d-067a-4176-8b8e-fa84b3823730", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7393", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e833147-7a6f-453a-b77b-f3a0edf958b0", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15912,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:6e833147-7a6f-453a-b77b-f3a0edf958b0", - "Expires" : "-1", - "x-ms-request-id" : "8af1b345-751a-4d8f-bedf-3cfed00abf85", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.0.20210422\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.0.2021091104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.0.2022031412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.20200318\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.20200902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.2021040402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.2021091104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200506\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.20200506\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200903\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.20200903\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.2021040402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.2021091204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111910\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2020111910\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2021040402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2021091104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2022011204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021052302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2021052302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021082402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2021082402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2021091104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121504\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.5.2021121504\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.5.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.5.2022032206\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051814\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.6.2022051814\"\r\n }\r\n]", - "x-ms-client-request-id" : "87ddf45d-067a-4176-8b8e-fa84b3823730", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.3.2020111910?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "65bf5680-7c69-4760-a0dc-d3dcfd35d105", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11768", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd611492-3026-4eac-9542-6eb489cc07b8", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12725,Microsoft.Compute/GetVMImageFromLocation30Min;73725", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:dd611492-3026-4eac-9542-6eb489cc07b8", - "Expires" : "-1", - "x-ms-request-id" : "bc72c5b0-9552-4a7e-8f05-bdc4a544e1f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111910\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2020111910\"\r\n}", - "x-ms-client-request-id" : "65bf5680-7c69-4760-a0dc-d3dcfd35d105", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.1.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3488ef2b-b7b6-45a7-8e61-7efb0350aef4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "efa3e436-eccd-4287-a139-82933157c0c7", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12726,Microsoft.Compute/GetVMImageFromLocation30Min;73726", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:efa3e436-eccd-4287-a139-82933157c0c7", - "Expires" : "-1", - "x-ms-request-id" : "dd455c42-257b-4e09-a723-cd7d1bd26caf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.2022031406\"\r\n}", - "x-ms-client-request-id" : "3488ef2b-b7b6-45a7-8e61-7efb0350aef4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.5.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d76030e-28a9-4cc9-a72c-9802104a690c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "737729d5-f9e8-410f-915e-9cc3e29438d6", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12721,Microsoft.Compute/GetVMImageFromLocation30Min;73721", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:737729d5-f9e8-410f-915e-9cc3e29438d6", - "Expires" : "-1", - "x-ms-request-id" : "a459ea99-910a-45c2-8f20-634381165ece", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.5.2022031406\"\r\n}", - "x-ms-client-request-id" : "3d76030e-28a9-4cc9-a72c-9802104a690c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.4.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd700a20-b119-4912-994d-9ecb8f3556ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ab9ba90-566a-41b8-a773-2b36c76b3c42", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12723,Microsoft.Compute/GetVMImageFromLocation30Min;73723", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:1ab9ba90-566a-41b8-a773-2b36c76b3c42", - "Expires" : "-1", - "x-ms-request-id" : "366c8bcb-4bec-4d34-8680-4f73a9ced07e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2022031406\"\r\n}", - "x-ms-client-request-id" : "dd700a20-b119-4912-994d-9ecb8f3556ba", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.5.2022032206?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cef27ff1-423f-4218-a746-30a580e4e501", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e6623cb-f728-4c9b-b08e-62347dbc65b3", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12722,Microsoft.Compute/GetVMImageFromLocation30Min;73722", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:8e6623cb-f728-4c9b-b08e-62347dbc65b3", - "Expires" : "-1", - "x-ms-request-id" : "fad6c55f-8ffa-445f-aee9-7c4143ea4b1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032206\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.5.2022032206\"\r\n}", - "x-ms-client-request-id" : "cef27ff1-423f-4218-a746-30a580e4e501", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.1.2021040402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef50f676-a22a-4093-971b-2910dbefdd4f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a66ff9d-42d7-4c78-9284-def71fe20765", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12728,Microsoft.Compute/GetVMImageFromLocation30Min;73728", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:4a66ff9d-42d7-4c78-9284-def71fe20765", - "Expires" : "-1", - "x-ms-request-id" : "6c1b68ec-6ede-42fc-adfe-9c1d5d13c228", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.2021040402\"\r\n}", - "x-ms-client-request-id" : "ef50f676-a22a-4093-971b-2910dbefdd4f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.1.20200318?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "659523b0-d1ba-400f-9a79-fe0c7b2beeb1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1130", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "217df2dc-8dda-46c2-9f04-a1d01809a475", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12727,Microsoft.Compute/GetVMImageFromLocation30Min;73727", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:217df2dc-8dda-46c2-9f04-a1d01809a475", - "Expires" : "-1", - "x-ms-request-id" : "25496eba-3fc5-4007-8a7e-a7f9a7abd83b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200318\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.20200318\"\r\n}", - "x-ms-client-request-id" : "659523b0-d1ba-400f-9a79-fe0c7b2beeb1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.1.20200902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fae7d67e-65c4-477b-a080-b930a52b4c52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1130", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1972bdd2-6525-425e-a0be-29a2795a8d5c", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12720,Microsoft.Compute/GetVMImageFromLocation30Min;73720", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:1972bdd2-6525-425e-a0be-29a2795a8d5c", - "Expires" : "-1", - "x-ms-request-id" : "e6a2ac05-08b9-416a-9870-b7d5e6e0431c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.20200902\"\r\n}", - "x-ms-client-request-id" : "fae7d67e-65c4-477b-a080-b930a52b4c52", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.0.20210422?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa0cb1ac-2496-4e56-9123-af06e297512d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1130", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21313fa4-236c-477f-a97f-6057c979e603", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12729,Microsoft.Compute/GetVMImageFromLocation30Min;73729", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:21313fa4-236c-477f-a97f-6057c979e603", - "Expires" : "-1", - "x-ms-request-id" : "608fb920-4ace-4b0c-8b76-91c6fa180b85", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210422\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.0.20210422\"\r\n}", - "x-ms-client-request-id" : "aa0cb1ac-2496-4e56-9123-af06e297512d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.2.20200903?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "659e3f5c-06a1-4a66-a9ce-5034ecc098cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1130", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11740", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da0ba202-5807-43c7-8192-49017eb8456d", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12718,Microsoft.Compute/GetVMImageFromLocation30Min;73718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:da0ba202-5807-43c7-8192-49017eb8456d", - "Expires" : "-1", - "x-ms-request-id" : "a1c26b5e-cb21-44af-b9c7-a30a7fec1ddb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200903\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.20200903\"\r\n}", - "x-ms-client-request-id" : "659e3f5c-06a1-4a66-a9ce-5034ecc098cc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.1.2021091104?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3bce299-b763-41c3-8fe8-3b07cbdfa341", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11740", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a684afd0-ccb7-4212-a0cc-3633bdeb2417", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12713,Microsoft.Compute/GetVMImageFromLocation30Min;73713", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:a684afd0-ccb7-4212-a0cc-3633bdeb2417", - "Expires" : "-1", - "x-ms-request-id" : "42a5f4d3-ecdb-4749-bd98-54adb148a30c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.1.2021091104\"\r\n}", - "x-ms-client-request-id" : "a3bce299-b763-41c3-8fe8-3b07cbdfa341", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.0.2022031412?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0e8c836-281d-4cc1-8305-4cc62315a53b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0582b6da-a3ab-4db8-b7a8-c4d9c5ecea0e", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12730,Microsoft.Compute/GetVMImageFromLocation30Min;73730", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:0582b6da-a3ab-4db8-b7a8-c4d9c5ecea0e", - "Expires" : "-1", - "x-ms-request-id" : "7dfe0918-9356-414e-bd68-92b460d8f6fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.0.2022031412\"\r\n}", - "x-ms-client-request-id" : "c0e8c836-281d-4cc1-8305-4cc62315a53b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.2.2021040402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4298b09e-f027-47e7-86d6-eae7a9b25651", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b633ba4-63d6-4891-9c1b-daf9ec71a316", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12719,Microsoft.Compute/GetVMImageFromLocation30Min;73719", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:2b633ba4-63d6-4891-9c1b-daf9ec71a316", - "Expires" : "-1", - "x-ms-request-id" : "9806f8fd-467b-45e4-9566-9d0dd4163008", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.2021040402\"\r\n}", - "x-ms-client-request-id" : "4298b09e-f027-47e7-86d6-eae7a9b25651", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.2.2021091204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d00bad56-418e-4df6-8a04-90f9625e31f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75a7cfd2-47b8-4dec-a9f1-50c8aef6da38", - "Date" : "Tue, 24 May 2022 13:03:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12715,Microsoft.Compute/GetVMImageFromLocation30Min;73715", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:75a7cfd2-47b8-4dec-a9f1-50c8aef6da38", - "Expires" : "-1", - "x-ms-request-id" : "af38c0a1-68e4-48d8-8d4f-ce04f6b0b37a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.2021091204\"\r\n}", - "x-ms-client-request-id" : "d00bad56-418e-4df6-8a04-90f9625e31f7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.3.2021040402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11d86949-8c8e-4b0c-9380-41ffd5db2d61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96b69bc8-ee6c-4944-a21d-d8fee39619cc", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12717,Microsoft.Compute/GetVMImageFromLocation30Min;73717", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:96b69bc8-ee6c-4944-a21d-d8fee39619cc", - "Expires" : "-1", - "x-ms-request-id" : "2e291215-33be-4fb8-9511-1f16160fb1e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2021040402\"\r\n}", - "x-ms-client-request-id" : "11d86949-8c8e-4b0c-9380-41ffd5db2d61", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.0.2021091104?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6011ece-9c09-4bba-93ec-db54b5895086", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92488759-4234-49cd-9002-3aba4c5f66e1", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12731,Microsoft.Compute/GetVMImageFromLocation30Min;73731", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:92488759-4234-49cd-9002-3aba4c5f66e1", - "Expires" : "-1", - "x-ms-request-id" : "311a445f-1146-4c70-a7c9-505002298e32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.0.2021091104\"\r\n}", - "x-ms-client-request-id" : "a6011ece-9c09-4bba-93ec-db54b5895086", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.5.2021121504?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69e70760-5ff9-4656-a646-725f5bc9ea92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a36c9fc8-7232-4aea-bb93-de9f9a32c7b6", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12714,Microsoft.Compute/GetVMImageFromLocation30Min;73714", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:a36c9fc8-7232-4aea-bb93-de9f9a32c7b6", - "Expires" : "-1", - "x-ms-request-id" : "f5f0813e-d571-412f-9cd2-b2c4f68ebf16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121504\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.5.2021121504\"\r\n}", - "x-ms-client-request-id" : "69e70760-5ff9-4656-a646-725f5bc9ea92", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.2.20200506?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85b679a5-9610-4add-88fa-79aa0b34178f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1130", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5d57021-0323-4841-bb31-f42eed17d53e", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12724,Microsoft.Compute/GetVMImageFromLocation30Min;73724", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:c5d57021-0323-4841-bb31-f42eed17d53e", - "Expires" : "-1", - "x-ms-request-id" : "bcaf1e90-8f6e-4716-a988-4712fa1918c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200506\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.20200506\"\r\n}", - "x-ms-client-request-id" : "85b679a5-9610-4add-88fa-79aa0b34178f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.3.2022011204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0e65395-05c6-4535-a594-a933bb6e40cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c352b95-bb5c-4103-bf5a-6eb3ac2d4d45", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12710,Microsoft.Compute/GetVMImageFromLocation30Min;73710", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:0c352b95-bb5c-4103-bf5a-6eb3ac2d4d45", - "Expires" : "-1", - "x-ms-request-id" : "87de8ebf-fe2b-43d7-a6bc-f59f9389639b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2022011204\"\r\n}", - "x-ms-client-request-id" : "a0e65395-05c6-4535-a594-a933bb6e40cf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.3.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "50cb5769-6488-4490-9db9-aff7d2173508", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4eadfafc-0283-4d63-9ec4-beb281c60505", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12711,Microsoft.Compute/GetVMImageFromLocation30Min;73711", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:4eadfafc-0283-4d63-9ec4-beb281c60505", - "Expires" : "-1", - "x-ms-request-id" : "2a1e6705-2312-42ef-a34e-f55319b0c61f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2022031406\"\r\n}", - "x-ms-client-request-id" : "50cb5769-6488-4490-9db9-aff7d2173508", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.3.2021091104?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91f9eff4-800f-4a35-addf-8485e6160a5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7130661a-524c-4e35-aaed-ac7aab42a559", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12709,Microsoft.Compute/GetVMImageFromLocation30Min;73709", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:7130661a-524c-4e35-aaed-ac7aab42a559", - "Expires" : "-1", - "x-ms-request-id" : "8a6b2354-54cb-41a9-9d22-923c95993962", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.3.2021091104\"\r\n}", - "x-ms-client-request-id" : "91f9eff4-800f-4a35-addf-8485e6160a5a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.2.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb758e3b-dc3c-445a-bfc0-8f562567ff90", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5db8d016-7897-4986-9980-e54798313a3c", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12716,Microsoft.Compute/GetVMImageFromLocation30Min;73716", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:5db8d016-7897-4986-9980-e54798313a3c", - "Expires" : "-1", - "x-ms-request-id" : "4edbcb14-a997-427b-a73c-a729c34d0a0e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.2.2022031406\"\r\n}", - "x-ms-client-request-id" : "fb758e3b-dc3c-445a-bfc0-8f562567ff90", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.4.2021091104?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c3faa7f-0f21-44dd-a322-33d5aeae3b5b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b17bd01-80cb-470a-8583-52642bb93769", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12712,Microsoft.Compute/GetVMImageFromLocation30Min;73712", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:4b17bd01-80cb-470a-8583-52642bb93769", - "Expires" : "-1", - "x-ms-request-id" : "8d5af65e-a469-47ee-8b0f-1059a92dbe49", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2021091104\"\r\n}", - "x-ms-client-request-id" : "8c3faa7f-0f21-44dd-a322-33d5aeae3b5b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.4.2021052302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ccaea67-c9ec-48f3-8710-2d3d69a5c60d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c61df556-5399-4666-935f-51d4cfbd97c1", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12708,Microsoft.Compute/GetVMImageFromLocation30Min;73708", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130327Z:c61df556-5399-4666-935f-51d4cfbd97c1", - "Expires" : "-1", - "x-ms-request-id" : "9045c75a-f492-4629-b5dd-67467b134cce", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021052302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2021052302\"\r\n}", - "x-ms-client-request-id" : "9ccaea67-c9ec-48f3-8710-2d3d69a5c60d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.4.2021082402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "775f0302-12bc-45e0-9fed-9b947ba86a24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8345bff1-c0e7-4517-a8ef-f42ac9e25c92", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12707,Microsoft.Compute/GetVMImageFromLocation30Min;73707", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:8345bff1-c0e7-4517-a8ef-f42ac9e25c92", - "Expires" : "-1", - "x-ms-request-id" : "59bddd04-c375-421b-a157-57e903dcb8f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021082402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.4.2021082402\"\r\n}", - "x-ms-client-request-id" : "775f0302-12bc-45e0-9fed-9b947ba86a24", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8-lvm-gen2/versions/8.6.2022051814?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f18d2d97-291c-442b-ac14-13ad32a2d72a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e4bf2a7-98bc-4d0e-bcb5-32068081b3a6", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12706,Microsoft.Compute/GetVMImageFromLocation30Min;73706", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:5e4bf2a7-98bc-4d0e-bcb5-32068081b3a6", - "Expires" : "-1", - "x-ms-request-id" : "8290e4c0-d931-4cfe-af46-789a7239b6ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051814\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8-lvm-gen2/Versions/8.6.2022051814\"\r\n}", - "x-ms-client-request-id" : "f18d2d97-291c-442b-ac14-13ad32a2d72a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "174ca9c4-092a-4def-9d98-21802da44475", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1949", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3fdf43e3-dc33-43ba-863b-7bb87871df85", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15911,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:3fdf43e3-dc33-43ba-863b-7bb87871df85", - "Expires" : "-1", - "x-ms-request-id" : "604d99ce-1963-4a66-bdfc-c63be2584276", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020020415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020020415\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082711\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020082711\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110711\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020110711\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020112501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040910\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2021040910\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2021091101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031403\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2022031403\"\r\n }\r\n]", - "x-ms-client-request-id" : "174ca9c4-092a-4def-9d98-21802da44475", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2020020415?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af566102-59fd-47f3-9e1e-ec60180dfa87", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98aa89cb-3ef4-4f12-9923-36dfc06b0bff", - "Date" : "Tue, 24 May 2022 13:03:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12705,Microsoft.Compute/GetVMImageFromLocation30Min;73705", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:98aa89cb-3ef4-4f12-9923-36dfc06b0bff", - "Expires" : "-1", - "x-ms-request-id" : "66d9c9de-4f2a-4b8f-b441-361ba3991abd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020020415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020020415\"\r\n}", - "x-ms-client-request-id" : "af566102-59fd-47f3-9e1e-ec60180dfa87", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2021040910?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0722facc-cade-4f51-b79c-66361495c02e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0407b51-1565-4bc3-ab3b-0ad9e7c02d95", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12704,Microsoft.Compute/GetVMImageFromLocation30Min;73704", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:f0407b51-1565-4bc3-ab3b-0ad9e7c02d95", - "Expires" : "-1", - "x-ms-request-id" : "e9a97050-76b0-4936-a887-e2ebb40cf714", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040910\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2021040910\"\r\n}", - "x-ms-client-request-id" : "0722facc-cade-4f51-b79c-66361495c02e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2022031403?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00b5ab33-f178-47e0-a3c1-27274244c397", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b854857-ede9-4c1d-bcd1-32ae53f8d13c", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12703,Microsoft.Compute/GetVMImageFromLocation30Min;73703", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:2b854857-ede9-4c1d-bcd1-32ae53f8d13c", - "Expires" : "-1", - "x-ms-request-id" : "089778b7-10cc-4758-a77c-1dc5c582586b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031403\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2022031403\"\r\n}", - "x-ms-client-request-id" : "00b5ab33-f178-47e0-a3c1-27274244c397", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2020082711?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b745a59a-d673-4f6b-b364-6a184b6e5034", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33769deb-e7ee-46a1-9d40-b8ce6b5deba5", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12701,Microsoft.Compute/GetVMImageFromLocation30Min;73701", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:33769deb-e7ee-46a1-9d40-b8ce6b5deba5", - "Expires" : "-1", - "x-ms-request-id" : "1e956246-4a19-4734-a131-1f480a119072", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082711\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020082711\"\r\n}", - "x-ms-client-request-id" : "b745a59a-d673-4f6b-b364-6a184b6e5034", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2020112501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81accd6a-9f07-4874-95f4-faf51870e630", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75581251-1df6-41fb-b60d-c29bd68299bb", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12702,Microsoft.Compute/GetVMImageFromLocation30Min;73702", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:75581251-1df6-41fb-b60d-c29bd68299bb", - "Expires" : "-1", - "x-ms-request-id" : "9a88274f-acc5-42f9-898e-d40ec7696fa2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020112501\"\r\n}", - "x-ms-client-request-id" : "81accd6a-9f07-4874-95f4-faf51870e630", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2021091101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4a6a794-877c-440a-a76d-77e06b3c724a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9fd101fd-de80-423f-9bf4-aaf2e54d876f", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12699,Microsoft.Compute/GetVMImageFromLocation30Min;73699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:9fd101fd-de80-423f-9bf4-aaf2e54d876f", - "Expires" : "-1", - "x-ms-request-id" : "e3324231-3f45-45e6-8058-6b965c15cbfa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2021091101\"\r\n}", - "x-ms-client-request-id" : "a4a6a794-877c-440a-a76d-77e06b3c724a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1/versions/8.1.2020110711?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "66a5eee6-32ad-496b-a640-28b5f611c48a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd1c568e-8e70-49d8-9248-ea46fc4353e4", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12700,Microsoft.Compute/GetVMImageFromLocation30Min;73700", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130328Z:fd1c568e-8e70-49d8-9248-ea46fc4353e4", - "Expires" : "-1", - "x-ms-request-id" : "7cc09e6d-5429-4dc3-9a7b-add507794898", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110711\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1/Versions/8.1.2020110711\"\r\n}", - "x-ms-client-request-id" : "66a5eee6-32ad-496b-a640-28b5f611c48a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c63413f2-735b-44da-ab19-1bdca8abd983", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1970", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11767", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9c0e89b-a684-4c61-9665-efa0ab7c93bc", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15910,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:f9c0e89b-a684-4c61-9665-efa0ab7c93bc", - "Expires" : "-1", - "x-ms-request-id" : "890b1c46-90ca-4840-8c77-6f273dc71204", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020042511\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020042511\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020082712\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110713\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020110713\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020112401\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2021040801\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2021091103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "c63413f2-735b-44da-ab19-1bdca8abd983", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2020042511?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b776391-0d53-4239-9bd1-3f0ff4566f3d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdbae44b-f74f-4112-a4b6-0f132e9f2d57", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12698,Microsoft.Compute/GetVMImageFromLocation30Min;73698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:fdbae44b-f74f-4112-a4b6-0f132e9f2d57", - "Expires" : "-1", - "x-ms-request-id" : "5f1bc70e-eef3-49d4-a6a2-db9f0592805f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020042511\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020042511\"\r\n}", - "x-ms-client-request-id" : "3b776391-0d53-4239-9bd1-3f0ff4566f3d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2020082712?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28ea1bec-0209-4a36-80bd-ad5aaf8812c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0679dec5-45a6-4ab1-a9ef-51e93529eb21", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12696,Microsoft.Compute/GetVMImageFromLocation30Min;73696", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:0679dec5-45a6-4ab1-a9ef-51e93529eb21", - "Expires" : "-1", - "x-ms-request-id" : "491451fa-7e1c-4668-8e20-2c5633954ede", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020082712\"\r\n}", - "x-ms-client-request-id" : "28ea1bec-0209-4a36-80bd-ad5aaf8812c4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2020112401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97446983-e788-4e5f-817f-1cf2d4213a81", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a4f3183-8c12-4fd6-baad-4659c2dfb8f5", - "Date" : "Tue, 24 May 2022 13:03:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12697,Microsoft.Compute/GetVMImageFromLocation30Min;73697", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:4a4f3183-8c12-4fd6-baad-4659c2dfb8f5", - "Expires" : "-1", - "x-ms-request-id" : "027a6e08-3efe-4330-ada5-761e04091fb2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020112401\"\r\n}", - "x-ms-client-request-id" : "97446983-e788-4e5f-817f-1cf2d4213a81", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2021040801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5c6636e-dacc-414a-aa67-48d7dafe1e2c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac8c4880-a556-4b04-a49f-ceaa9e482f8b", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12695,Microsoft.Compute/GetVMImageFromLocation30Min;73695", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:ac8c4880-a556-4b04-a49f-ceaa9e482f8b", - "Expires" : "-1", - "x-ms-request-id" : "aebde126-9b8b-4cd0-9a7a-53f44d9f90e3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2021040801\"\r\n}", - "x-ms-client-request-id" : "c5c6636e-dacc-414a-aa67-48d7dafe1e2c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2021091103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fca94c5-99a4-4710-ae16-13b0b27f60aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36a03508-4608-44b2-aa0f-1b10c7b4b105", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12694,Microsoft.Compute/GetVMImageFromLocation30Min;73694", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:36a03508-4608-44b2-aa0f-1b10c7b4b105", - "Expires" : "-1", - "x-ms-request-id" : "2b9292c6-84c1-4283-b899-75e5c8172862", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2021091103\"\r\n}", - "x-ms-client-request-id" : "2fca94c5-99a4-4710-ae16-13b0b27f60aa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2020110713?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7636a380-e224-4691-ad80-4ee8b2d4d83f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ea8bd62c-aa44-4359-bc6d-68640846e308", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12693,Microsoft.Compute/GetVMImageFromLocation30Min;73693", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:ea8bd62c-aa44-4359-bc6d-68640846e308", - "Expires" : "-1", - "x-ms-request-id" : "4792c16b-d29d-4b99-8dc7-47ba1eac16b8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110713\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2020110713\"\r\n}", - "x-ms-client-request-id" : "7636a380-e224-4691-ad80-4ee8b2d4d83f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.1-ci/versions/8.1.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c277c795-7f79-4ba8-bff3-d4ecfec1f076", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "196830c6-b865-4f9c-8878-7df23591340a", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12692,Microsoft.Compute/GetVMImageFromLocation30Min;73692", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:196830c6-b865-4f9c-8878-7df23591340a", - "Expires" : "-1", - "x-ms-request-id" : "daaf106d-b402-4e8a-a940-12bf1331db18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.1-ci/Versions/8.1.2022031401\"\r\n}", - "x-ms-client-request-id" : "c277c795-7f79-4ba8-bff3-d4ecfec1f076", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c86476d8-5887-4d24-a1e7-2fd21aa78303", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1393", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b162aee-2205-4d95-a7fa-d96744966b2b", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15909,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130329Z:5b162aee-2205-4d95-a7fa-d96744966b2b", - "Expires" : "-1", - "x-ms-request-id" : "f57c400f-435d-4cfe-bfcf-c885e3cf97b0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020050811\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2020050811\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020270811\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2020270811\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040911\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2021040911\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2021091101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "c86476d8-5887-4d24-a1e7-2fd21aa78303", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.2/versions/8.2.2020270811?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d352ea93-f845-4a2c-9ee8-0223e6ccbf4b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "353f6f3c-535f-432d-9b2f-06db1aa291c4", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12691,Microsoft.Compute/GetVMImageFromLocation30Min;73691", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:353f6f3c-535f-432d-9b2f-06db1aa291c4", - "Expires" : "-1", - "x-ms-request-id" : "6bca153d-df01-4ef0-812d-5327c826fa4d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020270811\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2020270811\"\r\n}", - "x-ms-client-request-id" : "d352ea93-f845-4a2c-9ee8-0223e6ccbf4b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.2/versions/8.2.2021040911?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eaada94e-3ed5-48be-aa4e-677ed628e4d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11739", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "150697d6-1683-4cab-a551-8c4a0222ee4d", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12689,Microsoft.Compute/GetVMImageFromLocation30Min;73689", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:150697d6-1683-4cab-a551-8c4a0222ee4d", - "Expires" : "-1", - "x-ms-request-id" : "5457b725-a138-4cae-bbbd-507f9a97a09a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040911\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2021040911\"\r\n}", - "x-ms-client-request-id" : "eaada94e-3ed5-48be-aa4e-677ed628e4d1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.2/versions/8.2.2021091101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6eb8c003-eeb2-4ac0-829e-06eb4355fbb4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eaacc71c-87c2-4a99-b761-47c0c0df54b3", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12690,Microsoft.Compute/GetVMImageFromLocation30Min;73690", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:eaacc71c-87c2-4a99-b761-47c0c0df54b3", - "Expires" : "-1", - "x-ms-request-id" : "d533100b-2a28-4b4a-a8d3-7ff87e111dc9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2021091101\"\r\n}", - "x-ms-client-request-id" : "6eb8c003-eeb2-4ac0-829e-06eb4355fbb4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.2/versions/8.2.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "16a4a125-e489-48d9-917b-c450dfd45a13", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "720bf39f-1d07-495e-ae06-1fef3e79d460", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12688,Microsoft.Compute/GetVMImageFromLocation30Min;73688", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:720bf39f-1d07-495e-ae06-1fef3e79d460", - "Expires" : "-1", - "x-ms-request-id" : "b096e45a-ad75-4ddc-982f-eb28f3bb5cdd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2022031401\"\r\n}", - "x-ms-client-request-id" : "16a4a125-e489-48d9-917b-c450dfd45a13", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8.2/versions/8.2.2020050811?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56eb5555-d339-491d-82f2-1a79b3655eb7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1863a64c-60e2-4c83-b25d-4e412bea3a5c", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12687,Microsoft.Compute/GetVMImageFromLocation30Min;73687", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:1863a64c-60e2-4c83-b25d-4e412bea3a5c", - "Expires" : "-1", - "x-ms-request-id" : "4ddedabd-feac-4ead-b19f-6167e049133c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020050811\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8.2/Versions/8.2.2020050811\"\r\n}", - "x-ms-client-request-id" : "56eb5555-d339-491d-82f2-1a79b3655eb7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c25ffd3-f320-49ce-94a9-ecd176d24ba2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1998", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27e5f72f-b26f-4e0f-8cde-becc8ce028ee", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15908,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:27e5f72f-b26f-4e0f-8cde-becc8ce028ee", - "Expires" : "-1", - "x-ms-request-id" : "913a84b6-a962-41df-bd22-5adc3cf1a5f2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020042524\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020042524\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082713\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020082713\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020110712\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020112402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2021040802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2021091103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "4c25ffd3-f320-49ce-94a9-ecd176d24ba2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2020112402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc4ab22e-4db8-43f9-93c3-fd73f4c6eec9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f16fad7-c24a-47d3-9e43-7377bf32f879", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12684,Microsoft.Compute/GetVMImageFromLocation30Min;73684", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:8f16fad7-c24a-47d3-9e43-7377bf32f879", - "Expires" : "-1", - "x-ms-request-id" : "9c44da2e-6a74-477a-80aa-06ceb69e0dba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020112402\"\r\n}", - "x-ms-client-request-id" : "dc4ab22e-4db8-43f9-93c3-fd73f4c6eec9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2021040802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a12579c-735a-41fa-85dd-54512e714931", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "22e789aa-f2a9-4437-913f-c307563578ac", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12682,Microsoft.Compute/GetVMImageFromLocation30Min;73682", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:22e789aa-f2a9-4437-913f-c307563578ac", - "Expires" : "-1", - "x-ms-request-id" : "944d4677-e11a-4984-a9fd-8b812785c96f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2021040802\"\r\n}", - "x-ms-client-request-id" : "4a12579c-735a-41fa-85dd-54512e714931", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2020042524?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1446399a-33ed-4d52-9ba1-323ddda9fe92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0e605e7-c9d0-4079-ad59-6eee20a0b36b", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12680,Microsoft.Compute/GetVMImageFromLocation30Min;73680", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:b0e605e7-c9d0-4079-ad59-6eee20a0b36b", - "Expires" : "-1", - "x-ms-request-id" : "bb2cfbdc-b229-458d-9585-dfa5445b7b88", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020042524\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020042524\"\r\n}", - "x-ms-client-request-id" : "1446399a-33ed-4d52-9ba1-323ddda9fe92", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2021091103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c020eabe-4fda-404e-8226-0cb7e6649e86", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6737aeb9-9cb5-4533-97e1-3f60df5fa0e5", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12685,Microsoft.Compute/GetVMImageFromLocation30Min;73685", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:6737aeb9-9cb5-4533-97e1-3f60df5fa0e5", - "Expires" : "-1", - "x-ms-request-id" : "4f1705e8-a0ed-492f-b11c-c817b7bb0466", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2021091103\"\r\n}", - "x-ms-client-request-id" : "c020eabe-4fda-404e-8226-0cb7e6649e86", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4fe49ed-b52e-44d1-8be6-1beaceff286e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11765", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaa4793f-9fba-469a-ba1b-d5e35d146e33", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12683,Microsoft.Compute/GetVMImageFromLocation30Min;73683", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:aaa4793f-9fba-469a-ba1b-d5e35d146e33", - "Expires" : "-1", - "x-ms-request-id" : "abec101e-e184-4f70-9024-6b41c1106a8d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2022031402\"\r\n}", - "x-ms-client-request-id" : "c4fe49ed-b52e-44d1-8be6-1beaceff286e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2020110712?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "661bca8d-8786-48a6-95c8-2cb1b7b4f0ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ddbfedf-45dc-4d29-be7c-0681f84afb2d", - "Date" : "Tue, 24 May 2022 13:03:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12686,Microsoft.Compute/GetVMImageFromLocation30Min;73686", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:8ddbfedf-45dc-4d29-be7c-0681f84afb2d", - "Expires" : "-1", - "x-ms-request-id" : "a9543f06-fd09-4975-ada0-99b707ea96cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020110712\"\r\n}", - "x-ms-client-request-id" : "661bca8d-8786-48a6-95c8-2cb1b7b4f0ff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81-ci-gen2/versions/8.1.2020082713?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d32e931-9712-4b28-acaf-c54ee8bb5e03", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11765", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff811217-c95f-4f36-9270-6adeb09e83e3", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12681,Microsoft.Compute/GetVMImageFromLocation30Min;73681", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:ff811217-c95f-4f36-9270-6adeb09e83e3", - "Expires" : "-1", - "x-ms-request-id" : "460895c7-bcd6-4084-8f78-62cfbe6d6b66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082713\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81-ci-gen2/Versions/8.1.2020082713\"\r\n}", - "x-ms-client-request-id" : "5d32e931-9712-4b28-acaf-c54ee8bb5e03", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1558fc98-cad6-420f-815c-97e2ac8c3b6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1970", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e44fbe66-3f6b-4034-9ce4-b058c5e5ea34", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15907,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130330Z:e44fbe66-3f6b-4034-9ce4-b058c5e5ea34", - "Expires" : "-1", - "x-ms-request-id" : "0971005a-4cf2-492b-8c8a-28a1671f2ad7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020020416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020020416\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020082712\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110710\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020110710\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020112502\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040912\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2021040912\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2021091102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031404\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2022031404\"\r\n }\r\n]", - "x-ms-client-request-id" : "1558fc98-cad6-420f-815c-97e2ac8c3b6b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2020110710?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b79180cc-746e-4fdf-a009-c4b4bfdacf64", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f5a090e-84a5-445d-8222-ae9fa2a7cb2c", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12679,Microsoft.Compute/GetVMImageFromLocation30Min;73679", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:0f5a090e-84a5-445d-8222-ae9fa2a7cb2c", - "Expires" : "-1", - "x-ms-request-id" : "7cd62de5-0c7c-4f48-a585-31fe5cf34aea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020110710\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020110710\"\r\n}", - "x-ms-client-request-id" : "b79180cc-746e-4fdf-a009-c4b4bfdacf64", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2022031404?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f2ef88b-8242-4ead-bb10-59b321bada70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95dd38c4-dc33-4ef7-80ca-958e2fb32ac6", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12678,Microsoft.Compute/GetVMImageFromLocation30Min;73678", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:95dd38c4-dc33-4ef7-80ca-958e2fb32ac6", - "Expires" : "-1", - "x-ms-request-id" : "2fdaa285-3c1f-421a-88ca-4124fbe711eb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031404\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2022031404\"\r\n}", - "x-ms-client-request-id" : "6f2ef88b-8242-4ead-bb10-59b321bada70", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2020020416?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e51d9e26-49f9-4362-931c-12303810b77e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58d73aff-0ec7-4524-b26c-23831c0cc1b7", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12676,Microsoft.Compute/GetVMImageFromLocation30Min;73676", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:58d73aff-0ec7-4524-b26c-23831c0cc1b7", - "Expires" : "-1", - "x-ms-request-id" : "61c32bd4-6a60-482c-86c7-bf4114c5939f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020020416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020020416\"\r\n}", - "x-ms-client-request-id" : "e51d9e26-49f9-4362-931c-12303810b77e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2021040912?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d57de9f5-c756-43c6-a6da-d2c0f5be128f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eee10374-0574-44f2-a583-14636d2a967d", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12675,Microsoft.Compute/GetVMImageFromLocation30Min;73675", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:eee10374-0574-44f2-a583-14636d2a967d", - "Expires" : "-1", - "x-ms-request-id" : "52a137b1-8f3b-49c0-8bd4-a41090954432", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040912\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2021040912\"\r\n}", - "x-ms-client-request-id" : "d57de9f5-c756-43c6-a6da-d2c0f5be128f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2021091102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbf0aceb-fb69-42af-a1cf-950494b88ed0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11738", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c947982f-7b17-44ef-9374-5382f5b3dc2b", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12674,Microsoft.Compute/GetVMImageFromLocation30Min;73674", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:c947982f-7b17-44ef-9374-5382f5b3dc2b", - "Expires" : "-1", - "x-ms-request-id" : "52a367ff-abbe-4bab-b209-1d99a1f103f2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2021091102\"\r\n}", - "x-ms-client-request-id" : "bbf0aceb-fb69-42af-a1cf-950494b88ed0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2020082712?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26148277-a40f-4e59-b225-fcfb3d3e3638", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "639dd503-5900-4b38-8339-3f32f6c9ccbc", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12677,Microsoft.Compute/GetVMImageFromLocation30Min;73677", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:639dd503-5900-4b38-8339-3f32f6c9ccbc", - "Expires" : "-1", - "x-ms-request-id" : "c7657c1c-699d-4ccf-aa5a-9e8511c1fd03", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020082712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020082712\"\r\n}", - "x-ms-client-request-id" : "26148277-a40f-4e59-b225-fcfb3d3e3638", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/81gen2/versions/8.1.2020112502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5af181f-9959-402d-9012-4b5afd4da8f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fbde671-3a91-4f28-8dc5-ec59bfc9f8fc", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12673,Microsoft.Compute/GetVMImageFromLocation30Min;73673", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:7fbde671-3a91-4f28-8dc5-ec59bfc9f8fc", - "Expires" : "-1", - "x-ms-request-id" : "caa988cd-0999-4275-9076-6e87dfceac6e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020112502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/81gen2/Versions/8.1.2020112502\"\r\n}", - "x-ms-client-request-id" : "f5af181f-9959-402d-9012-4b5afd4da8f8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/82gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34a41556-a085-4204-86fe-f7e5bc69375d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17dc2665-eaa7-4eef-9855-ecb3d30b3c22", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15906,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:17dc2665-eaa7-4eef-9855-ecb3d30b3c22", - "Expires" : "-1", - "x-ms-request-id" : "b1245e1b-9127-4bb3-8d69-7956ec4eecc1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020050812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2020050812\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020082712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2020082712\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040912\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2021040912\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2021091102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "34a41556-a085-4204-86fe-f7e5bc69375d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/82gen2/versions/8.2.2021091102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9698c031-f846-418f-8db0-b2ee484ac640", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "330f8e49-cdee-40a4-b741-5c7c985da03a", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12671,Microsoft.Compute/GetVMImageFromLocation30Min;73671", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:330f8e49-cdee-40a4-b741-5c7c985da03a", - "Expires" : "-1", - "x-ms-request-id" : "5d83fc3e-2a4a-4b50-a1d3-d20ef147b2f7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2021091102\"\r\n}", - "x-ms-client-request-id" : "9698c031-f846-418f-8db0-b2ee484ac640", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/82gen2/versions/8.2.2020050812?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7d397e0-778c-4732-9751-81de93faf645", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bf15b38-b681-4844-a0a2-d99827cc5b48", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12669,Microsoft.Compute/GetVMImageFromLocation30Min;73669", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:1bf15b38-b681-4844-a0a2-d99827cc5b48", - "Expires" : "-1", - "x-ms-request-id" : "229acad2-92e4-4df4-84be-38631c56baaf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020050812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2020050812\"\r\n}", - "x-ms-client-request-id" : "f7d397e0-778c-4732-9751-81de93faf645", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/82gen2/versions/8.2.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b5aa451-4c4f-4994-b7d7-a2f77da1ca70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68a36ae4-0c32-467d-939d-8b40546c9434", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12672,Microsoft.Compute/GetVMImageFromLocation30Min;73672", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:68a36ae4-0c32-467d-939d-8b40546c9434", - "Expires" : "-1", - "x-ms-request-id" : "e2d4d0b0-19e8-44e5-8c77-3bc4fd866615", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2022031402\"\r\n}", - "x-ms-client-request-id" : "8b5aa451-4c4f-4994-b7d7-a2f77da1ca70", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/82gen2/versions/8.2.2020082712?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3901f194-b9e8-467c-8333-7fd3d4770877", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35a5389a-65b0-476c-a536-212eb7a93226", - "Date" : "Tue, 24 May 2022 13:03:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12670,Microsoft.Compute/GetVMImageFromLocation30Min;73670", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:35a5389a-65b0-476c-a536-212eb7a93226", - "Expires" : "-1", - "x-ms-request-id" : "7b73420c-e3e3-4988-b2fe-b26724414528", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020082712\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2020082712\"\r\n}", - "x-ms-client-request-id" : "3901f194-b9e8-467c-8333-7fd3d4770877", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/82gen2/versions/8.2.2021040912?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9766169f-ca4f-46e6-a8b4-f0bd532dab18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d41344b3-970b-4e14-b655-bdbf2346856a", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12668,Microsoft.Compute/GetVMImageFromLocation30Min;73668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130331Z:d41344b3-970b-4e14-b655-bdbf2346856a", - "Expires" : "-1", - "x-ms-request-id" : "98cf9a6a-73db-409e-b743-0dfaa25de835", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040912\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/82gen2/Versions/8.2.2021040912\"\r\n}", - "x-ms-client-request-id" : "9766169f-ca4f-46e6-a8b4-f0bd532dab18", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/83-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9000585-e990-4127-931b-164657a874d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1413", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4aadf6a9-8ece-4220-807e-89c24540a5ad", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15905,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:4aadf6a9-8ece-4220-807e-89c24540a5ad", - "Expires" : "-1", - "x-ms-request-id" : "f49df782-2a9f-41a2-9bf2-e786ae8a6561", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111907\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2020111907\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040913\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2021040913\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2021091102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2022011202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "e9000585-e990-4127-931b-164657a874d8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/83-gen2/versions/8.3.2020111907?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "389caec2-10f2-46e3-8986-53d346d60b2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b4badb40-3ee0-4e76-9429-670d2a0f72f4", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12666,Microsoft.Compute/GetVMImageFromLocation30Min;73666", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:b4badb40-3ee0-4e76-9429-670d2a0f72f4", - "Expires" : "-1", - "x-ms-request-id" : "1ab6b1bb-4e7c-49d0-a746-aee88638fe13", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111907\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2020111907\"\r\n}", - "x-ms-client-request-id" : "389caec2-10f2-46e3-8986-53d346d60b2e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/83-gen2/versions/8.3.2021091102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0d9fe42-deb9-4746-ae12-b0f9be011d43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14c89495-ec2a-4b1f-af6e-c05e3079604b", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12665,Microsoft.Compute/GetVMImageFromLocation30Min;73665", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:14c89495-ec2a-4b1f-af6e-c05e3079604b", - "Expires" : "-1", - "x-ms-request-id" : "18d47fb8-bff2-435b-a1b9-0c91692ab256", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2021091102\"\r\n}", - "x-ms-client-request-id" : "c0d9fe42-deb9-4746-ae12-b0f9be011d43", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/83-gen2/versions/8.3.2021040913?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1b6f930-7dfb-4b5a-93a6-3c1c2902db7b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "59999ab5-c4fe-456c-9278-8e9f6db6f23e", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12667,Microsoft.Compute/GetVMImageFromLocation30Min;73667", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:59999ab5-c4fe-456c-9278-8e9f6db6f23e", - "Expires" : "-1", - "x-ms-request-id" : "68fab90b-f88d-4129-a174-283c45c30ab6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040913\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2021040913\"\r\n}", - "x-ms-client-request-id" : "c1b6f930-7dfb-4b5a-93a6-3c1c2902db7b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/83-gen2/versions/8.3.2022011202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b62e8358-74f6-40b9-bd07-1bf344b4d784", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc21f662-e9a6-44fb-a689-ed0037f817a4", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12664,Microsoft.Compute/GetVMImageFromLocation30Min;73664", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:fc21f662-e9a6-44fb-a689-ed0037f817a4", - "Expires" : "-1", - "x-ms-request-id" : "a8f47413-3677-49e8-a779-e10192e75499", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2022011202\"\r\n}", - "x-ms-client-request-id" : "b62e8358-74f6-40b9-bd07-1bf344b4d784", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/83-gen2/versions/8.3.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "442a958b-3ca0-44e1-a665-3d495cb96d17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e033ebce-37b3-439a-8aec-b2e05374ba11", - "Date" : "Tue, 24 May 2022 13:03:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12663,Microsoft.Compute/GetVMImageFromLocation30Min;73663", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:e033ebce-37b3-439a-8aec-b2e05374ba11", - "Expires" : "-1", - "x-ms-request-id" : "84baf14f-972f-4811-8d88-f4d30f3d5a8f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/83-gen2/Versions/8.3.2022031402\"\r\n}", - "x-ms-client-request-id" : "442a958b-3ca0-44e1-a665-3d495cb96d17", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/84-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f354487f-738c-45e2-8550-99227428b7bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ecc6aa19-ff4a-48eb-9823-0041077cfc41", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15904,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:ecc6aa19-ff4a-48eb-9823-0041077cfc41", - "Expires" : "-1", - "x-ms-request-id" : "ed9e7623-4e8f-4e89-9bc4-65755a902f75", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2021053102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081004\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2021081004\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2021091102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "f354487f-738c-45e2-8550-99227428b7bc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/84-gen2/versions/8.4.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aeca30ca-0b7c-4015-9d88-0a13ed7159c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a10199b0-62e6-40a1-9ff1-a6353b4451f1", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12662,Microsoft.Compute/GetVMImageFromLocation30Min;73662", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:a10199b0-62e6-40a1-9ff1-a6353b4451f1", - "Expires" : "-1", - "x-ms-request-id" : "34d4069e-1391-48e0-bfb9-aa83f49569d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2022031402\"\r\n}", - "x-ms-client-request-id" : "aeca30ca-0b7c-4015-9d88-0a13ed7159c5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/84-gen2/versions/8.4.2021081004?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fa4bdb9-104a-4fce-a430-3e9ee3421b1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29685df2-2635-4e47-bf5e-ca0452a47ab5", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12660,Microsoft.Compute/GetVMImageFromLocation30Min;73660", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:29685df2-2635-4e47-bf5e-ca0452a47ab5", - "Expires" : "-1", - "x-ms-request-id" : "926aa0cd-ba05-4168-ae23-37e108ba7f3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081004\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2021081004\"\r\n}", - "x-ms-client-request-id" : "3fa4bdb9-104a-4fce-a430-3e9ee3421b1d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/84-gen2/versions/8.4.2021091102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4df49fb0-bf3d-478f-accc-fa09ef99dcf4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8be1c695-6a75-447a-907c-28d8bd5007a2", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12661,Microsoft.Compute/GetVMImageFromLocation30Min;73661", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:8be1c695-6a75-447a-907c-28d8bd5007a2", - "Expires" : "-1", - "x-ms-request-id" : "e48953a8-6026-41a5-853d-98a4b9814fca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2021091102\"\r\n}", - "x-ms-client-request-id" : "4df49fb0-bf3d-478f-accc-fa09ef99dcf4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/84-gen2/versions/8.4.2021053102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4c885ff-391e-4c03-b9e1-95293fb92185", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "539b2d58-804a-44a9-8fb8-3df75b189ed7", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12659,Microsoft.Compute/GetVMImageFromLocation30Min;73659", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130332Z:539b2d58-804a-44a9-8fb8-3df75b189ed7", - "Expires" : "-1", - "x-ms-request-id" : "5c077235-7452-4aba-bab4-5d22121a1535", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/84-gen2/Versions/8.4.2021053102\"\r\n}", - "x-ms-client-request-id" : "f4c885ff-391e-4c03-b9e1-95293fb92185", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/85-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "64e2ea13-cd31-4bee-9d84-ae6705427e3c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "849", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad1f9c98-7b03-4b8f-ba0e-9077026e5b49", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15903,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130333Z:ad1f9c98-7b03-4b8f-ba0e-9077026e5b49", - "Expires" : "-1", - "x-ms-request-id" : "ae9b3b21-ba86-449e-9da4-f89ccf9d8d66", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2/Versions/8.5.2021121502\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2/Versions/8.5.2022031402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2/Versions/8.5.2022032202\"\r\n }\r\n]", - "x-ms-client-request-id" : "64e2ea13-cd31-4bee-9d84-ae6705427e3c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/85-gen2/versions/8.5.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96fe6308-0a42-4cbd-83d2-660f8f570458", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "498ac1c6-2d24-4b3a-bef2-f2125b8687d1", - "Date" : "Tue, 24 May 2022 13:03:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12657,Microsoft.Compute/GetVMImageFromLocation30Min;73657", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130333Z:498ac1c6-2d24-4b3a-bef2-f2125b8687d1", - "Expires" : "-1", - "x-ms-request-id" : "8e142b97-dc12-4699-84f6-3e11c33c6bc1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2/Versions/8.5.2022031402\"\r\n}", - "x-ms-client-request-id" : "96fe6308-0a42-4cbd-83d2-660f8f570458", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/85-gen2/versions/8.5.2022032202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ddce85b9-d32b-47b1-b664-7281398c8066", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11737", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee2c1a98-58fe-4108-bb9f-3d25c10b95e9", - "Date" : "Tue, 24 May 2022 13:03:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12656,Microsoft.Compute/GetVMImageFromLocation30Min;73656", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130333Z:ee2c1a98-58fe-4108-bb9f-3d25c10b95e9", - "Expires" : "-1", - "x-ms-request-id" : "33a826de-6a1e-4f26-8b6d-40002e23a088", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2/Versions/8.5.2022032202\"\r\n}", - "x-ms-client-request-id" : "ddce85b9-d32b-47b1-b664-7281398c8066", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/85-gen2/versions/8.5.2021121502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8320b280-19dd-4979-963d-2c589ead5654", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "961", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c726add-9358-4b11-8d72-0ea5c7766073", - "Date" : "Tue, 24 May 2022 13:03:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12658,Microsoft.Compute/GetVMImageFromLocation30Min;73658", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130333Z:1c726add-9358-4b11-8d72-0ea5c7766073", - "Expires" : "-1", - "x-ms-request-id" : "34bdc6d5-c293-42c7-b4e9-3153fb86dd66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/85-gen2/Versions/8.5.2021121502\"\r\n}", - "x-ms-client-request-id" : "8320b280-19dd-4979-963d-2c589ead5654", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/86-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc066197-e347-4f6d-a57a-04ae49ef6868", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "285", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9462fbc-bb4e-4c08-b32a-d8d253057ecc", - "Date" : "Tue, 24 May 2022 13:03:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15902,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130333Z:c9462fbc-bb4e-4c08-b32a-d8d253057ecc", - "Expires" : "-1", - "x-ms-request-id" : "59ba670f-5d4d-459e-8a6e-e256ae579e0a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/86-gen2/Versions/8.6.2022051802\"\r\n }\r\n]", - "x-ms-client-request-id" : "bc066197-e347-4f6d-a57a-04ae49ef6868", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/86-gen2/versions/8.6.2022051802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e471c3a6-2735-4584-9720-c7fbc951d5c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1036", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "62ba4a5c-ef64-4be2-ac0e-bd6bfd8eb343", - "Date" : "Tue, 24 May 2022 13:03:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12655,Microsoft.Compute/GetVMImageFromLocation30Min;73655", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:62ba4a5c-ef64-4be2-ac0e-bd6bfd8eb343", - "Expires" : "-1", - "x-ms-request-id" : "1606a0a9-4276-4d15-a20f-a195c571e28f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/86-gen2/Versions/8.6.2022051802\"\r\n}", - "x-ms-client-request-id" : "e471c3a6-2735-4584-9720-c7fbc951d5c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e8db4ef-fe0b-4806-8361-8ef58ce7f45e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1393", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bcdf32c-086e-4d60-a9c2-b6457477204f", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15901,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:5bcdf32c-086e-4d60-a9c2-b6457477204f", - "Expires" : "-1", - "x-ms-request-id" : "8936fd0f-3ee5-4aea-9b50-627e51ce533f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111905\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2020111905\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021041912\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2021041912\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2021091101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2022011201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "6e8db4ef-fe0b-4806-8361-8ef58ce7f45e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_3/versions/8.3.2020111905?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4662312c-e471-443f-ba00-362ecf69aa81", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "016c0bff-f33a-4612-87bc-8df9198e819c", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12654,Microsoft.Compute/GetVMImageFromLocation30Min;73654", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:016c0bff-f33a-4612-87bc-8df9198e819c", - "Expires" : "-1", - "x-ms-request-id" : "e4100b0a-4068-433e-84dd-bfe82fa23e3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2020111905\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2020111905\"\r\n}", - "x-ms-client-request-id" : "4662312c-e471-443f-ba00-362ecf69aa81", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_3/versions/8.3.2021041912?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7af9afcf-30fc-48d6-9cc9-a16b0b714c69", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "630dd500-b437-4e09-969d-4ff10bb103ae", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12653,Microsoft.Compute/GetVMImageFromLocation30Min;73653", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:630dd500-b437-4e09-969d-4ff10bb103ae", - "Expires" : "-1", - "x-ms-request-id" : "f1b3543e-b540-4f9c-be81-a13cd037467b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021041912\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2021041912\"\r\n}", - "x-ms-client-request-id" : "7af9afcf-30fc-48d6-9cc9-a16b0b714c69", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_3/versions/8.3.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d98894be-9ac1-42d3-b2ca-f0b7edaeb1dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d563377b-e583-4c46-9ccd-291d116d28d5", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12652,Microsoft.Compute/GetVMImageFromLocation30Min;73652", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:d563377b-e583-4c46-9ccd-291d116d28d5", - "Expires" : "-1", - "x-ms-request-id" : "4e26bc4b-1a3c-4478-886f-4a0d471b10b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2022031401\"\r\n}", - "x-ms-client-request-id" : "d98894be-9ac1-42d3-b2ca-f0b7edaeb1dd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_3/versions/8.3.2021091101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0a82b5a-6614-4ddb-b3ff-b61fc7893700", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c52e75f3-2058-4ea6-adb1-0e678e1dff7e", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12651,Microsoft.Compute/GetVMImageFromLocation30Min;73651", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:c52e75f3-2058-4ea6-adb1-0e678e1dff7e", - "Expires" : "-1", - "x-ms-request-id" : "37b2da98-e614-434d-bc79-4e85cac4876a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2021091101\"\r\n}", - "x-ms-client-request-id" : "c0a82b5a-6614-4ddb-b3ff-b61fc7893700", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_3/versions/8.3.2022011201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c3816a8-6597-4791-ae4d-74699f6b4c43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "565b7c91-7838-4fba-84cc-f36fcc50f2e6", - "Date" : "Tue, 24 May 2022 13:03:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12650,Microsoft.Compute/GetVMImageFromLocation30Min;73650", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130334Z:565b7c91-7838-4fba-84cc-f36fcc50f2e6", - "Expires" : "-1", - "x-ms-request-id" : "18b7b348-2912-4faa-9abe-fdf3e1658e27", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022011201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_3/Versions/8.3.2022011201\"\r\n}", - "x-ms-client-request-id" : "0c3816a8-6597-4791-ae4d-74699f6b4c43", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1251f20c-7f36-4c41-8b92-54201f11d6f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1115", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdf2f68f-4fde-425d-a4ba-6a48acc08cf6", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15900,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:fdf2f68f-4fde-425d-a4ba-6a48acc08cf6", - "Expires" : "-1", - "x-ms-request-id" : "26dd994c-797b-4cc3-8d1c-2903374a1ed4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2021053101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081003\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2021081003\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2021091101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "1251f20c-7f36-4c41-8b92-54201f11d6f8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_4/versions/8.4.2021081003?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "78dcd93e-4e77-4f2d-aa60-645e808bad90", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98f61f20-46c4-4ca8-8a44-a3a30c3f1860", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12647,Microsoft.Compute/GetVMImageFromLocation30Min;73647", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:98f61f20-46c4-4ca8-8a44-a3a30c3f1860", - "Expires" : "-1", - "x-ms-request-id" : "c5b7b632-ed92-41ba-b70f-42f062db68f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081003\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2021081003\"\r\n}", - "x-ms-client-request-id" : "78dcd93e-4e77-4f2d-aa60-645e808bad90", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_4/versions/8.4.2021053101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7ae19ec-e0f3-435f-9ece-fc07d220a48f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aac182bc-bfee-4113-adb9-7463d43fc20a", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12649,Microsoft.Compute/GetVMImageFromLocation30Min;73649", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:aac182bc-bfee-4113-adb9-7463d43fc20a", - "Expires" : "-1", - "x-ms-request-id" : "8f9ba528-7c77-4223-b7b8-d60abd2c2a32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2021053101\"\r\n}", - "x-ms-client-request-id" : "f7ae19ec-e0f3-435f-9ece-fc07d220a48f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_4/versions/8.4.2021091101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af430a68-17fb-454d-82a5-629a90e9d661", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a149e86c-a251-4d63-a062-a091f4b0079b", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12646,Microsoft.Compute/GetVMImageFromLocation30Min;73646", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:a149e86c-a251-4d63-a062-a091f4b0079b", - "Expires" : "-1", - "x-ms-request-id" : "3c28d5d2-cd75-4a3f-ac87-2efd2f6931c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2021091101\"\r\n}", - "x-ms-client-request-id" : "af430a68-17fb-454d-82a5-629a90e9d661", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_4/versions/8.4.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6e4216d-feb9-4dad-899e-312ab2187563", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b214ddce-f846-4d16-b082-5b2a538e517a", - "Date" : "Tue, 24 May 2022 13:03:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12648,Microsoft.Compute/GetVMImageFromLocation30Min;73648", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:b214ddce-f846-4d16-b082-5b2a538e517a", - "Expires" : "-1", - "x-ms-request-id" : "e196e7b3-2017-4d03-a47a-73b5c908eb71", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_4/Versions/8.4.2022031401\"\r\n}", - "x-ms-client-request-id" : "c6e4216d-feb9-4dad-899e-312ab2187563", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_5/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8278a4e0-a0ea-468f-b243-f031141190b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "837", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11736", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bd95f50-11ac-4acf-8e72-249ba01f265b", - "Date" : "Tue, 24 May 2022 13:03:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15899,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:3bd95f50-11ac-4acf-8e72-249ba01f265b", - "Expires" : "-1", - "x-ms-request-id" : "24d95e4b-6673-492a-995d-e90600676e74", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5/Versions/8.5.2021121501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5/Versions/8.5.2022031401\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5/Versions/8.5.2022032201\"\r\n }\r\n]", - "x-ms-client-request-id" : "8278a4e0-a0ea-468f-b243-f031141190b4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_5/versions/8.5.2021121501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bdbcc086-d21d-4690-ad19-f6e93a9230c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11735", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9bf43fc1-0e2f-4c25-ab05-5cb4dcb147b5", - "Date" : "Tue, 24 May 2022 13:03:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12645,Microsoft.Compute/GetVMImageFromLocation30Min;73645", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:9bf43fc1-0e2f-4c25-ab05-5cb4dcb147b5", - "Expires" : "-1", - "x-ms-request-id" : "a87ea509-5374-4cbc-b173-e79873ab9914", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2021121501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5/Versions/8.5.2021121501\"\r\n}", - "x-ms-client-request-id" : "bdbcc086-d21d-4690-ad19-f6e93a9230c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_5/versions/8.5.2022032201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "94d5cf5f-0dcf-4797-82ae-ac507752b623", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e755177-be18-486b-8020-9efad32d8223", - "Date" : "Tue, 24 May 2022 13:03:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12644,Microsoft.Compute/GetVMImageFromLocation30Min;73644", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:4e755177-be18-486b-8020-9efad32d8223", - "Expires" : "-1", - "x-ms-request-id" : "f7bd1d53-b5c5-49d2-9115-75e4437cab2c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5/Versions/8.5.2022032201\"\r\n}", - "x-ms-client-request-id" : "94d5cf5f-0dcf-4797-82ae-ac507752b623", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_5/versions/8.5.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9158d8ef-e4f8-458a-9b03-f7d9e8153c98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11762", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06c11ce0-bd44-4b46-b547-3cd1c6fe3fbd", - "Date" : "Tue, 24 May 2022 13:03:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12643,Microsoft.Compute/GetVMImageFromLocation30Min;73643", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130335Z:06c11ce0-bd44-4b46-b547-3cd1c6fe3fbd", - "Expires" : "-1", - "x-ms-request-id" : "62e771c4-dcea-4ece-a5b2-33af2c452310", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_5/Versions/8.5.2022031401\"\r\n}", - "x-ms-client-request-id" : "9158d8ef-e4f8-458a-9b03-f7d9e8153c98", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e866ad91-d31d-4fca-b357-f5e8f4134c72", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "281", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11734", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d746ee8a-c530-427f-a343-906eba3447dc", - "Date" : "Tue, 24 May 2022 13:03:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15898,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130336Z:d746ee8a-c530-427f-a343-906eba3447dc", - "Expires" : "-1", - "x-ms-request-id" : "a25e9a96-427e-4224-96e7-b00706a644c4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_6/Versions/8.6.2022051801\"\r\n }\r\n]", - "x-ms-client-request-id" : "e866ad91-d31d-4fca-b357-f5e8f4134c72", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/8_6/versions/8.6.2022051801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34a03569-5d35-427a-ae84-28d7757cad2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37f896a8-afdb-4931-8758-0071c20f0e7c", - "Date" : "Tue, 24 May 2022 13:03:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12642,Microsoft.Compute/GetVMImageFromLocation30Min;73642", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130336Z:37f896a8-afdb-4931-8758-0071c20f0e7c", - "Expires" : "-1", - "x-ms-request-id" : "e3af9e51-0eb3-4a3b-a5ad-290199d348e7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.6.2022051801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/8_6/Versions/8.6.2022051801\"\r\n}", - "x-ms-client-request-id" : "34a03569-5d35-427a-ae84-28d7757cad2a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8d5f7dc-2a2e-49c1-82cc-5a05f110ef5f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "10554", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "298ea346-968f-4af8-bfe2-36f56ba9bcdf", - "Date" : "Tue, 24 May 2022 13:03:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9986,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130336Z:298ea346-968f-4af8-bfe2-36f56ba9bcdf", - "Expires" : "-1", - "x-ms-request-id" : "be4cf443-50d8-4fa9-b828-4ad38616cde8", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm74\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm74\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm75\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm76\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm76-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm77\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm77-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm78\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm78-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm79\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm79-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm8-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm81\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm81-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm82\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm82-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm83\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm83-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm84\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm84-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm85\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-lvm85-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm85-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-raw-ci76\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw-ci76\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-raw69\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw69\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-raw72\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-raw75\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-raw76\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76\"\r\n }\r\n]", - "x-ms-client-request-id" : "e8d5f7dc-2a2e-49c1-82cc-5a05f110ef5f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm74/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f677955-bf4c-4cd6-87c7-10948d685425", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "575", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "710cab22-e24b-4e71-aa39-184705f02806", - "Date" : "Tue, 24 May 2022 13:03:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15897,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130337Z:710cab22-e24b-4e71-aa39-184705f02806", - "Expires" : "-1", - "x-ms-request-id" : "4f8c83d0-5c6b-4fe2-b100-4a4e551d4389", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20200824\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm74/Versions/7.4.20200824\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm74/Versions/7.4.20210125\"\r\n }\r\n]", - "x-ms-client-request-id" : "0f677955-bf4c-4cd6-87c7-10948d685425", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm74/versions/7.4.20200824?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6e9a542-ba99-4572-a8c6-dcc7bfbba113", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "990", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e44d2a9e-f45a-4a61-9f41-d7defdb0c348", - "Date" : "Tue, 24 May 2022 13:03:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12641,Microsoft.Compute/GetVMImageFromLocation30Min;73641", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130337Z:e44d2a9e-f45a-4a61-9f41-d7defdb0c348", - "Expires" : "-1", - "x-ms-request-id" : "08cb9ef8-6b33-478c-a6b9-c14af2130e2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm74\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20200824\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm74/Versions/7.4.20200824\"\r\n}", - "x-ms-client-request-id" : "f6e9a542-ba99-4572-a8c6-dcc7bfbba113", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm74/versions/7.4.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5676609e-2379-4bc3-bd8c-1156cb9e20d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "990", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11761", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb891e54-7976-479a-9018-19c84e02c2a6", - "Date" : "Tue, 24 May 2022 13:03:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12640,Microsoft.Compute/GetVMImageFromLocation30Min;73640", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130337Z:bb891e54-7976-479a-9018-19c84e02c2a6", - "Expires" : "-1", - "x-ms-request-id" : "6d467678-68d2-4307-9159-baa44b466672", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm74\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm74/Versions/7.4.20210125\"\r\n}", - "x-ms-client-request-id" : "5676609e-2379-4bc3-bd8c-1156cb9e20d6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm75/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c614785d-5aaa-49a5-abfd-7f235afda8da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "575", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1202c63-93c3-49b0-8f50-aef53abbde36", - "Date" : "Tue, 24 May 2022 13:03:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15896,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130337Z:d1202c63-93c3-49b0-8f50-aef53abbde36", - "Expires" : "-1", - "x-ms-request-id" : "2e41b2e9-decb-495d-b412-94e7f69d349d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20200824\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm75/Versions/7.5.20200824\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm75/Versions/7.5.20210125\"\r\n }\r\n]", - "x-ms-client-request-id" : "c614785d-5aaa-49a5-abfd-7f235afda8da", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm75/versions/7.5.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54e0844c-a24f-4afd-8e01-2028e7790417", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "982", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db320860-d427-47b6-850a-7339faf22fbb", - "Date" : "Tue, 24 May 2022 13:03:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12639,Microsoft.Compute/GetVMImageFromLocation30Min;73639", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130337Z:db320860-d427-47b6-850a-7339faf22fbb", - "Expires" : "-1", - "x-ms-request-id" : "4886f50e-9674-43b1-a4b9-00bf9c582bf6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm75\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm75/Versions/7.5.20210125\"\r\n}", - "x-ms-client-request-id" : "54e0844c-a24f-4afd-8e01-2028e7790417", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm75/versions/7.5.20200824?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "041b09c0-c46f-4406-8b31-69c97d57cf34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "982", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f87a2674-3d50-4d17-bdc5-1f3d1f06111d", - "Date" : "Tue, 24 May 2022 13:03:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12638,Microsoft.Compute/GetVMImageFromLocation30Min;73638", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130337Z:f87a2674-3d50-4d17-bdc5-1f3d1f06111d", - "Expires" : "-1", - "x-ms-request-id" : "7d28f7ec-824e-4595-9c8c-1a1ebd002215", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm75\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20200824\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm75/Versions/7.5.20200824\"\r\n}", - "x-ms-client-request-id" : "041b09c0-c46f-4406-8b31-69c97d57cf34", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm76/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a889bde0-23c6-40b1-bd70-e7f1b00903bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "575", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02f0a963-5c1c-4f97-b76d-4d0cf8a0c674", - "Date" : "Tue, 24 May 2022 13:03:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15895,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130338Z:02f0a963-5c1c-4f97-b76d-4d0cf8a0c674", - "Expires" : "-1", - "x-ms-request-id" : "b06f5816-2ac7-4b88-afa8-e7d9b38c00cf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190530\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76/Versions/7.6.20190530\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20210207\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76/Versions/7.6.20210207\"\r\n }\r\n]", - "x-ms-client-request-id" : "a889bde0-23c6-40b1-bd70-e7f1b00903bf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm76/versions/7.6.20210207?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06d19458-7612-43e6-b960-433d640adab5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb39355a-a0c8-4996-9b49-7f8f6f499f3b", - "Date" : "Tue, 24 May 2022 13:03:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12636,Microsoft.Compute/GetVMImageFromLocation30Min;73636", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130338Z:eb39355a-a0c8-4996-9b49-7f8f6f499f3b", - "Expires" : "-1", - "x-ms-request-id" : "53c50c67-8843-4a02-94cf-6c42e5da26b7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm76\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20210207\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76/Versions/7.6.20210207\"\r\n}", - "x-ms-client-request-id" : "06d19458-7612-43e6-b960-433d640adab5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm76/versions/7.6.20190530?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a76d1f0-ace7-4e04-a571-586c38367886", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79dff6f4-0259-4e58-b9a1-5eb9b47c6193", - "Date" : "Tue, 24 May 2022 13:03:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12637,Microsoft.Compute/GetVMImageFromLocation30Min;73637", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130338Z:79dff6f4-0259-4e58-b9a1-5eb9b47c6193", - "Expires" : "-1", - "x-ms-request-id" : "a435d5ba-947b-4d6e-a62b-41086336ab02", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm76\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190530\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76/Versions/7.6.20190530\"\r\n}", - "x-ms-client-request-id" : "4a76d1f0-ace7-4e04-a571-586c38367886", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm76-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "633b4ea3-3aa3-417e-a1da-16c7c941d2a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "585", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "579a92a9-8325-40bd-997d-69378ef13ebb", - "Date" : "Tue, 24 May 2022 13:03:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15894,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130338Z:579a92a9-8325-40bd-997d-69378ef13ebb", - "Expires" : "-1", - "x-ms-request-id" : "7cf1fccd-530d-4932-936c-f0148aa1a1e8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76-gen2/Versions/7.6.20200715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20210208\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76-gen2/Versions/7.6.20210208\"\r\n }\r\n]", - "x-ms-client-request-id" : "633b4ea3-3aa3-417e-a1da-16c7c941d2a3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm76-gen2/versions/7.6.20200715?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8022c67c-3a9f-4389-9552-5cb7f3c24b77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "405beed6-e273-4b7e-89c7-bc968a903556", - "Date" : "Tue, 24 May 2022 13:03:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12635,Microsoft.Compute/GetVMImageFromLocation30Min;73635", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:405beed6-e273-4b7e-89c7-bc968a903556", - "Expires" : "-1", - "x-ms-request-id" : "938bcdd2-1f7d-4587-83da-b8c611c1e3cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm76-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76-gen2/Versions/7.6.20200715\"\r\n}", - "x-ms-client-request-id" : "8022c67c-3a9f-4389-9552-5cb7f3c24b77", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm76-gen2/versions/7.6.20210208?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90033a96-ba30-4492-80d5-85d30a5a187f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57ea877f-fb9f-473e-94f9-763995c9a76f", - "Date" : "Tue, 24 May 2022 13:03:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12634,Microsoft.Compute/GetVMImageFromLocation30Min;73634", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:57ea877f-fb9f-473e-94f9-763995c9a76f", - "Expires" : "-1", - "x-ms-request-id" : "c0b02e49-b4d4-4aeb-aacc-c4b15ad9ea64", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm76-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20210208\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm76-gen2/Versions/7.6.20210208\"\r\n}", - "x-ms-client-request-id" : "90033a96-ba30-4492-80d5-85d30a5a187f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54a6475d-9d59-4910-9ad3-93e75f4c9ee6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4985258b-9ce9-4b5b-b2ef-87339f5c00d5", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15893,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:4985258b-9ce9-4b5b-b2ef-87339f5c00d5", - "Expires" : "-1", - "x-ms-request-id" : "b63a59ce-2554-4572-935b-67d1ecb782ed", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20200402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20200402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20200416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20200416\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20200823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20200823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20201103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20201103\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20210125\"\r\n }\r\n]", - "x-ms-client-request-id" : "54a6475d-9d59-4910-9ad3-93e75f4c9ee6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77/versions/7.7.20201103?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53756789-a1ba-4114-b67d-6d2e95b15985", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1af75fa0-9e02-4d67-8a81-91dde4051e9f", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12631,Microsoft.Compute/GetVMImageFromLocation30Min;73631", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:1af75fa0-9e02-4d67-8a81-91dde4051e9f", - "Expires" : "-1", - "x-ms-request-id" : "2bb2e488-bfa3-4caf-97bb-691456bf3dee", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm77\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20201103\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20201103\"\r\n}", - "x-ms-client-request-id" : "53756789-a1ba-4114-b67d-6d2e95b15985", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77/versions/7.7.20200823?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35d3e29f-cde7-44e1-88c3-436acb96686c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b4db66e-c803-4d2a-89b7-c43ce94ffa7d", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12633,Microsoft.Compute/GetVMImageFromLocation30Min;73633", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:6b4db66e-c803-4d2a-89b7-c43ce94ffa7d", - "Expires" : "-1", - "x-ms-request-id" : "3eb27f61-a767-40f8-868c-794a1fdf4401", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm77\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20200823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20200823\"\r\n}", - "x-ms-client-request-id" : "35d3e29f-cde7-44e1-88c3-436acb96686c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77/versions/7.7.20200402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01a2b6bb-5992-48bd-afd6-ddc81aa7a477", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b95ce297-4064-4b1f-9961-fe578e5911be", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12630,Microsoft.Compute/GetVMImageFromLocation30Min;73630", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:b95ce297-4064-4b1f-9961-fe578e5911be", - "Expires" : "-1", - "x-ms-request-id" : "763abdc5-3020-44bb-9760-ad7df75b8621", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm77\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20200402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20200402\"\r\n}", - "x-ms-client-request-id" : "01a2b6bb-5992-48bd-afd6-ddc81aa7a477", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77/versions/7.7.20200416?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "003b38f2-6261-4835-8c53-48c1396d8085", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f581d47c-c59e-4e11-a75f-c43df8771042", - "Date" : "Tue, 24 May 2022 13:03:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12632,Microsoft.Compute/GetVMImageFromLocation30Min;73632", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:f581d47c-c59e-4e11-a75f-c43df8771042", - "Expires" : "-1", - "x-ms-request-id" : "7eaaa775-1686-4a72-9cfe-7a637a2401c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm77\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20200416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20200416\"\r\n}", - "x-ms-client-request-id" : "003b38f2-6261-4835-8c53-48c1396d8085", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77/versions/7.7.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "303efcbc-f2f2-4ae8-acf5-bfb353ca9416", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "83332591-9596-4c12-bde9-351bdca2ecce", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12629,Microsoft.Compute/GetVMImageFromLocation30Min;73629", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130339Z:83332591-9596-4c12-bde9-351bdca2ecce", - "Expires" : "-1", - "x-ms-request-id" : "deaf58cb-4fd4-47c8-83ce-8c529066936a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm77\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm77/Versions/7.7.20210125\"\r\n}", - "x-ms-client-request-id" : "303efcbc-f2f2-4ae8-acf5-bfb353ca9416", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm77-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b1dd068-2381-4ee7-b4b4-f96a77841d3b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75f92661-c3ca-433a-82f8-aad4e6786249", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15892,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:75f92661-c3ca-433a-82f8-aad4e6786249", - "Expires" : "-1", - "x-ms-request-id" : "66837ea1-5695-4088-9327-848eba7e794b", - "Body" : "[]", - "x-ms-client-request-id" : "5b1dd068-2381-4ee7-b4b4-f96a77841d3b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0d18d59-5c9c-41d2-bd02-5a964d6756fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1147", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c905c39-f006-421e-ab24-6568371567a8", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15891,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:6c905c39-f006-421e-ab24-6568371567a8", - "Expires" : "-1", - "x-ms-request-id" : "0a4d4fbc-b58c-421f-8cd2-82cf5c55408c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20200410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20200823\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20201221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20201221\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20210125\"\r\n }\r\n]", - "x-ms-client-request-id" : "d0d18d59-5c9c-41d2-bd02-5a964d6756fb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78/versions/7.8.20200410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "125e6acd-0e81-42ea-a647-d21b99054354", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11760", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc2e8ae1-3887-46b7-b257-f187aedaeb78", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12628,Microsoft.Compute/GetVMImageFromLocation30Min;73628", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:fc2e8ae1-3887-46b7-b257-f187aedaeb78", - "Expires" : "-1", - "x-ms-request-id" : "98c51eb2-05ad-4967-bda2-9584a4f97326", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20200410\"\r\n}", - "x-ms-client-request-id" : "125e6acd-0e81-42ea-a647-d21b99054354", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78/versions/7.8.20200823?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b50d1e5-5551-426f-9f61-221edc4876c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b61dac6-29a3-4920-bbda-e50306c67cda", - "Date" : "Tue, 24 May 2022 13:03:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12627,Microsoft.Compute/GetVMImageFromLocation30Min;73627", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:2b61dac6-29a3-4920-bbda-e50306c67cda", - "Expires" : "-1", - "x-ms-request-id" : "46a7b7b2-e46e-4ba3-b674-42245a086308", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200823\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20200823\"\r\n}", - "x-ms-client-request-id" : "2b50d1e5-5551-426f-9f61-221edc4876c4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78/versions/7.8.20201221?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b4a28ba-08da-4eb5-adde-2ea6d2630b09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7eebac29-aa1f-4334-b669-5fd2f88bdd3c", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12626,Microsoft.Compute/GetVMImageFromLocation30Min;73626", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:7eebac29-aa1f-4334-b669-5fd2f88bdd3c", - "Expires" : "-1", - "x-ms-request-id" : "c12f6036-459f-49dd-aaba-b03d8e960d61", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20201221\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20201221\"\r\n}", - "x-ms-client-request-id" : "7b4a28ba-08da-4eb5-adde-2ea6d2630b09", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78/versions/7.8.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b05d89a-a8bb-4bb7-88b7-6c69176077c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac1ec6ed-ea09-40b0-a802-7ab5fe27f0b0", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12625,Microsoft.Compute/GetVMImageFromLocation30Min;73625", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:ac1ec6ed-ea09-40b0-a802-7ab5fe27f0b0", - "Expires" : "-1", - "x-ms-request-id" : "b19ad349-388f-440a-b99f-48e4d243970f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78/Versions/7.8.20210125\"\r\n}", - "x-ms-client-request-id" : "6b05d89a-a8bb-4bb7-88b7-6c69176077c3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e04f2254-89fd-461d-829e-20ab73ea6444", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c01768d8-1447-4af0-bc80-243e88550573", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15890,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130340Z:c01768d8-1447-4af0-bc80-243e88550573", - "Expires" : "-1", - "x-ms-request-id" : "12817ddc-dac0-4157-b4bb-eb7a968c7dd2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20200715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200824\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20200824\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20201222\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20201222\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20210126\"\r\n }\r\n]", - "x-ms-client-request-id" : "e04f2254-89fd-461d-829e-20ab73ea6444", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78-gen2/versions/7.8.20200715?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "feb7d8db-21d7-4b5f-8d8f-e06f455f2fe3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "838c5007-69cd-42ed-8afd-9104cff9a1d3", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12622,Microsoft.Compute/GetVMImageFromLocation30Min;73622", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:838c5007-69cd-42ed-8afd-9104cff9a1d3", - "Expires" : "-1", - "x-ms-request-id" : "e20fac0d-5b62-4c90-9ffb-852aaca16a6e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20200715\"\r\n}", - "x-ms-client-request-id" : "feb7d8db-21d7-4b5f-8d8f-e06f455f2fe3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78-gen2/versions/7.8.20200824?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41b7eb6d-40b7-402f-8749-f59708c0dbbe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98117c8f-9302-4a82-befe-d691b3f5693b", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12623,Microsoft.Compute/GetVMImageFromLocation30Min;73623", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:98117c8f-9302-4a82-befe-d691b3f5693b", - "Expires" : "-1", - "x-ms-request-id" : "9d44180a-62bc-44e2-a633-b80415793e5f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20200824\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20200824\"\r\n}", - "x-ms-client-request-id" : "41b7eb6d-40b7-402f-8749-f59708c0dbbe", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78-gen2/versions/7.8.20210126?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "044d1b08-fbf8-48d0-813d-8990e1fe3085", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1feef5b-a60c-40f1-9f01-6ad87394dd0e", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12624,Microsoft.Compute/GetVMImageFromLocation30Min;73624", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:f1feef5b-a60c-40f1-9f01-6ad87394dd0e", - "Expires" : "-1", - "x-ms-request-id" : "f84e241e-5781-47ca-aa3d-87c57e672b0d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20210126\"\r\n}", - "x-ms-client-request-id" : "044d1b08-fbf8-48d0-813d-8990e1fe3085", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm78-gen2/versions/7.8.20201222?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8a7abb8-501e-46ed-8c3d-3feb2a0e316f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c435b674-edee-4769-bccd-338dc1ebe7b4", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12621,Microsoft.Compute/GetVMImageFromLocation30Min;73621", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:c435b674-edee-4769-bccd-338dc1ebe7b4", - "Expires" : "-1", - "x-ms-request-id" : "03dde8c7-c6d3-4d1b-863d-f3ba1b08bc06", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm78-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20201222\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm78-gen2/Versions/7.8.20201222\"\r\n}", - "x-ms-client-request-id" : "b8a7abb8-501e-46ed-8c3d-3feb2a0e316f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm79/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bb877bc-edd0-4dda-a205-0fb6463a2f23", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "575", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11733", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e0f331db-6530-4daa-be74-cdd9ad9fa6bb", - "Date" : "Tue, 24 May 2022 13:03:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15889,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:e0f331db-6530-4daa-be74-cdd9ad9fa6bb", - "Expires" : "-1", - "x-ms-request-id" : "9d19cbd9-3ad1-4c9a-9052-13fccb04f1a5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79/Versions/7.9.20210108\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79/Versions/7.9.20210125\"\r\n }\r\n]", - "x-ms-client-request-id" : "6bb877bc-edd0-4dda-a205-0fb6463a2f23", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm79/versions/7.9.20210108?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ccbf6032-2b5f-4530-bb0f-556a188bb3eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11732", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adcaca8c-b716-41eb-b5a6-6c689674b65a", - "Date" : "Tue, 24 May 2022 13:03:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12620,Microsoft.Compute/GetVMImageFromLocation30Min;73620", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:adcaca8c-b716-41eb-b5a6-6c689674b65a", - "Expires" : "-1", - "x-ms-request-id" : "32aa4d03-aed9-4be1-9674-3a2993bac3d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm79\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210108\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79/Versions/7.9.20210108\"\r\n}", - "x-ms-client-request-id" : "ccbf6032-2b5f-4530-bb0f-556a188bb3eb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm79/versions/7.9.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7270af54-57eb-4de1-9700-433b02bf1755", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a9d76cd-3c61-4390-b2ea-2a2658e6b9c8", - "Date" : "Tue, 24 May 2022 13:03:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12619,Microsoft.Compute/GetVMImageFromLocation30Min;73619", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130341Z:1a9d76cd-3c61-4390-b2ea-2a2658e6b9c8", - "Expires" : "-1", - "x-ms-request-id" : "dadcc790-9fbd-41d2-8619-59dbdb638929", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm79\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79/Versions/7.9.20210125\"\r\n}", - "x-ms-client-request-id" : "7270af54-57eb-4de1-9700-433b02bf1755", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm79-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87db063e-fcd1-414e-ab0a-2313c9b0a56a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "585", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7add8426-03ee-4dd9-b522-3ec5aeea0ce1", - "Date" : "Tue, 24 May 2022 13:03:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15888,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:7add8426-03ee-4dd9-b522-3ec5aeea0ce1", - "Expires" : "-1", - "x-ms-request-id" : "416f5060-6de9-4e8f-afac-c4fc64bda561", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210107\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79-gen2/Versions/7.9.20210107\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79-gen2/Versions/7.9.20210126\"\r\n }\r\n]", - "x-ms-client-request-id" : "87db063e-fcd1-414e-ab0a-2313c9b0a56a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm79-gen2/versions/7.9.20210107?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bd50759-8b86-4383-8189-97c5f0497722", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a73abd25-54de-47be-9864-cca13e05a789", - "Date" : "Tue, 24 May 2022 13:03:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12618,Microsoft.Compute/GetVMImageFromLocation30Min;73618", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:a73abd25-54de-47be-9864-cca13e05a789", - "Expires" : "-1", - "x-ms-request-id" : "8a9f9e97-5c6f-4197-bce9-cd93036ded9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm79-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210107\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79-gen2/Versions/7.9.20210107\"\r\n}", - "x-ms-client-request-id" : "7bd50759-8b86-4383-8189-97c5f0497722", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm79-gen2/versions/7.9.20210126?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11eb6766-a612-444e-bfc6-e87f3a0c97a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "465fd779-531c-466e-8cee-210ab9ff92f8", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12617,Microsoft.Compute/GetVMImageFromLocation30Min;73617", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:465fd779-531c-466e-8cee-210ab9ff92f8", - "Expires" : "-1", - "x-ms-request-id" : "5488b769-d69b-4dfa-a6a3-42ea8e4efd51", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm79-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm79-gen2/Versions/7.9.20210126\"\r\n}", - "x-ms-client-request-id" : "11eb6766-a612-444e-bfc6-e87f3a0c97a8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8f442f8-b0aa-4570-95af-3a2a54d4b5d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6b4a579-6e37-44a0-904e-8acecbcdc622", - "Date" : "Tue, 24 May 2022 13:03:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15887,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:b6b4a579-6e37-44a0-904e-8acecbcdc622", - "Expires" : "-1", - "x-ms-request-id" : "3c023e22-05a1-4833-9b20-b7bcf8d244a2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20200402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200831\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20200831\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20210125\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20210409\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20220316\"\r\n }\r\n]", - "x-ms-client-request-id" : "f8f442f8-b0aa-4570-95af-3a2a54d4b5d7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8/versions/8.0.20210409?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11701d0c-0316-43a1-9ec6-63fb841f7116", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4edf3d0-d780-4f7f-b0c1-fb8970decf15", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12615,Microsoft.Compute/GetVMImageFromLocation30Min;73615", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:a4edf3d0-d780-4f7f-b0c1-fb8970decf15", - "Expires" : "-1", - "x-ms-request-id" : "f4f83411-9f21-4eb8-b9fb-691a39be5e01", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20210409\"\r\n}", - "x-ms-client-request-id" : "11701d0c-0316-43a1-9ec6-63fb841f7116", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8/versions/8.0.20220316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67cf796e-e67f-45be-bd52-12e604b1fa44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12894d30-7a65-41a5-bcd3-14e7f5587415", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12614,Microsoft.Compute/GetVMImageFromLocation30Min;73614", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:12894d30-7a65-41a5-bcd3-14e7f5587415", - "Expires" : "-1", - "x-ms-request-id" : "910349cc-78ac-4dc7-86d8-f4066c76dc5b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20220316\"\r\n}", - "x-ms-client-request-id" : "67cf796e-e67f-45be-bd52-12e604b1fa44", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8/versions/8.0.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "114364f2-86cd-4b8d-9d18-b16ec6d03f7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed5cef08-a89e-42ff-b9b5-c9bdf64c498a", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12616,Microsoft.Compute/GetVMImageFromLocation30Min;73616", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:ed5cef08-a89e-42ff-b9b5-c9bdf64c498a", - "Expires" : "-1", - "x-ms-request-id" : "b28ae79c-01ba-481a-92ee-99b642220a5e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20210125\"\r\n}", - "x-ms-client-request-id" : "114364f2-86cd-4b8d-9d18-b16ec6d03f7d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8/versions/8.0.20200831?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9209949-d83d-4b05-8ba3-c6499e9d62cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9daf15cd-fcf6-48eb-87cd-8ae230a6920a", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12613,Microsoft.Compute/GetVMImageFromLocation30Min;73613", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:9daf15cd-fcf6-48eb-87cd-8ae230a6920a", - "Expires" : "-1", - "x-ms-request-id" : "8b62fd3f-9555-426a-807c-c150e2cd78e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200831\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20200831\"\r\n}", - "x-ms-client-request-id" : "b9209949-d83d-4b05-8ba3-c6499e9d62cd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8/versions/8.0.20200402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b92475e2-8175-4534-8ca4-df618197cba9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "987", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a1a54a3-3a49-43e0-9fa4-3be29e398a2f", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12612,Microsoft.Compute/GetVMImageFromLocation30Min;73612", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130342Z:1a1a54a3-3a49-43e0-9fa4-3be29e398a2f", - "Expires" : "-1", - "x-ms-request-id" : "863c2a4e-7c38-4148-92f0-01c0f19f7350", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8/Versions/8.0.20200402\"\r\n}", - "x-ms-client-request-id" : "b92475e2-8175-4534-8ca4-df618197cba9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6307adea-ed0d-46ca-bdce-8c8dbc864cd5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1453", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9720e0f-57ee-4ce8-bce6-685cd28adb94", - "Date" : "Tue, 24 May 2022 13:03:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15886,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130343Z:a9720e0f-57ee-4ce8-bce6-685cd28adb94", - "Expires" : "-1", - "x-ms-request-id" : "f3bd8bef-b633-4c2f-964d-7e509e49ce94", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20200715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200830\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20200830\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20210126\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20210410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20220317\"\r\n }\r\n]", - "x-ms-client-request-id" : "6307adea-ed0d-46ca-bdce-8c8dbc864cd5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8-gen2/versions/8.0.20210410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8238aa30-ac30-4f3f-b16f-33b25a2fc070", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1002", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1b8aeb7-36d6-413a-a83a-8ce1dcbcd09f", - "Date" : "Tue, 24 May 2022 13:03:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12611,Microsoft.Compute/GetVMImageFromLocation30Min;73611", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130343Z:f1b8aeb7-36d6-413a-a83a-8ce1dcbcd09f", - "Expires" : "-1", - "x-ms-request-id" : "8927dc78-7463-4237-9af2-025bd9c41bba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20210410\"\r\n}", - "x-ms-client-request-id" : "8238aa30-ac30-4f3f-b16f-33b25a2fc070", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8-gen2/versions/8.0.20210126?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "494024ad-b376-4137-97e1-43bc9426393b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1002", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70df613a-62db-468e-98ef-f4fe03a24d13", - "Date" : "Tue, 24 May 2022 13:03:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12610,Microsoft.Compute/GetVMImageFromLocation30Min;73610", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130343Z:70df613a-62db-468e-98ef-f4fe03a24d13", - "Expires" : "-1", - "x-ms-request-id" : "5753f76c-3edb-4021-a8ce-4cb4b6684aa0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20210126\"\r\n}", - "x-ms-client-request-id" : "494024ad-b376-4137-97e1-43bc9426393b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8-gen2/versions/8.0.20200830?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a42ff96c-20a1-40fb-9755-ab7376a9f2f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1002", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a1527f0-53fe-4c5a-90b1-78fd86b52866", - "Date" : "Tue, 24 May 2022 13:03:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12608,Microsoft.Compute/GetVMImageFromLocation30Min;73608", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130343Z:6a1527f0-53fe-4c5a-90b1-78fd86b52866", - "Expires" : "-1", - "x-ms-request-id" : "64db1324-0450-4a97-bc7b-ed2bc7f86aab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200830\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20200830\"\r\n}", - "x-ms-client-request-id" : "a42ff96c-20a1-40fb-9755-ab7376a9f2f7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8-gen2/versions/8.0.20220317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "462b879e-f1b2-40fa-872a-b4b945a79f98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "588137e1-cf75-40ad-9c10-f6364b66eacf", - "Date" : "Tue, 24 May 2022 13:03:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12609,Microsoft.Compute/GetVMImageFromLocation30Min;73609", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130343Z:588137e1-cf75-40ad-9c10-f6364b66eacf", - "Expires" : "-1", - "x-ms-request-id" : "ca566974-b307-4609-9b8a-db8ff9de4817", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20220317\"\r\n}", - "x-ms-client-request-id" : "462b879e-f1b2-40fa-872a-b4b945a79f98", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm8-gen2/versions/8.0.20200715?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ca5ee93-aa16-4e33-ab5a-6241b613b54a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1002", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b20f1c2d-c474-4f52-b17c-c196009627db", - "Date" : "Tue, 24 May 2022 13:03:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12607,Microsoft.Compute/GetVMImageFromLocation30Min;73607", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:b20f1c2d-c474-4f52-b17c-c196009627db", - "Expires" : "-1", - "x-ms-request-id" : "951eb4fd-65d5-439d-b2bc-3aa24d8a8657", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm8-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm8-gen2/Versions/8.0.20200715\"\r\n}", - "x-ms-client-request-id" : "3ca5ee93-aa16-4e33-ab5a-6241b613b54a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1babbe80-2261-4f06-8503-eca6fa2e4038", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "310f743e-ed56-4539-89ea-12b2d4ef2d52", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15885,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:310f743e-ed56-4539-89ea-12b2d4ef2d52", - "Expires" : "-1", - "x-ms-request-id" : "652dbf4f-af7a-4623-a5c8-4ea7525c17f0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20200402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200820\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20200820\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20210125\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20210409\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20220316\"\r\n }\r\n]", - "x-ms-client-request-id" : "1babbe80-2261-4f06-8503-eca6fa2e4038", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81/versions/8.1.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "449d6658-a3d9-4ffe-b5f2-b1d503c04960", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2bec247d-e3e5-4bf7-9bcf-c711290e5f7c", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12604,Microsoft.Compute/GetVMImageFromLocation30Min;73604", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:2bec247d-e3e5-4bf7-9bcf-c711290e5f7c", - "Expires" : "-1", - "x-ms-request-id" : "c72c456c-4f18-4cdc-ba59-62a2d4eb2192", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20210125\"\r\n}", - "x-ms-client-request-id" : "449d6658-a3d9-4ffe-b5f2-b1d503c04960", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81/versions/8.1.20200820?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "04b60b3f-3ab2-4d3a-8f06-079ea6cf59d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0325f814-9778-4961-a1c5-2d692a715a1f", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12606,Microsoft.Compute/GetVMImageFromLocation30Min;73606", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:0325f814-9778-4961-a1c5-2d692a715a1f", - "Expires" : "-1", - "x-ms-request-id" : "e9afad0a-ce4c-416e-8789-68dbed1712f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200820\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20200820\"\r\n}", - "x-ms-client-request-id" : "04b60b3f-3ab2-4d3a-8f06-079ea6cf59d1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81/versions/8.1.20200402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5917cf76-c5b8-49a7-a878-0a5a401101fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "470a5ead-7344-4230-abaa-f4d682a270f5", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12605,Microsoft.Compute/GetVMImageFromLocation30Min;73605", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:470a5ead-7344-4230-abaa-f4d682a270f5", - "Expires" : "-1", - "x-ms-request-id" : "d293b304-7ea7-4a76-aaa1-9cf8c4bce9f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20200402\"\r\n}", - "x-ms-client-request-id" : "5917cf76-c5b8-49a7-a878-0a5a401101fc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81/versions/8.1.20220316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b56f56fb-aad9-4be6-b303-12673be1ca13", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f374e7b8-08a6-450a-b05b-d81da8afc08c", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12603,Microsoft.Compute/GetVMImageFromLocation30Min;73603", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:f374e7b8-08a6-450a-b05b-d81da8afc08c", - "Expires" : "-1", - "x-ms-request-id" : "d3096d1d-e731-4913-90c3-17dfe15372a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20220316\"\r\n}", - "x-ms-client-request-id" : "b56f56fb-aad9-4be6-b303-12673be1ca13", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81/versions/8.1.20210409?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc173fa6-d88c-485e-bf33-ec73be5532d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48d46d08-e27e-4267-adf5-2bbd998b0f6c", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12602,Microsoft.Compute/GetVMImageFromLocation30Min;73602", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130344Z:48d46d08-e27e-4267-adf5-2bbd998b0f6c", - "Expires" : "-1", - "x-ms-request-id" : "ec33feb8-532c-4f92-aef3-d7a76f459c71", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81/Versions/8.1.20210409\"\r\n}", - "x-ms-client-request-id" : "cc173fa6-d88c-485e-bf33-ec73be5532d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2caee7d4-17c7-45b1-b513-800b1b3f59c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1458", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "47ad2548-b9d4-440c-93eb-1dea8a8410ed", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15884,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:47ad2548-b9d4-440c-93eb-1dea8a8410ed", - "Expires" : "-1", - "x-ms-request-id" : "7fc4c4d6-5d11-44b4-b210-f3860de00950", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20200715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20200821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20210126\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20210410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20220317\"\r\n }\r\n]", - "x-ms-client-request-id" : "2caee7d4-17c7-45b1-b513-800b1b3f59c2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81-gen2/versions/8.1.20220317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba03b904-ff75-4c1e-8a54-b3dd399f4ec7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbc25eb9-ace0-4648-8b07-53cef58c94d6", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12601,Microsoft.Compute/GetVMImageFromLocation30Min;73601", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:fbc25eb9-ace0-4648-8b07-53cef58c94d6", - "Expires" : "-1", - "x-ms-request-id" : "4a25b465-1d28-423e-976c-082bcbfb1653", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20220317\"\r\n}", - "x-ms-client-request-id" : "ba03b904-ff75-4c1e-8a54-b3dd399f4ec7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81-gen2/versions/8.1.20210410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e86cdd2-3978-41dc-9c93-f0f470d53bc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "55d26bfb-1b2c-4720-a1b9-64a0a11975b7", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12599,Microsoft.Compute/GetVMImageFromLocation30Min;73599", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:55d26bfb-1b2c-4720-a1b9-64a0a11975b7", - "Expires" : "-1", - "x-ms-request-id" : "213466a5-a72b-43de-b042-0126ff69ca63", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20210410\"\r\n}", - "x-ms-client-request-id" : "8e86cdd2-3978-41dc-9c93-f0f470d53bc0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81-gen2/versions/8.1.20200715?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c01342d-fee1-4ebf-aecd-a327c6e175d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "78ff5d9b-7f40-4d5f-85a7-b2f1483ee135", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12597,Microsoft.Compute/GetVMImageFromLocation30Min;73597", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:78ff5d9b-7f40-4d5f-85a7-b2f1483ee135", - "Expires" : "-1", - "x-ms-request-id" : "88ad572e-ba33-49a1-af9c-c0774bf9b7c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20200715\"\r\n}", - "x-ms-client-request-id" : "2c01342d-fee1-4ebf-aecd-a327c6e175d4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81-gen2/versions/8.1.20210126?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "325bdfba-2d35-4ce4-b102-7c8a49c063d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99a6e0a7-29d9-478f-b9a7-344401e703f3", - "Date" : "Tue, 24 May 2022 13:03:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12598,Microsoft.Compute/GetVMImageFromLocation30Min;73598", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:99a6e0a7-29d9-478f-b9a7-344401e703f3", - "Expires" : "-1", - "x-ms-request-id" : "a39cce87-67ea-4974-a14c-e4e0b730b104", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20210126\"\r\n}", - "x-ms-client-request-id" : "325bdfba-2d35-4ce4-b102-7c8a49c063d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm81-gen2/versions/8.1.20200821?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d569139-c0fa-4dd2-913e-aa4458f65b5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ca0253e-78ef-46f8-8b8e-808d6cc9da79", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12600,Microsoft.Compute/GetVMImageFromLocation30Min;73600", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:3ca0253e-78ef-46f8-8b8e-808d6cc9da79", - "Expires" : "-1", - "x-ms-request-id" : "dca20418-d4ef-4045-975b-2514b6d1b6f7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm81-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.20200821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm81-gen2/Versions/8.1.20200821\"\r\n}", - "x-ms-client-request-id" : "5d569139-c0fa-4dd2-913e-aa4458f65b5a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "233cab10-9837-4ee8-87fb-5d8fc8270105", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b488375f-6133-48fa-88aa-310cd2620e57", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15883,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:b488375f-6133-48fa-88aa-310cd2620e57", - "Expires" : "-1", - "x-ms-request-id" : "6ba19eb5-2248-4010-9024-d8c7757648fe", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200512\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20200512\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200820\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20200820\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210128\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20210128\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20210410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20220316\"\r\n }\r\n]", - "x-ms-client-request-id" : "233cab10-9837-4ee8-87fb-5d8fc8270105", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82/versions/8.2.20200820?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f84c6830-fd93-4ca4-8254-3c8a4ae2a77f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "84f75498-37d0-493a-abec-5bbcb3ac1210", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12596,Microsoft.Compute/GetVMImageFromLocation30Min;73596", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:84f75498-37d0-493a-abec-5bbcb3ac1210", - "Expires" : "-1", - "x-ms-request-id" : "46640e6f-36a5-4f3c-b000-263073b6db52", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200820\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20200820\"\r\n}", - "x-ms-client-request-id" : "f84c6830-fd93-4ca4-8254-3c8a4ae2a77f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82/versions/8.2.20200512?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "461b1faf-28c9-4a4c-8fe2-ddc0e20023a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6c520b5-70cb-4e9f-b632-134c79e1f1b6", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12595,Microsoft.Compute/GetVMImageFromLocation30Min;73595", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:c6c520b5-70cb-4e9f-b632-134c79e1f1b6", - "Expires" : "-1", - "x-ms-request-id" : "ef297de6-b8b0-4dc0-a8b8-37a756dc91a5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200512\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20200512\"\r\n}", - "x-ms-client-request-id" : "461b1faf-28c9-4a4c-8fe2-ddc0e20023a1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82/versions/8.2.20220316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d458b1b7-eed8-4ea1-a51f-f18dd5284fc0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11731", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4dae8c3e-b37f-4398-bf35-6971e1387a30", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12594,Microsoft.Compute/GetVMImageFromLocation30Min;73594", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:4dae8c3e-b37f-4398-bf35-6971e1387a30", - "Expires" : "-1", - "x-ms-request-id" : "663656fe-2f80-4c7d-bdc3-c7022df92888", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20220316\"\r\n}", - "x-ms-client-request-id" : "d458b1b7-eed8-4ea1-a51f-f18dd5284fc0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82/versions/8.2.20210410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7493473b-adae-448d-85d0-e0facd30d2d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b93d2bb-3375-492d-aab3-5daf0ea6eae2", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12593,Microsoft.Compute/GetVMImageFromLocation30Min;73593", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:8b93d2bb-3375-492d-aab3-5daf0ea6eae2", - "Expires" : "-1", - "x-ms-request-id" : "5d5e05e9-e7f5-4f54-9c92-55a39b3875d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20210410\"\r\n}", - "x-ms-client-request-id" : "7493473b-adae-448d-85d0-e0facd30d2d4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82/versions/8.2.20210128?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfbf6c59-8c30-44ec-984e-00e79769deac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e23dd52-2b6e-4156-b8c0-7f4eeae0b8a6", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12592,Microsoft.Compute/GetVMImageFromLocation30Min;73592", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130345Z:0e23dd52-2b6e-4156-b8c0-7f4eeae0b8a6", - "Expires" : "-1", - "x-ms-request-id" : "1aaf7094-a152-47dc-b75a-c1f5b1ce6613", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210128\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82/Versions/8.2.20210128\"\r\n}", - "x-ms-client-request-id" : "bfbf6c59-8c30-44ec-984e-00e79769deac", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5854aaa3-227d-4d08-ab36-e160954248a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1458", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07da6a92-95bb-4b56-b842-71b2474278b2", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15882,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130346Z:07da6a92-95bb-4b56-b842-71b2474278b2", - "Expires" : "-1", - "x-ms-request-id" : "4f267c3c-b309-4543-a9e2-11c1620173f5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20200715\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20200821\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210129\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20210129\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20210410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20220317\"\r\n }\r\n]", - "x-ms-client-request-id" : "5854aaa3-227d-4d08-ab36-e160954248a3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82-gen2/versions/8.2.20220317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "571de373-e992-4038-a84d-7f912b51a4ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8fbadcd7-8d6c-41e5-96d8-a80a07140478", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12590,Microsoft.Compute/GetVMImageFromLocation30Min;73590", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130346Z:8fbadcd7-8d6c-41e5-96d8-a80a07140478", - "Expires" : "-1", - "x-ms-request-id" : "3fe517e5-f632-49fd-8813-9aec87df30fe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20220317\"\r\n}", - "x-ms-client-request-id" : "571de373-e992-4038-a84d-7f912b51a4ae", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82-gen2/versions/8.2.20200821?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c34df2fa-33e3-4f80-a912-9340ed5e17b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f0def0d9-8b01-4227-aa94-9327f1726e95", - "Date" : "Tue, 24 May 2022 13:03:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12591,Microsoft.Compute/GetVMImageFromLocation30Min;73591", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130346Z:f0def0d9-8b01-4227-aa94-9327f1726e95", - "Expires" : "-1", - "x-ms-request-id" : "ea6f221f-068d-49d3-9e5d-5f6969fb412a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200821\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20200821\"\r\n}", - "x-ms-client-request-id" : "c34df2fa-33e3-4f80-a912-9340ed5e17b8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82-gen2/versions/8.2.20210129?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "803fc092-f909-4c08-9d48-e65c63d3220c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74f17a5b-25a9-4e85-8e45-274c40ebdf57", - "Date" : "Tue, 24 May 2022 13:03:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12589,Microsoft.Compute/GetVMImageFromLocation30Min;73589", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130346Z:74f17a5b-25a9-4e85-8e45-274c40ebdf57", - "Expires" : "-1", - "x-ms-request-id" : "47bf3ebb-c406-471a-a133-ba0e55f8216d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210129\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20210129\"\r\n}", - "x-ms-client-request-id" : "803fc092-f909-4c08-9d48-e65c63d3220c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82-gen2/versions/8.2.20200715?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cf0b506-54f1-4594-b798-766f70c5e154", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10b6cd8c-49a4-4a3c-8447-ad3fb13f08af", - "Date" : "Tue, 24 May 2022 13:03:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12588,Microsoft.Compute/GetVMImageFromLocation30Min;73588", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130346Z:10b6cd8c-49a4-4a3c-8447-ad3fb13f08af", - "Expires" : "-1", - "x-ms-request-id" : "c0f3f3f4-4405-4d91-a156-08cca32d0aa8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20200715\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20200715\"\r\n}", - "x-ms-client-request-id" : "2cf0b506-54f1-4594-b798-766f70c5e154", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm82-gen2/versions/8.2.20210410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "635ba089-f5f7-4a8d-a1ce-cc5ec651b95a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "080149a8-86d2-4945-afd5-62c100378cb7", - "Date" : "Tue, 24 May 2022 13:03:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12587,Microsoft.Compute/GetVMImageFromLocation30Min;73587", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130346Z:080149a8-86d2-4945-afd5-62c100378cb7", - "Expires" : "-1", - "x-ms-request-id" : "65854c60-23b7-4f7d-8da9-3ac4af101096", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm82-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm82-gen2/Versions/8.2.20210410\"\r\n}", - "x-ms-client-request-id" : "635ba089-f5f7-4a8d-a1ce-cc5ec651b95a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e56a8138-0cd2-42ba-9500-6ff327b6db2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1147", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6eaf77bd-2e2a-4fc9-8320-af870630aac0", - "Date" : "Tue, 24 May 2022 13:03:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15881,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:6eaf77bd-2e2a-4fc9-8320-af870630aac0", - "Expires" : "-1", - "x-ms-request-id" : "7cd7581b-f4ca-4cf5-adcd-e0b75f943848", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20201109\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20201109\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20210125\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20210409\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20220316\"\r\n }\r\n]", - "x-ms-client-request-id" : "e56a8138-0cd2-42ba-9500-6ff327b6db2b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83/versions/8.3.20201109?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "335362fd-fbbf-4126-8356-aa367e2c5080", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a5d7bf1-6db1-4b9f-86a8-71ff11929ca1", - "Date" : "Tue, 24 May 2022 13:03:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12585,Microsoft.Compute/GetVMImageFromLocation30Min;73585", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:2a5d7bf1-6db1-4b9f-86a8-71ff11929ca1", - "Expires" : "-1", - "x-ms-request-id" : "1a6c1454-cfaa-4f14-9fe5-3d09cfcdfe88", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20201109\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20201109\"\r\n}", - "x-ms-client-request-id" : "335362fd-fbbf-4126-8356-aa367e2c5080", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83/versions/8.3.20210409?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "edf020ef-23ec-400f-bcd6-0d99dd5729d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9569a8d-abd8-49a6-8116-cc57be660bd4", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12586,Microsoft.Compute/GetVMImageFromLocation30Min;73586", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:c9569a8d-abd8-49a6-8116-cc57be660bd4", - "Expires" : "-1", - "x-ms-request-id" : "1a3f6afb-16f0-4604-b273-9fe794bef44a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20210409\"\r\n}", - "x-ms-client-request-id" : "edf020ef-23ec-400f-bcd6-0d99dd5729d4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83/versions/8.3.20220316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad7fc1b9-7dfa-4434-8051-3c3d537f7275", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c41d352d-75b8-485b-be84-0a9cac627d7f", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12584,Microsoft.Compute/GetVMImageFromLocation30Min;73584", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:c41d352d-75b8-485b-be84-0a9cac627d7f", - "Expires" : "-1", - "x-ms-request-id" : "54b363c1-026b-4da8-9d14-641beec55556", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20220316\"\r\n}", - "x-ms-client-request-id" : "ad7fc1b9-7dfa-4434-8051-3c3d537f7275", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83/versions/8.3.20210125?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c0e2250-d8ee-4de1-b2de-b928544fe29c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "989", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5726a6a-54e9-4ead-a95c-50732e624638", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12583,Microsoft.Compute/GetVMImageFromLocation30Min;73583", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:a5726a6a-54e9-4ead-a95c-50732e624638", - "Expires" : "-1", - "x-ms-request-id" : "ecd0e64b-ebf9-460f-91be-18d6f4f280cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210125\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83/Versions/8.3.20210125\"\r\n}", - "x-ms-client-request-id" : "6c0e2250-d8ee-4de1-b2de-b928544fe29c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8777ce4-9007-4078-9557-c9e1698aceb4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1167", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5c5f826-a059-4357-bc2a-ef6b33693eaf", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15880,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:c5c5f826-a059-4357-bc2a-ef6b33693eaf", - "Expires" : "-1", - "x-ms-request-id" : "b4664f09-729f-44e6-b4b2-4a2ae3379b45", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20201110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20210126\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20210410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20220317\"\r\n }\r\n]", - "x-ms-client-request-id" : "a8777ce4-9007-4078-9557-c9e1698aceb4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83-gen2/versions/8.3.20201110?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "abb510cb-c744-40b0-a3c1-94860226b837", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e959fcc3-9647-4d99-a61b-5095be623975", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12582,Microsoft.Compute/GetVMImageFromLocation30Min;73582", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:e959fcc3-9647-4d99-a61b-5095be623975", - "Expires" : "-1", - "x-ms-request-id" : "d30c64b3-bd2c-4910-ac5b-090c9e3ff65a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20201110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20201110\"\r\n}", - "x-ms-client-request-id" : "abb510cb-c744-40b0-a3c1-94860226b837", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83-gen2/versions/8.3.20220317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "546e8e8a-79be-4e40-9842-4bf5fa977712", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "624b1b63-88dd-4fd8-b1b6-91b0e3c43535", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12581,Microsoft.Compute/GetVMImageFromLocation30Min;73581", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:624b1b63-88dd-4fd8-b1b6-91b0e3c43535", - "Expires" : "-1", - "x-ms-request-id" : "18696650-98eb-4299-8437-918475409c5b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20220317\"\r\n}", - "x-ms-client-request-id" : "546e8e8a-79be-4e40-9842-4bf5fa977712", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83-gen2/versions/8.3.20210126?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "959fae4e-20bb-4d7a-926d-5ac884130c8f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b148bbdb-d442-4c25-b050-f9a5deaea1b6", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12580,Microsoft.Compute/GetVMImageFromLocation30Min;73580", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130347Z:b148bbdb-d442-4c25-b050-f9a5deaea1b6", - "Expires" : "-1", - "x-ms-request-id" : "e0a5054f-0b35-45d3-b689-17053ab9e304", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210126\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20210126\"\r\n}", - "x-ms-client-request-id" : "959fae4e-20bb-4d7a-926d-5ac884130c8f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm83-gen2/versions/8.3.20210410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa391d5c-9a79-481d-b051-7a6a5c203f5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1004", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0167f3be-6dd4-48b9-9f8e-bf06bc0b3803", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12579,Microsoft.Compute/GetVMImageFromLocation30Min;73579", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130348Z:0167f3be-6dd4-48b9-9f8e-bf06bc0b3803", - "Expires" : "-1", - "x-ms-request-id" : "47c8fee1-5d04-40f3-8210-df46bd00f156", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm83-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.20210410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm83-gen2/Versions/8.3.20210410\"\r\n}", - "x-ms-client-request-id" : "fa391d5c-9a79-481d-b051-7a6a5c203f5e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm84/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "074b13c1-df52-4722-82cb-27997fce4654", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "579", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11730", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2e09a90-c164-41da-9899-03bede1e086e", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15879,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130348Z:e2e09a90-c164-41da-9899-03bede1e086e", - "Expires" : "-1", - "x-ms-request-id" : "dae8243c-ce36-45ad-8002-ea4e39fcbb22", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84/Versions/8.4.2021053101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84/Versions/8.4.20220316\"\r\n }\r\n]", - "x-ms-client-request-id" : "074b13c1-df52-4722-82cb-27997fce4654", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm84/versions/8.4.2021053101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38ff9109-dabd-4bfe-b7d6-dc937d4e724b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "998", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a634fd1d-d3cf-4f0f-89be-8a486549f28d", - "Date" : "Tue, 24 May 2022 13:03:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12578,Microsoft.Compute/GetVMImageFromLocation30Min;73578", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130348Z:a634fd1d-d3cf-4f0f-89be-8a486549f28d", - "Expires" : "-1", - "x-ms-request-id" : "f4d78242-a2d6-4a19-9e6d-f5cf525373f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm84\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84/Versions/8.4.2021053101\"\r\n}", - "x-ms-client-request-id" : "38ff9109-dabd-4bfe-b7d6-dc937d4e724b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm84/versions/8.4.20220316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34279182-8c2e-47eb-83f0-2797b91d3ec5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "994", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6de5decf-1349-458a-a0b2-c71bf2f4a62f", - "Date" : "Tue, 24 May 2022 13:03:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12577,Microsoft.Compute/GetVMImageFromLocation30Min;73577", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130348Z:6de5decf-1349-458a-a0b2-c71bf2f4a62f", - "Expires" : "-1", - "x-ms-request-id" : "5f3fbfad-dd79-409d-8819-e5cab7643863", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm84\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84/Versions/8.4.20220316\"\r\n}", - "x-ms-client-request-id" : "34279182-8c2e-47eb-83f0-2797b91d3ec5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm84-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46704d5a-ef6b-4975-8b48-2fc8f3d9305b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "589", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "876b7347-4af0-49a2-8d13-a13fb80e6f0f", - "Date" : "Tue, 24 May 2022 13:03:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15878,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130348Z:876b7347-4af0-49a2-8d13-a13fb80e6f0f", - "Expires" : "-1", - "x-ms-request-id" : "6521a035-76fc-49e6-9f95-b11eff6afdc3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84-gen2/Versions/8.4.2021053102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84-gen2/Versions/8.4.20220317\"\r\n }\r\n]", - "x-ms-client-request-id" : "46704d5a-ef6b-4975-8b48-2fc8f3d9305b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm84-gen2/versions/8.4.2021053102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c514040-c450-4b30-82b3-8fb9eb39e6f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1008", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef5537a7-c5a6-4de8-9cee-49fdb0b31368", - "Date" : "Tue, 24 May 2022 13:03:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12576,Microsoft.Compute/GetVMImageFromLocation30Min;73576", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130349Z:ef5537a7-c5a6-4de8-9cee-49fdb0b31368", - "Expires" : "-1", - "x-ms-request-id" : "35ef829f-fb5c-4fe1-a709-a46139f155e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm84-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84-gen2/Versions/8.4.2021053102\"\r\n}", - "x-ms-client-request-id" : "1c514040-c450-4b30-82b3-8fb9eb39e6f5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm84-gen2/versions/8.4.20220317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8002db0-4e8b-4316-aeab-81f3ed151a9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f7f4137-567f-426a-afd8-f1d7dd7c0dea", - "Date" : "Tue, 24 May 2022 13:03:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12575,Microsoft.Compute/GetVMImageFromLocation30Min;73575", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130349Z:1f7f4137-567f-426a-afd8-f1d7dd7c0dea", - "Expires" : "-1", - "x-ms-request-id" : "db6d3517-3ed6-4621-948e-ec683e294029", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm84-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm84-gen2/Versions/8.4.20220317\"\r\n}", - "x-ms-client-request-id" : "b8002db0-4e8b-4316-aeab-81f3ed151a9c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm85/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a609af1-e1d6-4e9f-b6db-5d2aebd1fd80", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d12deb0-f214-4d1a-ae4f-ee8033a7358c", - "Date" : "Tue, 24 May 2022 13:03:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15877,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130349Z:0d12deb0-f214-4d1a-ae4f-ee8033a7358c", - "Expires" : "-1", - "x-ms-request-id" : "7c9fb384-f066-40a3-a39a-642b5cba7c20", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm85/Versions/8.5.20220316\"\r\n }\r\n]", - "x-ms-client-request-id" : "4a609af1-e1d6-4e9f-b6db-5d2aebd1fd80", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm85/versions/8.5.20220316?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81c72bda-b384-4779-84a6-14796d33aa3a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "995", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e729fe7c-8560-4ffb-b17c-dde007d188c1", - "Date" : "Tue, 24 May 2022 13:03:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12574,Microsoft.Compute/GetVMImageFromLocation30Min;73574", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130349Z:e729fe7c-8560-4ffb-b17c-dde007d188c1", - "Expires" : "-1", - "x-ms-request-id" : "88bcac3d-ef20-430b-89c9-79d3edc11d52", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm85\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.20220316\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm85/Versions/8.5.20220316\"\r\n}", - "x-ms-client-request-id" : "81c72bda-b384-4779-84a6-14796d33aa3a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm85-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39dd719c-08fa-436a-a0a3-e0c4fd55f038", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "294", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3f267ce8-909c-47fc-8ae4-153370a65e7a", - "Date" : "Tue, 24 May 2022 13:03:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15876,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130349Z:3f267ce8-909c-47fc-8ae4-153370a65e7a", - "Expires" : "-1", - "x-ms-request-id" : "ceba705e-0e27-4457-a904-bc522fabe324", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm85-gen2/Versions/8.5.20220317\"\r\n }\r\n]", - "x-ms-client-request-id" : "39dd719c-08fa-436a-a0a3-e0c4fd55f038", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-lvm85-gen2/versions/8.5.20220317?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6353db87-3ff8-4374-a8a4-5269e722d5f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "992", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a8877f3-1e62-40c1-80ac-a9fad5d7aa8f", - "Date" : "Tue, 24 May 2022 13:03:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12573,Microsoft.Compute/GetVMImageFromLocation30Min;73573", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130350Z:7a8877f3-1e62-40c1-80ac-a9fad5d7aa8f", - "Expires" : "-1", - "x-ms-request-id" : "dea3320a-bac1-4047-bbde-a387965aba37", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-lvm85-gen2\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.20220317\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-lvm85-gen2/Versions/8.5.20220317\"\r\n}", - "x-ms-client-request-id" : "6353db87-3ff8-4374-a8a4-5269e722d5f8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw-ci76/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5adc546b-c8ed-47bb-b7d2-428237ce139b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "292", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2cfdf80-2d45-401e-b527-305153247ea0", - "Date" : "Tue, 24 May 2022 13:03:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15875,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130350Z:a2cfdf80-2d45-401e-b527-305153247ea0", - "Expires" : "-1", - "x-ms-request-id" : "e80d088f-8be1-442d-b775-e3fb105e01dd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190814\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw-ci76/Versions/7.6.20190814\"\r\n }\r\n]", - "x-ms-client-request-id" : "5adc546b-c8ed-47bb-b7d2-428237ce139b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw-ci76/versions/7.6.20190814?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01c10461-0449-44df-af9c-bad11bd754be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "880", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "61954f95-fe2d-4885-8df7-ff0f729fffac", - "Date" : "Tue, 24 May 2022 13:03:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12572,Microsoft.Compute/GetVMImageFromLocation30Min;73572", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130350Z:61954f95-fe2d-4885-8df7-ff0f729fffac", - "Expires" : "-1", - "x-ms-request-id" : "5af15db0-7835-463b-b296-42635c52003f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw-ci76\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190814\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw-ci76/Versions/7.6.20190814\"\r\n}", - "x-ms-client-request-id" : "01c10461-0449-44df-af9c-bad11bd754be", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw69/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "427129d4-bcc0-4455-8f30-fd91eb908967", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "62e4b462-8d9f-4ed1-a0ad-99977f85ec20", - "Date" : "Tue, 24 May 2022 13:03:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15874,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130351Z:62e4b462-8d9f-4ed1-a0ad-99977f85ec20", - "Expires" : "-1", - "x-ms-request-id" : "b250bf9a-dc20-4aae-8ada-5d54b72f864f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.9.20181023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw69/Versions/6.9.20181023\"\r\n }\r\n]", - "x-ms-client-request-id" : "427129d4-bcc0-4455-8f30-fd91eb908967", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw69/versions/6.9.20181023?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4193554e-e392-4cfc-a09a-d5cb31eee2aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "861", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1157cefd-594e-4398-9d6c-b01da219babb", - "Date" : "Tue, 24 May 2022 13:03:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12571,Microsoft.Compute/GetVMImageFromLocation30Min;73571", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130351Z:1157cefd-594e-4398-9d6c-b01da219babb", - "Expires" : "-1", - "x-ms-request-id" : "4f00eafe-f1ab-4aa9-802a-41d20d062d94", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw69\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.9.20181023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw69/Versions/6.9.20181023\"\r\n}", - "x-ms-client-request-id" : "4193554e-e392-4cfc-a09a-d5cb31eee2aa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw72/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f2b74e2-4da0-49c0-9408-5136a68e33a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a20b880-e588-4bae-8430-95a4a01ce1c0", - "Date" : "Tue, 24 May 2022 13:03:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15873,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130351Z:2a20b880-e588-4bae-8430-95a4a01ce1c0", - "Expires" : "-1", - "x-ms-request-id" : "7f1359bc-893c-42bd-89d4-fcb97045cfe7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20190807\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw72/Versions/7.2.20190807\"\r\n }\r\n]", - "x-ms-client-request-id" : "9f2b74e2-4da0-49c0-9408-5136a68e33a7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw72/versions/7.2.20190807?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61eb8f0e-e3d9-47ce-b733-900eb8056c5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "861", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bae6959-9e69-464e-9f13-d35e987474ff", - "Date" : "Tue, 24 May 2022 13:03:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12570,Microsoft.Compute/GetVMImageFromLocation30Min;73570", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130351Z:5bae6959-9e69-464e-9f13-d35e987474ff", - "Expires" : "-1", - "x-ms-request-id" : "0b32752d-ba77-47b1-a9a3-f2ed18e6e18f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw72\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20190807\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw72/Versions/7.2.20190807\"\r\n}", - "x-ms-client-request-id" : "61eb8f0e-e3d9-47ce-b733-900eb8056c5e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw75/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b69caa76-2cf1-4c66-94c7-27e455db5c70", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "125af3a4-7396-4e36-9664-1618d77d6c41", - "Date" : "Tue, 24 May 2022 13:03:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15872,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130352Z:125af3a4-7396-4e36-9664-1618d77d6c41", - "Expires" : "-1", - "x-ms-request-id" : "6912ccda-0d71-46db-b963-736834b37707", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20190620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw75/Versions/7.5.20190620\"\r\n }\r\n]", - "x-ms-client-request-id" : "b69caa76-2cf1-4c66-94c7-27e455db5c70", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw75/versions/7.5.20190620?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8df02842-d78d-4078-97c5-e7cd66cb1aaf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bb817c0-4e22-4662-9644-ccf39e253afa", - "Date" : "Tue, 24 May 2022 13:03:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12569,Microsoft.Compute/GetVMImageFromLocation30Min;73569", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130352Z:5bb817c0-4e22-4662-9644-ccf39e253afa", - "Expires" : "-1", - "x-ms-request-id" : "093f6caf-3c0b-476b-9398-af71a3a7cd8e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw75\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.20190620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw75/Versions/7.5.20190620\"\r\n}", - "x-ms-client-request-id" : "8df02842-d78d-4078-97c5-e7cd66cb1aaf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw76/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "921e17fa-2470-419e-81f4-22917699355d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "861", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33a7e837-8ae9-41c4-aaf6-313effe80f3e", - "Date" : "Tue, 24 May 2022 13:03:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15871,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130352Z:33a7e837-8ae9-41c4-aaf6-313effe80f3e", - "Expires" : "-1", - "x-ms-request-id" : "34c3b5df-b782-4fab-9eb1-6bc11e46fd85", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190307\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76/Versions/7.6.20190307\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190531\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76/Versions/7.6.20190531\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76/Versions/7.6.20190620\"\r\n }\r\n]", - "x-ms-client-request-id" : "921e17fa-2470-419e-81f4-22917699355d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw76/versions/7.6.20190620?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a345156-55df-4ba2-92ac-7f4f92725993", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11756", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd5e0a0d-a3a5-476e-abc8-6431ec6906a3", - "Date" : "Tue, 24 May 2022 13:03:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12566,Microsoft.Compute/GetVMImageFromLocation30Min;73566", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130353Z:dd5e0a0d-a3a5-476e-abc8-6431ec6906a3", - "Expires" : "-1", - "x-ms-request-id" : "647f7b66-f170-48f4-8257-db9421f009fa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw76\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190620\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76/Versions/7.6.20190620\"\r\n}", - "x-ms-client-request-id" : "5a345156-55df-4ba2-92ac-7f4f92725993", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw76/versions/7.6.20190531?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5861e18f-84be-4fe7-b45c-ef61a5ab41c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae8a8137-c25d-4d11-bca4-7d54b1860bae", - "Date" : "Tue, 24 May 2022 13:03:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12567,Microsoft.Compute/GetVMImageFromLocation30Min;73567", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130353Z:ae8a8137-c25d-4d11-bca4-7d54b1860bae", - "Expires" : "-1", - "x-ms-request-id" : "99dae1ba-fc48-427f-8d4b-167b057f36ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw76\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190531\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76/Versions/7.6.20190531\"\r\n}", - "x-ms-client-request-id" : "5861e18f-84be-4fe7-b45c-ef61a5ab41c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos/skus/rhel-raw76/versions/7.6.20190307?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d52b5db5-410b-418b-808b-5abb56a45ce5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ac5d588-4be3-4d94-a4b4-f0a8c2a4b47e", - "Date" : "Tue, 24 May 2022 13:03:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12568,Microsoft.Compute/GetVMImageFromLocation30Min;73568", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130353Z:4ac5d588-4be3-4d94-a4b4-f0a8c2a4b47e", - "Expires" : "-1", - "x-ms-request-id" : "acec1bc0-774d-4296-ac9a-400b4bfc4125", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel-raw76\",\r\n \"product\": \"rhel-byos\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20190307\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos/Skus/rhel-raw76/Versions/7.6.20190307\"\r\n}", - "x-ms-client-request-id" : "d52b5db5-410b-418b-808b-5abb56a45ce5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos-test/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29103cd4-0ebd-425a-8039-3970ba55ea98", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "413", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11729", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c67a753-94c9-4a6b-ab15-a646df4367bc", - "Date" : "Tue, 24 May 2022 13:03:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9985,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130353Z:9c67a753-94c9-4a6b-ab15-a646df4367bc", - "Expires" : "-1", - "x-ms-request-id" : "b06413a2-19c5-4937-9b8f-87f4e7291bc2", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel-byos-test-plan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-byos-test/Skus/rhel-byos-test-plan\"\r\n }\r\n]", - "x-ms-client-request-id" : "29103cd4-0ebd-425a-8039-3970ba55ea98", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-byos-test/skus/rhel-byos-test-plan/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f92b3d0-01ad-4058-88b1-b0fc3864a3d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11755", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf0ce849-c4eb-482d-96cf-c793a4e5c499", - "Date" : "Tue, 24 May 2022 13:03:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15870,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130353Z:cf0ce849-c4eb-482d-96cf-c793a4e5c499", - "Expires" : "-1", - "x-ms-request-id" : "461a4996-2e9c-4a61-bcb5-1dd0ae47b57a", - "Body" : "[]", - "x-ms-client-request-id" : "8f92b3d0-01ad-4058-88b1-b0fc3864a3d6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-cpp-test/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "512fbb6b-96ba-4bf3-9fb0-abcce0732f03", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7accc3ff-ee7e-4a79-bf5b-5ddacba85192", - "Date" : "Tue, 24 May 2022 13:03:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9984,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130353Z:7accc3ff-ee7e-4a79-bf5b-5ddacba85192", - "Expires" : "-1", - "x-ms-request-id" : "7be8596a-2b47-412c-b38e-057a0413aeef", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-raw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-cpp-test/Skus/7-raw\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"test_plan_1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-cpp-test/Skus/test_plan_1\"\r\n }\r\n]", - "x-ms-client-request-id" : "512fbb6b-96ba-4bf3-9fb0-abcce0732f03", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-cpp-test/skus/7-raw/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ca55815-bf74-4d04-ad24-37e17b3b0940", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "263d50f4-f467-4736-967c-c4a72539adac", - "Date" : "Tue, 24 May 2022 13:03:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15869,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130354Z:263d50f4-f467-4736-967c-c4a72539adac", - "Expires" : "-1", - "x-ms-request-id" : "bf7a0fba-0068-42bf-b52d-65cfae7b709d", - "Body" : "[]", - "x-ms-client-request-id" : "5ca55815-bf74-4d04-ad24-37e17b3b0940", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-cpp-test/skus/test_plan_1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b94e8cfa-1872-4dc6-a573-9eba7c2f2aaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4c8e894-90c3-4a01-9687-de11e8ef84d2", - "Date" : "Tue, 24 May 2022 13:03:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15868,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130354Z:f4c8e894-90c3-4a01-9687-de11e8ef84d2", - "Expires" : "-1", - "x-ms-request-id" : "8c494e23-6441-428e-813e-6d2c1588f147", - "Body" : "[]", - "x-ms-client-request-id" : "b94e8cfa-1872-4dc6-a573-9eba7c2f2aaa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47b377e9-ea55-4655-b0ae-51ee1e076522", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2616", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73535508-a1c7-4d4e-869a-2ff2ab65e639", - "Date" : "Tue, 24 May 2022 13:03:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9983,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130354Z:73535508-a1c7-4d4e-869a-2ff2ab65e639", - "Expires" : "-1", - "x-ms-request-id" : "701d4ab7-f414-4f8b-98e0-9e3b530d4afb", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/8.0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/8.1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"80-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/80-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"81_gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/81_gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "47b377e9-ea55-4655-b0ae-51ee1e076522", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/7.4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61cee7d1-95fa-4fea-85c6-faffded68287", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "284", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae53c949-fcd3-45aa-bbda-18459a7f838d", - "Date" : "Tue, 24 May 2022 13:03:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15867,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130355Z:ae53c949-fcd3-45aa-bbda-18459a7f838d", - "Expires" : "-1", - "x-ms-request-id" : "f5202b30-7a7c-4db0-a4ee-f49406b0f387", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.4/Versions/7.4.2019062021\"\r\n }\r\n]", - "x-ms-client-request-id" : "61cee7d1-95fa-4fea-85c6-faffded68287", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/7.4/versions/7.4.2019062021?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c86c3d87-9455-47bb-a434-a916be46dd79", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "664", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92269ad5-0ee1-483e-95e1-75ea3e746439", - "Date" : "Tue, 24 May 2022 13:03:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12565,Microsoft.Compute/GetVMImageFromLocation30Min;73565", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130355Z:92269ad5-0ee1-483e-95e1-75ea3e746439", - "Expires" : "-1", - "x-ms-request-id" : "cdd82bab-5a1a-4f83-aa7d-6c5635dcb3dd", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.4/Versions/7.4.2019062021\"\r\n}", - "x-ms-client-request-id" : "c86c3d87-9455-47bb-a434-a916be46dd79", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/7.5/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "447cbf05-54c6-4956-a380-b84a03720d6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "284", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "166bcd20-e427-4afd-ad18-779927a6e6cd", - "Date" : "Tue, 24 May 2022 13:03:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15866,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130355Z:166bcd20-e427-4afd-ad18-779927a6e6cd", - "Expires" : "-1", - "x-ms-request-id" : "6a8ca80c-7806-4c88-b2f0-bbfc95d9806b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.5/Versions/7.5.2019062021\"\r\n }\r\n]", - "x-ms-client-request-id" : "447cbf05-54c6-4956-a380-b84a03720d6b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/7.5/versions/7.5.2019062021?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c7dbfb4-e204-4a91-92f3-b1da033e2028", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "664", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7fcc758-1311-46ac-98ac-ac1df54352c9", - "Date" : "Tue, 24 May 2022 13:03:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12564,Microsoft.Compute/GetVMImageFromLocation30Min;73564", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130355Z:e7fcc758-1311-46ac-98ac-ac1df54352c9", - "Expires" : "-1", - "x-ms-request-id" : "e990a7fe-2bb7-4297-b132-5ff93d410c1c", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.5/Versions/7.5.2019062021\"\r\n}", - "x-ms-client-request-id" : "6c7dbfb4-e204-4a91-92f3-b1da033e2028", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/7.6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aab3332a-a915-4c42-9a33-740bee7f5080", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "284", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0230c2e7-8ed7-4ddc-ae75-9b8f2e508faa", - "Date" : "Tue, 24 May 2022 13:03:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15865,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130356Z:0230c2e7-8ed7-4ddc-ae75-9b8f2e508faa", - "Expires" : "-1", - "x-ms-request-id" : "be21128a-9115-4c8c-80c1-61e5d1263cb4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.6/Versions/7.6.2019062019\"\r\n }\r\n]", - "x-ms-client-request-id" : "aab3332a-a915-4c42-9a33-740bee7f5080", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/7.6/versions/7.6.2019062019?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2935706-4521-4634-bb4e-12fd293a2777", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "664", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d9f033a-fd6c-4ca7-96c1-af1c1547d6f0", - "Date" : "Tue, 24 May 2022 13:03:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12563,Microsoft.Compute/GetVMImageFromLocation30Min;73563", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130356Z:0d9f033a-fd6c-4ca7-96c1-af1c1547d6f0", - "Expires" : "-1", - "x-ms-request-id" : "9ef70262-9540-43cd-9476-df18d3bf8691", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/7.6/Versions/7.6.2019062019\"\r\n}", - "x-ms-client-request-id" : "f2935706-4521-4634-bb4e-12fd293a2777", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/8.0/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27465902-3ce8-4ecc-97c1-c25de676ed3a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "284", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18b87a77-5c23-476d-9eca-51f0a3cf6786", - "Date" : "Tue, 24 May 2022 13:03:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15864,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130356Z:18b87a77-5c23-476d-9eca-51f0a3cf6786", - "Expires" : "-1", - "x-ms-request-id" : "d26df026-327c-4ae9-a3c6-e75bd4c11cdb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2020021914\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/8.0/Versions/8.0.2020021914\"\r\n }\r\n]", - "x-ms-client-request-id" : "27465902-3ce8-4ecc-97c1-c25de676ed3a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/8.0/versions/8.0.2020021914?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "977268e8-d032-4480-a316-52250176ac51", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "752", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0db5364f-e2dd-4ab1-b57c-0ae58ac33a9a", - "Date" : "Tue, 24 May 2022 13:03:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12562,Microsoft.Compute/GetVMImageFromLocation30Min;73562", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130357Z:0db5364f-e2dd-4ab1-b57c-0ae58ac33a9a", - "Expires" : "-1", - "x-ms-request-id" : "76bc75d9-1321-446a-b9c7-1999dc21102d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2020021914\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/8.0/Versions/8.0.2020021914\"\r\n}", - "x-ms-client-request-id" : "977268e8-d032-4480-a316-52250176ac51", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/8.1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aed80c7b-6ac2-4a91-9b1e-9a2f9f2c9d8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "284", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "69215c97-17c9-459a-aca6-3c8ae018d754", - "Date" : "Tue, 24 May 2022 13:03:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15863,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130357Z:69215c97-17c9-459a-aca6-3c8ae018d754", - "Expires" : "-1", - "x-ms-request-id" : "fe12ba7d-26d6-42ad-adc6-0af60506a66d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020021914\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/8.1/Versions/8.1.2020021914\"\r\n }\r\n]", - "x-ms-client-request-id" : "aed80c7b-6ac2-4a91-9b1e-9a2f9f2c9d8a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/8.1/versions/8.1.2020021914?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88c800d9-edbc-40d7-a189-42f87c8fa0fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "752", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11728", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "69b2a1fc-341a-4d5f-b13d-82c069b43492", - "Date" : "Tue, 24 May 2022 13:03:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12561,Microsoft.Compute/GetVMImageFromLocation30Min;73561", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130357Z:69b2a1fc-341a-4d5f-b13d-82c069b43492", - "Expires" : "-1", - "x-ms-request-id" : "9b264e5f-5973-4876-822d-288cc724ca25", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020021914\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/8.1/Versions/8.1.2020021914\"\r\n}", - "x-ms-client-request-id" : "88c800d9-edbc-40d7-a189-42f87c8fa0fa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/80-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d67dfef-d642-4575-924b-5675cb2522ba", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11727", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93c24549-8bf9-4563-accf-552fad302096", - "Date" : "Tue, 24 May 2022 13:03:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15862,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130357Z:93c24549-8bf9-4563-accf-552fad302096", - "Expires" : "-1", - "x-ms-request-id" : "e81c80c0-0a10-4ff4-b8ed-6b5897387aea", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2020021915\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/80-gen2/Versions/8.0.2020021915\"\r\n }\r\n]", - "x-ms-client-request-id" : "1d67dfef-d642-4575-924b-5675cb2522ba", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/80-gen2/versions/8.0.2020021915?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5322430e-8d27-4d71-94b0-d69e6ea34d63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "caa0d6d1-de98-4b79-b025-5d48eed28591", - "Date" : "Tue, 24 May 2022 13:03:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12560,Microsoft.Compute/GetVMImageFromLocation30Min;73560", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130358Z:caa0d6d1-de98-4b79-b025-5d48eed28591", - "Expires" : "-1", - "x-ms-request-id" : "f039656d-f63c-499d-a70d-82faa22925d6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2020021915\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/80-gen2/Versions/8.0.2020021915\"\r\n}", - "x-ms-client-request-id" : "5322430e-8d27-4d71-94b0-d69e6ea34d63", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/81_gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb280f41-7bec-4a0f-b6b1-ab1675208792", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11754", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "454585aa-c680-40c6-87da-8cf382e8cf86", - "Date" : "Tue, 24 May 2022 13:03:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15861,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130358Z:454585aa-c680-40c6-87da-8cf382e8cf86", - "Expires" : "-1", - "x-ms-request-id" : "44d53162-e13e-43c6-96e1-468e4c6627af", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020021915\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/81_gen2/Versions/8.1.2020021915\"\r\n }\r\n]", - "x-ms-client-request-id" : "fb280f41-7bec-4a0f-b6b1-ab1675208792", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-HA/skus/81_gen2/versions/8.1.2020021915?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac986c8d-9c41-4171-9d25-1da58a7c1f65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11726", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b64a0b2b-9990-4919-963c-571bec241fa8", - "Date" : "Tue, 24 May 2022 13:03:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12559,Microsoft.Compute/GetVMImageFromLocation30Min;73559", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130358Z:b64a0b2b-9990-4919-963c-571bec241fa8", - "Expires" : "-1", - "x-ms-request-id" : "49655f03-72ef-488a-913a-5ac80405d20a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020021915\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-HA/Skus/81_gen2/Versions/8.1.2020021915\"\r\n}", - "x-ms-client-request-id" : "ac986c8d-9c41-4171-9d25-1da58a7c1f65", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75cdd6ac-66d0-4281-b0aa-362ca3516885", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "7543", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ddfec28a-2c93-4ac2-911c-964d54992b2a", - "Date" : "Tue, 24 May 2022 13:03:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9982,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:ddfec28a-2c93-4ac2-911c-964d54992b2a", - "Expires" : "-1", - "x-ms-request-id" : "6d660ede-109c-4dd7-9905-6a44a79c8479", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-raw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-raw-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/76-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"77-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/77-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7_6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7_7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8-raw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8-raw-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"80-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"81-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"82-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"83-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"84-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"86-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/86-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_6\"\r\n }\r\n]", - "x-ms-client-request-id" : "75cdd6ac-66d0-4281-b0aa-362ca3516885", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f62ee3d4-06d9-4d92-b79c-665f6ca6133c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1991", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c13d0d80-75a7-4558-9617-c971702c8e0f", - "Date" : "Tue, 24 May 2022 13:03:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15860,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:c13d0d80-75a7-4558-9617-c971702c8e0f", - "Expires" : "-1", - "x-ms-request-id" : "731fed5d-d5aa-490e-a9d9-25742d7bc4f4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.6.2021062301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.7.2021062301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.8.2021062301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2018100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2018100812\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2021062301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2022032201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022040605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2022040605\"\r\n }\r\n]", - "x-ms-client-request-id" : "f62ee3d4-06d9-4d92-b79c-665f6ca6133c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.6.2021062301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55592b1b-fb94-416e-8117-91b173d3cb56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fd9f913-5742-4554-8a01-1162007722a2", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12556,Microsoft.Compute/GetVMImageFromLocation30Min;73556", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:7fd9f913-5742-4554-8a01-1162007722a2", - "Expires" : "-1", - "x-ms-request-id" : "1fb75946-f194-4606-9a6d-dc1a2ea5adbd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.6.2021062301\"\r\n}", - "x-ms-client-request-id" : "55592b1b-fb94-416e-8117-91b173d3cb56", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.9.2018100812?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8d113f0-742f-4d41-9619-07dbfd553c63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a8988cc-42a6-403b-bee8-0904372d7c63", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12558,Microsoft.Compute/GetVMImageFromLocation30Min;73558", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:6a8988cc-42a6-403b-bee8-0904372d7c63", - "Expires" : "-1", - "x-ms-request-id" : "00680982-913f-481e-84f9-eee1806bc4e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2018100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2018100812\"\r\n}", - "x-ms-client-request-id" : "e8d113f0-742f-4d41-9619-07dbfd553c63", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.9.2022040605?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8564064-7fc6-48f2-85c9-3c912703a5c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fad5da6e-5b76-4905-a05c-f7501874b016", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12555,Microsoft.Compute/GetVMImageFromLocation30Min;73555", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:fad5da6e-5b76-4905-a05c-f7501874b016", - "Expires" : "-1", - "x-ms-request-id" : "f704cca0-d54d-496c-8c0f-a09fbd55f46b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022040605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2022040605\"\r\n}", - "x-ms-client-request-id" : "d8564064-7fc6-48f2-85c9-3c912703a5c6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.8.2021062301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "308ced9e-2a3e-40fc-8236-a06621bbec64", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11753", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c595804a-636d-4c44-af41-93ee1b387b1f", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12554,Microsoft.Compute/GetVMImageFromLocation30Min;73554", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:c595804a-636d-4c44-af41-93ee1b387b1f", - "Expires" : "-1", - "x-ms-request-id" : "bd8aa511-ddba-4b5d-9b9d-f169206fedfb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.8.2021062301\"\r\n}", - "x-ms-client-request-id" : "308ced9e-2a3e-40fc-8236-a06621bbec64", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.7.2021062301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77a671dc-0317-4485-a6e9-3c92bafd18aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e72be563-2928-4cde-8211-f3043bbd1168", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12557,Microsoft.Compute/GetVMImageFromLocation30Min;73557", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:e72be563-2928-4cde-8211-f3043bbd1168", - "Expires" : "-1", - "x-ms-request-id" : "15982ded-c202-4de7-b79b-8c167cc6ac1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.7.2021062301\"\r\n}", - "x-ms-client-request-id" : "77a671dc-0317-4485-a6e9-3c92bafd18aa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.9.2022032201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67d9b60f-962a-4bb0-913f-f2ff31e6f83a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41adb120-6b41-4ab9-bcfc-2b64c9756a9e", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12553,Microsoft.Compute/GetVMImageFromLocation30Min;73553", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:41adb120-6b41-4ab9-bcfc-2b64c9756a9e", - "Expires" : "-1", - "x-ms-request-id" : "04d5de99-f8ed-436b-a8fa-54e5e8f50e1b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2022032201\"\r\n}", - "x-ms-client-request-id" : "67d9b60f-962a-4bb0-913f-f2ff31e6f83a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw/versions/7.9.2021062301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b46bc633-e746-44c0-bd38-9f574377b2e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "875", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eeea33f5-1743-4930-a6df-28f299ab8ecf", - "Date" : "Tue, 24 May 2022 13:03:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12552,Microsoft.Compute/GetVMImageFromLocation30Min;73552", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130359Z:eeea33f5-1743-4930-a6df-28f299ab8ecf", - "Expires" : "-1", - "x-ms-request-id" : "37f6d656-8cc2-4df5-8787-d20e8a2bd6e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw/Versions/7.9.2021062301\"\r\n}", - "x-ms-client-request-id" : "b46bc633-e746-44c0-bd38-9f574377b2e2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6680478f-4876-4356-b0d9-c9e1f211d488", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2026", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04878c6c-081c-4d38-bd50-f198c86e3681", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15859,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:04878c6c-081c-4d38-bd50-f198c86e3681", - "Expires" : "-1", - "x-ms-request-id" : "f18cdb19-7ac4-4436-8e03-546184f89e24", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.6.2021062302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.7.2021062302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.8.2021062302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2018100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2018100812\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2021062302\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2022032202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022040606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2022040606\"\r\n }\r\n]", - "x-ms-client-request-id" : "6680478f-4876-4356-b0d9-c9e1f211d488", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.9.2022032202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3e68685-357c-4a1e-aa18-950eba3342fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b66dc108-283c-4914-9628-ecc034a222ea", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12550,Microsoft.Compute/GetVMImageFromLocation30Min;73550", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:b66dc108-283c-4914-9628-ecc034a222ea", - "Expires" : "-1", - "x-ms-request-id" : "605993d9-9e9f-4553-b1ed-2c67778a6706", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2022032202\"\r\n}", - "x-ms-client-request-id" : "f3e68685-357c-4a1e-aa18-950eba3342fe", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.7.2021062302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "483b9d94-d9fa-4aff-9d8d-cbff7c556696", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af0bd047-367a-4a40-8aaa-702c88af9734", - "Date" : "Tue, 24 May 2022 13:04:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12549,Microsoft.Compute/GetVMImageFromLocation30Min;73549", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:af0bd047-367a-4a40-8aaa-702c88af9734", - "Expires" : "-1", - "x-ms-request-id" : "d326e456-e10a-4ca3-ba54-13d99d2eca92", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.7.2021062302\"\r\n}", - "x-ms-client-request-id" : "483b9d94-d9fa-4aff-9d8d-cbff7c556696", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.8.2021062302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6737ae5b-2e04-44a7-88ab-3c1664cc275f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e976d39-a9e2-46b1-9c44-6c1174a097d1", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12548,Microsoft.Compute/GetVMImageFromLocation30Min;73548", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:7e976d39-a9e2-46b1-9c44-6c1174a097d1", - "Expires" : "-1", - "x-ms-request-id" : "88b9874b-1a01-4eee-9c07-ef54f02bab72", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.8.2021062302\"\r\n}", - "x-ms-client-request-id" : "6737ae5b-2e04-44a7-88ab-3c1664cc275f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.6.2021062302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96c4fe0f-9af3-4ea7-9696-1e162d785fab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5755bb5-d38e-4923-93f6-ceadee8fcfed", - "Date" : "Tue, 24 May 2022 13:04:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12551,Microsoft.Compute/GetVMImageFromLocation30Min;73551", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:f5755bb5-d38e-4923-93f6-ceadee8fcfed", - "Expires" : "-1", - "x-ms-request-id" : "e5447255-1553-44ef-a0d0-cd2b35e64326", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.6.2021062302\"\r\n}", - "x-ms-client-request-id" : "96c4fe0f-9af3-4ea7-9696-1e162d785fab", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.9.2022040606?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa92edc9-4ec8-4b75-bba2-19d40dad4c33", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b7489fa-ed07-4912-bbd9-7f33a6d0f3f7", - "Date" : "Tue, 24 May 2022 13:04:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12547,Microsoft.Compute/GetVMImageFromLocation30Min;73547", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:4b7489fa-ed07-4912-bbd9-7f33a6d0f3f7", - "Expires" : "-1", - "x-ms-request-id" : "57ba0b6a-6cb0-4d25-afc8-a91fbad5dab0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2022040606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2022040606\"\r\n}", - "x-ms-client-request-id" : "fa92edc9-4ec8-4b75-bba2-19d40dad4c33", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.9.2018100812?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bac1aaa0-e014-4d5d-9160-a93e589e6ff5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30467180-c89a-4111-ab3e-e7a5590a7efe", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12545,Microsoft.Compute/GetVMImageFromLocation30Min;73545", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:30467180-c89a-4111-ab3e-e7a5590a7efe", - "Expires" : "-1", - "x-ms-request-id" : "db267f97-ef58-48bf-b628-4aa7a37e2d9c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2018100812\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2018100812\"\r\n}", - "x-ms-client-request-id" : "bac1aaa0-e014-4d5d-9160-a93e589e6ff5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7-raw-gen2/versions/7.9.2021062302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea5853e9-8879-4ee7-b1b3-57ae534178c4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c58e1630-f8c9-4564-ac55-167e79bfa5ea", - "Date" : "Tue, 24 May 2022 13:03:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12546,Microsoft.Compute/GetVMImageFromLocation30Min;73546", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:c58e1630-f8c9-4564-ac55-167e79bfa5ea", - "Expires" : "-1", - "x-ms-request-id" : "b6168418-c122-477d-beb9-6c02d0516440", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7-raw-gen2/Versions/7.9.2021062302\"\r\n}", - "x-ms-client-request-id" : "ea5853e9-8879-4ee7-b1b3-57ae534178c4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/76-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20fa0dec-63a6-4db7-acb3-695995826397", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b87ac923-17b1-4369-baf3-065d8831ef28", - "Date" : "Tue, 24 May 2022 13:04:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15858,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130400Z:b87ac923-17b1-4369-baf3-065d8831ef28", - "Expires" : "-1", - "x-ms-request-id" : "03bcd397-756b-498d-91fa-126ba5c594db", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/76-gen2/Versions/7.6.2021062302\"\r\n }\r\n]", - "x-ms-client-request-id" : "20fa0dec-63a6-4db7-acb3-695995826397", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/76-gen2/versions/7.6.2021062302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b8f81c4-d352-4858-bf60-4678d08b6b7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "750", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10f1645e-0ede-47ca-8972-d78eca86d5e8", - "Date" : "Tue, 24 May 2022 13:04:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12544,Microsoft.Compute/GetVMImageFromLocation30Min;73544", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130401Z:10f1645e-0ede-47ca-8972-d78eca86d5e8", - "Expires" : "-1", - "x-ms-request-id" : "7ea21898-df66-4bda-8d5d-1d8b82b189bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/76-gen2/Versions/7.6.2021062302\"\r\n}", - "x-ms-client-request-id" : "2b8f81c4-d352-4858-bf60-4678d08b6b7c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/77-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ac53d8b-186c-46b9-860a-10e8c28132fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "776340b7-3ee4-4a89-bee7-b98d9e291330", - "Date" : "Tue, 24 May 2022 13:04:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15857,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130401Z:776340b7-3ee4-4a89-bee7-b98d9e291330", - "Expires" : "-1", - "x-ms-request-id" : "a71adffb-9286-422e-9910-ef0db326fd16", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/77-gen2/Versions/7.7.2021062302\"\r\n }\r\n]", - "x-ms-client-request-id" : "4ac53d8b-186c-46b9-860a-10e8c28132fc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/77-gen2/versions/7.7.2021062302?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b7cc018-20b0-4bb8-acb6-ff1b102553a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "750", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11790", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "50b973a7-d942-4b99-a023-b046729692a4", - "Date" : "Tue, 24 May 2022 13:04:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12543,Microsoft.Compute/GetVMImageFromLocation30Min;73543", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130402Z:50b973a7-d942-4b99-a023-b046729692a4", - "Expires" : "-1", - "x-ms-request-id" : "5067805b-9924-4033-839e-ed359882a953", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062302\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/77-gen2/Versions/7.7.2021062302\"\r\n}", - "x-ms-client-request-id" : "3b7cc018-20b0-4bb8-acb6-ff1b102553a1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7_6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a091e20-6330-468a-be8f-52d01bd2d03d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "285", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27bd01f6-a0cd-4dc1-96c1-49471a4e1f39", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15856,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130402Z:27bd01f6-a0cd-4dc1-96c1-49471a4e1f39", - "Expires" : "-1", - "x-ms-request-id" : "8a5ee2cd-5bfa-4e51-80bf-66eb5ee8165c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7_6/Versions/7.6.2021062301\"\r\n }\r\n]", - "x-ms-client-request-id" : "1a091e20-6330-468a-be8f-52d01bd2d03d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7_6/versions/7.6.2021062301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2879c1a6-fd24-4308-b31e-349661857310", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11752", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ebe11f0-2ced-4c91-87fe-4726d6f9275b", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12542,Microsoft.Compute/GetVMImageFromLocation30Min;73542", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130402Z:8ebe11f0-2ced-4c91-87fe-4726d6f9275b", - "Expires" : "-1", - "x-ms-request-id" : "9f9f9e7a-4a94-49a4-aed8-9e798571eb39", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7_6/Versions/7.6.2021062301\"\r\n}", - "x-ms-client-request-id" : "2879c1a6-fd24-4308-b31e-349661857310", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7_7/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "459182f3-d7f3-49b7-99c4-c9eaec28891b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "285", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b72a3a6a-0ca9-48ad-922c-a43fda272615", - "Date" : "Tue, 24 May 2022 13:04:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15855,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130402Z:b72a3a6a-0ca9-48ad-922c-a43fda272615", - "Expires" : "-1", - "x-ms-request-id" : "b289d29b-4e6e-4c06-96d1-1c1980cb22ab", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7_7/Versions/7.7.2021062301\"\r\n }\r\n]", - "x-ms-client-request-id" : "459182f3-d7f3-49b7-99c4-c9eaec28891b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/7_7/versions/7.7.2021062301?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d8a0265-26c7-4d26-9bbc-97cf805d398d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ecaae8ab-a795-4c5d-b9e0-1da36fb8ceb0", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12541,Microsoft.Compute/GetVMImageFromLocation30Min;73541", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:ecaae8ab-a795-4c5d-b9e0-1da36fb8ceb0", - "Expires" : "-1", - "x-ms-request-id" : "8743dfe1-655a-4bec-812b-0176b93aa32e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021062301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/7_7/Versions/7.7.2021062301\"\r\n}", - "x-ms-client-request-id" : "4d8a0265-26c7-4d26-9bbc-97cf805d398d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d05b373-70f4-4bdf-95d1-8f6c5ba0267c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5967", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a222a130-10ae-4992-9109-95ee36912227", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15854,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:a222a130-10ae-4992-9109-95ee36912227", - "Expires" : "-1", - "x-ms-request-id" : "c5f86425-511d-48fe-96b8-747adb9641ba", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.0.2021011801\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.0.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.0.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.1.2021011801\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.1.2021091203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.1.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2021011801\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2021091203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032805\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2022032805\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2021011901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2021091203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021053101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021080901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021081001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021091203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2022031605\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.5.2022031405\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.5.2022032201\"\r\n }\r\n]", - "x-ms-client-request-id" : "1d05b373-70f4-4bdf-95d1-8f6c5ba0267c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.3.2021011901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7aa2ac33-9bb0-420e-ab80-ace8f6d34351", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6a6c876-98a0-4bb7-971b-1adf299092b4", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12539,Microsoft.Compute/GetVMImageFromLocation30Min;73539", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:b6a6c876-98a0-4bb7-971b-1adf299092b4", - "Expires" : "-1", - "x-ms-request-id" : "73d590b0-5476-493d-840e-57f9be2040bc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2021011901\"\r\n}", - "x-ms-client-request-id" : "7aa2ac33-9bb0-420e-ab80-ace8f6d34351", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.3.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f408730d-aef3-49d8-924a-b3ce024161b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03d7f2f1-029e-49b5-9310-b9073a85066d", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12533,Microsoft.Compute/GetVMImageFromLocation30Min;73533", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:03d7f2f1-029e-49b5-9310-b9073a85066d", - "Expires" : "-1", - "x-ms-request-id" : "e676b087-53ff-4830-b8f1-1e2b9b09a8cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2021040901\"\r\n}", - "x-ms-client-request-id" : "f408730d-aef3-49d8-924a-b3ce024161b7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.1.2021091203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f13a1adf-4fce-4435-bf1d-504a271d8247", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "71ac579e-2b2e-426f-ae17-4cff415e0f09", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12530,Microsoft.Compute/GetVMImageFromLocation30Min;73530", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:71ac579e-2b2e-426f-ae17-4cff415e0f09", - "Expires" : "-1", - "x-ms-request-id" : "30528218-515f-4e04-859b-e6b0b218ff3c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.1.2021091203\"\r\n}", - "x-ms-client-request-id" : "f13a1adf-4fce-4435-bf1d-504a271d8247", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.5.2022032201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92c8844c-1560-4566-a3f1-a2e8d4c598c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97a8d985-1277-4aa1-8881-ce7f303e276a", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12527,Microsoft.Compute/GetVMImageFromLocation30Min;73527", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:97a8d985-1277-4aa1-8881-ce7f303e276a", - "Expires" : "-1", - "x-ms-request-id" : "c1b776c7-d737-4b4c-8e30-a78e7ba1f452", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.5.2022032201\"\r\n}", - "x-ms-client-request-id" : "92c8844c-1560-4566-a3f1-a2e8d4c598c1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.2.2021091203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef0468bc-8ab0-4cc8-885f-40eb85927a3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b4d1473-81de-47a0-b384-b3806edad42d", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12536,Microsoft.Compute/GetVMImageFromLocation30Min;73536", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:7b4d1473-81de-47a0-b384-b3806edad42d", - "Expires" : "-1", - "x-ms-request-id" : "654d6da8-364c-49da-b2ce-fa32f92d73e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2021091203\"\r\n}", - "x-ms-client-request-id" : "ef0468bc-8ab0-4cc8-885f-40eb85927a3e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.4.2021081001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "012c715b-1428-480a-9410-37c10fa7957f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0574b89f-5d25-4888-bdad-50535e7b2c8a", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12526,Microsoft.Compute/GetVMImageFromLocation30Min;73526", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:0574b89f-5d25-4888-bdad-50535e7b2c8a", - "Expires" : "-1", - "x-ms-request-id" : "88dce182-6b66-463e-a70a-85164aebe69e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021081001\"\r\n}", - "x-ms-client-request-id" : "012c715b-1428-480a-9410-37c10fa7957f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.4.2021091203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6a3a9f2-0af2-43de-a5d8-d90f2f09a5bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13a68f0c-990e-471d-9cec-b3746a8544f0", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12523,Microsoft.Compute/GetVMImageFromLocation30Min;73523", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:13a68f0c-990e-471d-9cec-b3746a8544f0", - "Expires" : "-1", - "x-ms-request-id" : "bd6cf518-5960-4e7a-b587-dbec245fb2f3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021091203\"\r\n}", - "x-ms-client-request-id" : "e6a3a9f2-0af2-43de-a5d8-d90f2f09a5bf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.2.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf34e624-7e6a-4037-86b7-c0b0a3a81151", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9abeb7d2-cec7-4324-99d6-8b1eabb6f30b", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12532,Microsoft.Compute/GetVMImageFromLocation30Min;73532", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:9abeb7d2-cec7-4324-99d6-8b1eabb6f30b", - "Expires" : "-1", - "x-ms-request-id" : "10ab543f-0798-41c4-95ce-8e4b2aae9940", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2022031405\"\r\n}", - "x-ms-client-request-id" : "bf34e624-7e6a-4037-86b7-c0b0a3a81151", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.2.2021011801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e38b0738-21a9-45f3-aacb-b487c0ef4b38", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11724", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3dfef0b9-f040-44d6-8d30-4da7cd80b55f", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12538,Microsoft.Compute/GetVMImageFromLocation30Min;73538", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:3dfef0b9-f040-44d6-8d30-4da7cd80b55f", - "Expires" : "-1", - "x-ms-request-id" : "839a4266-4f48-4197-9643-d1a6c4d6614d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2021011801\"\r\n}", - "x-ms-client-request-id" : "e38b0738-21a9-45f3-aacb-b487c0ef4b38", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.2.2022032805?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9db5f7ca-3fd0-4b25-9221-b63aefca1013", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c82189f0-87f2-49c5-b89a-0678cdc9eed8", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12534,Microsoft.Compute/GetVMImageFromLocation30Min;73534", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:c82189f0-87f2-49c5-b89a-0678cdc9eed8", - "Expires" : "-1", - "x-ms-request-id" : "dd115222-181e-4925-bee2-ad566dacc2e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032805\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.2.2022032805\"\r\n}", - "x-ms-client-request-id" : "9db5f7ca-3fd0-4b25-9221-b63aefca1013", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.0.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e54383f-1824-4754-8dc3-33a92e8d7212", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cee39b39-963f-4425-90a6-fb5300dcaf0b", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12537,Microsoft.Compute/GetVMImageFromLocation30Min;73537", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:cee39b39-963f-4425-90a6-fb5300dcaf0b", - "Expires" : "-1", - "x-ms-request-id" : "5095da57-91f6-476f-a24f-33a7fb202d2c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.0.2021091201\"\r\n}", - "x-ms-client-request-id" : "5e54383f-1824-4754-8dc3-33a92e8d7212", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.1.2021011801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fb8f74b-5fa0-4274-aea9-6251cc6d8b0b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3478327a-bec4-4b2d-86c0-ecd884aefdca", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12535,Microsoft.Compute/GetVMImageFromLocation30Min;73535", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:3478327a-bec4-4b2d-86c0-ecd884aefdca", - "Expires" : "-1", - "x-ms-request-id" : "7a49fab3-f41c-4e1e-b85b-c3db686e2744", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.1.2021011801\"\r\n}", - "x-ms-client-request-id" : "8fb8f74b-5fa0-4274-aea9-6251cc6d8b0b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.0.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e9cb81e-ad4b-4e26-b941-d405f62da456", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3185a7e-a2b2-476a-807c-234d84225e74", - "Date" : "Tue, 24 May 2022 13:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12531,Microsoft.Compute/GetVMImageFromLocation30Min;73531", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:d3185a7e-a2b2-476a-807c-234d84225e74", - "Expires" : "-1", - "x-ms-request-id" : "eb329ef6-cb19-4917-be36-1365cac346ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.0.2022031405\"\r\n}", - "x-ms-client-request-id" : "9e9cb81e-ad4b-4e26-b941-d405f62da456", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.1.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6dbe8de-62d3-438b-8319-09db51758b67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11724", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e15297ab-0d91-4373-903e-7713df27ddef", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12540,Microsoft.Compute/GetVMImageFromLocation30Min;73540", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:e15297ab-0d91-4373-903e-7713df27ddef", - "Expires" : "-1", - "x-ms-request-id" : "102e6fc8-cdb3-4651-bd92-35fce48f740a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.1.2022031405\"\r\n}", - "x-ms-client-request-id" : "c6dbe8de-62d3-438b-8319-09db51758b67", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.4.2021080901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ec95bfe-84e9-4210-8353-5886a2d11fb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba297014-e1bf-41ad-b993-911df4ff2c07", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12524,Microsoft.Compute/GetVMImageFromLocation30Min;73524", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:ba297014-e1bf-41ad-b993-911df4ff2c07", - "Expires" : "-1", - "x-ms-request-id" : "0f10447e-33f1-4a1d-ba72-f869210f5f5a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021080901\"\r\n}", - "x-ms-client-request-id" : "9ec95bfe-84e9-4210-8353-5886a2d11fb6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.3.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6d166e6-7a07-4692-bc52-ee066a7b69c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "639220b7-b198-4993-a9a8-e3ada0de5114", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12529,Microsoft.Compute/GetVMImageFromLocation30Min;73529", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:639220b7-b198-4993-a9a8-e3ada0de5114", - "Expires" : "-1", - "x-ms-request-id" : "c504ed51-c31c-48ee-9c27-4070586bf881", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2022031405\"\r\n}", - "x-ms-client-request-id" : "c6d166e6-7a07-4692-bc52-ee066a7b69c7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.4.2021053101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3d17132-d283-4c5a-a6bb-485e30768fcf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b4f15007-ebae-4455-b973-17e67be1d388", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12528,Microsoft.Compute/GetVMImageFromLocation30Min;73528", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:b4f15007-ebae-4455-b973-17e67be1d388", - "Expires" : "-1", - "x-ms-request-id" : "34db2f3c-72d6-480b-9d3c-9b19a2b5293e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2021053101\"\r\n}", - "x-ms-client-request-id" : "d3d17132-d283-4c5a-a6bb-485e30768fcf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.3.2021091203?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "132c263f-7b1e-48c1-9e68-6b7241674919", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa15451e-160f-4fd6-8797-b0ffe7ba494a", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12525,Microsoft.Compute/GetVMImageFromLocation30Min;73525", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:aa15451e-160f-4fd6-8797-b0ffe7ba494a", - "Expires" : "-1", - "x-ms-request-id" : "f0a7f567-826d-4b34-b53a-ac4464c36279", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.3.2021091203\"\r\n}", - "x-ms-client-request-id" : "132c263f-7b1e-48c1-9e68-6b7241674919", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.0.2021011801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09478e47-edb9-43f0-9338-6f9b39b69247", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6a41aae-8dc1-41b9-9ecd-43d148c87a7b", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12522,Microsoft.Compute/GetVMImageFromLocation30Min;73522", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:e6a41aae-8dc1-41b9-9ecd-43d148c87a7b", - "Expires" : "-1", - "x-ms-request-id" : "0e7e1146-b432-482f-a2da-e3d056a1d09c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.0.2021011801\"\r\n}", - "x-ms-client-request-id" : "09478e47-edb9-43f0-9338-6f9b39b69247", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.4.2022031605?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f58e9a1-42e3-496e-a005-c356829c11f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad1ffa70-bdf1-4393-8d82-a864f9bd3a35", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12521,Microsoft.Compute/GetVMImageFromLocation30Min;73521", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:ad1ffa70-bdf1-4393-8d82-a864f9bd3a35", - "Expires" : "-1", - "x-ms-request-id" : "03459e3c-f10e-4524-b1ac-aa3fa2dcdb7f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031605\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.4.2022031605\"\r\n}", - "x-ms-client-request-id" : "5f58e9a1-42e3-496e-a005-c356829c11f4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw/versions/8.5.2022031405?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f2d646f-261a-48b4-8184-8695677687e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1045", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "140f10d1-dd5c-4ba5-b03d-a270127a2b62", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12520,Microsoft.Compute/GetVMImageFromLocation30Min;73520", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130403Z:140f10d1-dd5c-4ba5-b03d-a270127a2b62", - "Expires" : "-1", - "x-ms-request-id" : "9d81fb1d-ffdf-478b-b006-7accfdb37510", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031405\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw/Versions/8.5.2022031405\"\r\n}", - "x-ms-client-request-id" : "1f2d646f-261a-48b4-8184-8695677687e1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27a357be-6d68-4fba-86c5-e43f6fa297dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6072", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eca0f7da-8ca4-4e52-ae36-d63c07a211e1", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15853,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:eca0f7da-8ca4-4e52-ae36-d63c07a211e1", - "Expires" : "-1", - "x-ms-request-id" : "cbdd86a5-74ad-4681-9b39-45c4f5814988", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.0.2021011802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.0.2021091204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.0.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.1.2021011802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.1.2021091204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.1.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2021011802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2021091204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032806\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2022032806\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2021011902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2021091204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021053102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021080902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021081002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021091204\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2022031606\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.5.2022031406\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.5.2022032202\"\r\n }\r\n]", - "x-ms-client-request-id" : "27a357be-6d68-4fba-86c5-e43f6fa297dd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.0.2021091204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed873672-847d-4c80-adaa-b998c95017f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05753fae-3d0b-43d9-9206-60d65b85f630", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12519,Microsoft.Compute/GetVMImageFromLocation30Min;73519", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:05753fae-3d0b-43d9-9206-60d65b85f630", - "Expires" : "-1", - "x-ms-request-id" : "6737549c-e389-4ffc-b322-9d1a0d3a5c73", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.0.2021091204\"\r\n}", - "x-ms-client-request-id" : "ed873672-847d-4c80-adaa-b998c95017f7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.4.2021091204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7df80862-3967-4086-b6e1-d7d6fba3d079", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eba607e1-d12e-4a50-9d7e-62708d2ce571", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12511,Microsoft.Compute/GetVMImageFromLocation30Min;73511", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:eba607e1-d12e-4a50-9d7e-62708d2ce571", - "Expires" : "-1", - "x-ms-request-id" : "b7ffae17-52a2-4d90-a708-9fa707c82c6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021091204\"\r\n}", - "x-ms-client-request-id" : "7df80862-3967-4086-b6e1-d7d6fba3d079", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.1.2021091204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d814193-262d-46d1-861d-b37dc51c695e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3366e4b-e62c-45f2-a293-4e606a5f7e8e", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12516,Microsoft.Compute/GetVMImageFromLocation30Min;73516", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:d3366e4b-e62c-45f2-a293-4e606a5f7e8e", - "Expires" : "-1", - "x-ms-request-id" : "4e900da1-44cd-4a6d-bacc-7172c2af64ef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.1.2021091204\"\r\n}", - "x-ms-client-request-id" : "2d814193-262d-46d1-861d-b37dc51c695e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.5.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14ef3943-781b-4c3f-a3c9-72db8ef47ecc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf5533f0-55eb-485d-b833-1e24a1e5629f", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12508,Microsoft.Compute/GetVMImageFromLocation30Min;73508", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:bf5533f0-55eb-485d-b833-1e24a1e5629f", - "Expires" : "-1", - "x-ms-request-id" : "12d22352-b346-4f81-aa3d-3ab3a8108776", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.5.2022031406\"\r\n}", - "x-ms-client-request-id" : "14ef3943-781b-4c3f-a3c9-72db8ef47ecc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.3.2021011902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f02d5fba-c303-457f-9601-6b07031c2ac0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11751", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4bda4dea-56b0-40b8-8b24-fb1d84f51d11", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12505,Microsoft.Compute/GetVMImageFromLocation30Min;73505", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:4bda4dea-56b0-40b8-8b24-fb1d84f51d11", - "Expires" : "-1", - "x-ms-request-id" : "951c3b9d-c5a9-44f1-b0c4-e915e10c9c17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2021011902\"\r\n}", - "x-ms-client-request-id" : "f02d5fba-c303-457f-9601-6b07031c2ac0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.5.2022032202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef606179-7231-4492-a7a6-796d2fb52bb5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5dd7406c-8c89-4a8c-8abc-c2cb31797ba8", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12502,Microsoft.Compute/GetVMImageFromLocation30Min;73502", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:5dd7406c-8c89-4a8c-8abc-c2cb31797ba8", - "Expires" : "-1", - "x-ms-request-id" : "34836e8f-6c2d-47be-a515-5ec0086de00a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.5.2022032202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.5.2022032202\"\r\n}", - "x-ms-client-request-id" : "ef606179-7231-4492-a7a6-796d2fb52bb5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.2.2022032806?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c034d39-8297-4fef-ab03-3342136ac70a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c127f9e5-495e-471a-ace5-4b0a75a89c89", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12510,Microsoft.Compute/GetVMImageFromLocation30Min;73510", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:c127f9e5-495e-471a-ace5-4b0a75a89c89", - "Expires" : "-1", - "x-ms-request-id" : "677f680c-1b4a-4801-810c-19ac0533dd9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032806\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2022032806\"\r\n}", - "x-ms-client-request-id" : "0c034d39-8297-4fef-ab03-3342136ac70a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.0.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aef83069-fc79-48f6-ab0c-0d90e935e258", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "060fedb0-2f28-47fa-a364-05a01a677188", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12518,Microsoft.Compute/GetVMImageFromLocation30Min;73518", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:060fedb0-2f28-47fa-a364-05a01a677188", - "Expires" : "-1", - "x-ms-request-id" : "6f23904e-c7d2-4690-aad7-0d177c00b480", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.0.2022031406\"\r\n}", - "x-ms-client-request-id" : "aef83069-fc79-48f6-ab0c-0d90e935e258", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.3.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00a53129-6471-44f7-bd48-4b00d7175b50", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2a618ef-bb28-47a7-9b7a-2725d07b8717", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12514,Microsoft.Compute/GetVMImageFromLocation30Min;73514", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:f2a618ef-bb28-47a7-9b7a-2725d07b8717", - "Expires" : "-1", - "x-ms-request-id" : "7503b904-0d01-48c3-a804-667920873467", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2021040902\"\r\n}", - "x-ms-client-request-id" : "00a53129-6471-44f7-bd48-4b00d7175b50", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.4.2022031606?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd9bb9ba-202c-49b3-971b-c15f18135d5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf756507-8ae2-4fd1-8400-7cc07fa88028", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12509,Microsoft.Compute/GetVMImageFromLocation30Min;73509", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:bf756507-8ae2-4fd1-8400-7cc07fa88028", - "Expires" : "-1", - "x-ms-request-id" : "4713782f-f54a-41b5-a80e-8801b95fb488", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031606\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2022031606\"\r\n}", - "x-ms-client-request-id" : "bd9bb9ba-202c-49b3-971b-c15f18135d5a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.0.2021011802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36f9abce-5471-4620-9cea-948112ec231f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e80f13b-50cf-4f0f-b115-eef29c07324b", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12517,Microsoft.Compute/GetVMImageFromLocation30Min;73517", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:6e80f13b-50cf-4f0f-b115-eef29c07324b", - "Expires" : "-1", - "x-ms-request-id" : "995317a3-383d-44ba-8ee9-a7ba10af9328", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.0.2021011802\"\r\n}", - "x-ms-client-request-id" : "36f9abce-5471-4620-9cea-948112ec231f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.1.2021011802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "888ab4c6-540c-4b47-ac6c-ce0db7e827ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4516aeff-f7ff-481e-a0fd-1543037881ec", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12515,Microsoft.Compute/GetVMImageFromLocation30Min;73515", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:4516aeff-f7ff-481e-a0fd-1543037881ec", - "Expires" : "-1", - "x-ms-request-id" : "ed499429-6f50-4f16-b9bc-8a719c640c88", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.1.2021011802\"\r\n}", - "x-ms-client-request-id" : "888ab4c6-540c-4b47-ac6c-ce0db7e827ff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.4.2021053102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b2149de-d5ec-49f4-bdb9-557a33dc7cfe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8427727-3923-4bda-8951-a0fe3a08f1ef", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12512,Microsoft.Compute/GetVMImageFromLocation30Min;73512", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:d8427727-3923-4bda-8951-a0fe3a08f1ef", - "Expires" : "-1", - "x-ms-request-id" : "2e0fbd7b-46d5-48d1-a989-a68d60f2fbba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021053102\"\r\n}", - "x-ms-client-request-id" : "7b2149de-d5ec-49f4-bdb9-557a33dc7cfe", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.2.2021091204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f458bf5-b4ad-4c2f-b1e0-8c45cd638f9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd56ee0f-8ba9-49d5-98cd-0c55bbde8898", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12513,Microsoft.Compute/GetVMImageFromLocation30Min;73513", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:cd56ee0f-8ba9-49d5-98cd-0c55bbde8898", - "Expires" : "-1", - "x-ms-request-id" : "e4a95829-eceb-4f05-aa6c-903b21779813", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2021091204\"\r\n}", - "x-ms-client-request-id" : "6f458bf5-b4ad-4c2f-b1e0-8c45cd638f9c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.2.2021011802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57a7af72-1b33-4cc6-87b8-10032fda8dd4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9f453df-cdb5-4108-adf4-5578599aa66f", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12503,Microsoft.Compute/GetVMImageFromLocation30Min;73503", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:a9f453df-cdb5-4108-adf4-5578599aa66f", - "Expires" : "-1", - "x-ms-request-id" : "9da454a0-d53d-490d-96da-bba6f9855d9c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2021011802\"\r\n}", - "x-ms-client-request-id" : "57a7af72-1b33-4cc6-87b8-10032fda8dd4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.4.2021081002?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7716dfc-51ac-4c81-a734-c853b72136d6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11723", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "026ed644-559f-4a9a-b28f-4594263c572f", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12506,Microsoft.Compute/GetVMImageFromLocation30Min;73506", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:026ed644-559f-4a9a-b28f-4594263c572f", - "Expires" : "-1", - "x-ms-request-id" : "3aa02da9-57c6-41ab-929d-813e4a5293f1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021081002\"\r\n}", - "x-ms-client-request-id" : "b7716dfc-51ac-4c81-a734-c853b72136d6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.4.2021080902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53440647-a0ff-4ece-8687-35b556261534", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b35d412-4f53-4a2d-8f4b-f0f7dc434c9d", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12501,Microsoft.Compute/GetVMImageFromLocation30Min;73501", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:5b35d412-4f53-4a2d-8f4b-f0f7dc434c9d", - "Expires" : "-1", - "x-ms-request-id" : "ed961bd3-1590-43a9-9102-a209ae2c67d8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.4.2021080902\"\r\n}", - "x-ms-client-request-id" : "53440647-a0ff-4ece-8687-35b556261534", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.1.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13104b53-2862-4816-90bc-d4c4836f503e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "704d80cc-30dc-499a-acf9-ae693bfd6fe5", - "Date" : "Tue, 24 May 2022 13:04:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12507,Microsoft.Compute/GetVMImageFromLocation30Min;73507", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:704d80cc-30dc-499a-acf9-ae693bfd6fe5", - "Expires" : "-1", - "x-ms-request-id" : "62565ed0-6a55-4388-afdd-468f46af47dc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.1.2022031406\"\r\n}", - "x-ms-client-request-id" : "13104b53-2862-4816-90bc-d4c4836f503e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.3.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2967d49a-db54-4b04-bd68-863d60512305", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "74ecad02-7494-401a-ad12-6e8440ddd432", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12504,Microsoft.Compute/GetVMImageFromLocation30Min;73504", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:74ecad02-7494-401a-ad12-6e8440ddd432", - "Expires" : "-1", - "x-ms-request-id" : "805f9095-5e06-4433-a213-c876b0099735", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2022031406\"\r\n}", - "x-ms-client-request-id" : "2967d49a-db54-4b04-bd68-863d60512305", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.3.2021091204?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b407b948-939d-4cc3-9908-199e46dd7e14", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1c7f666-59d8-41a7-8cec-e31e701df544", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12499,Microsoft.Compute/GetVMImageFromLocation30Min;73499", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130405Z:e1c7f666-59d8-41a7-8cec-e31e701df544", - "Expires" : "-1", - "x-ms-request-id" : "f806237e-e0da-475d-ac01-130a48effc97", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091204\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.3.2021091204\"\r\n}", - "x-ms-client-request-id" : "b407b948-939d-4cc3-9908-199e46dd7e14", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8-raw-gen2/versions/8.2.2022031406?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e830d6d-0535-4723-81d4-9f7ecca26873", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1138", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3963d61b-e184-4a72-b189-7396ffb98601", - "Date" : "Tue, 24 May 2022 13:04:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12500,Microsoft.Compute/GetVMImageFromLocation30Min;73500", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130404Z:3963d61b-e184-4a72-b189-7396ffb98601", - "Expires" : "-1", - "x-ms-request-id" : "2aaae0a1-6101-4c86-b5bc-acb8cdf61fff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031406\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8-raw-gen2/Versions/8.2.2022031406\"\r\n}", - "x-ms-client-request-id" : "3e830d6d-0535-4723-81d4-9f7ecca26873", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/80-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "401dfd6d-0eac-4f10-bdf6-bc7da64248a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1147", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c716075f-110b-4a44-9faf-fb525355d63b", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15852,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130405Z:c716075f-110b-4a44-9faf-fb525355d63b", - "Expires" : "-1", - "x-ms-request-id" : "b7b22744-8b2c-4316-895f-68dc4d8dea63", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2021011902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "401dfd6d-0eac-4f10-bdf6-bc7da64248a2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/80-gen2/versions/8.0.2021011902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3897ef61-99eb-42e5-9aba-b0a4dd61c4af", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ccab9bbb-d40a-4918-a1bf-047b808ff04d", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12497,Microsoft.Compute/GetVMImageFromLocation30Min;73497", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130405Z:ccab9bbb-d40a-4918-a1bf-047b808ff04d", - "Expires" : "-1", - "x-ms-request-id" : "ff3554a5-0509-4f8e-9836-b5d441107706", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2021011902\"\r\n}", - "x-ms-client-request-id" : "3897ef61-99eb-42e5-9aba-b0a4dd61c4af", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/80-gen2/versions/8.0.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9d41a25-53d0-4c2f-a277-7ea76e70c582", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40343e6b-b7f2-4ff2-bff7-0e8ba4925127", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12498,Microsoft.Compute/GetVMImageFromLocation30Min;73498", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130405Z:40343e6b-b7f2-4ff2-bff7-0e8ba4925127", - "Expires" : "-1", - "x-ms-request-id" : "9471c041-e686-446b-a203-82d152e7aa24", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2021040902\"\r\n}", - "x-ms-client-request-id" : "d9d41a25-53d0-4c2f-a277-7ea76e70c582", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/80-gen2/versions/8.0.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa5cac18-b2ac-4136-8165-bcd6b57fede5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "efd7a0c9-ba65-4a34-83ba-d4645c1c9897", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12495,Microsoft.Compute/GetVMImageFromLocation30Min;73495", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130405Z:efd7a0c9-ba65-4a34-83ba-d4645c1c9897", - "Expires" : "-1", - "x-ms-request-id" : "93be9ee4-84c0-4093-83ce-df465eef5100", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2022031402\"\r\n}", - "x-ms-client-request-id" : "aa5cac18-b2ac-4136-8165-bcd6b57fede5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/80-gen2/versions/8.0.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "508ae6cd-b079-47c8-bb8f-10940b5657d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1a58489-8591-4531-8bb0-a8a482a92299", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12496,Microsoft.Compute/GetVMImageFromLocation30Min;73496", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130405Z:a1a58489-8591-4531-8bb0-a8a482a92299", - "Expires" : "-1", - "x-ms-request-id" : "e3874759-8799-4568-b1ce-7db8c827a533", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/80-gen2/Versions/8.0.2021091202\"\r\n}", - "x-ms-client-request-id" : "508ae6cd-b079-47c8-bb8f-10940b5657d1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/81-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70384064-8e53-4466-89e4-2647bf315f54", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1147", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "761a2a5f-2b9a-47e6-999e-b8e2e36689c3", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15851,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130406Z:761a2a5f-2b9a-47e6-999e-b8e2e36689c3", - "Expires" : "-1", - "x-ms-request-id" : "57f59a8e-41a6-41eb-ade4-403f50ecadf3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2021011902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "70384064-8e53-4466-89e4-2647bf315f54", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/81-gen2/versions/8.1.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87604bee-694d-40be-9889-7fd75ff0e4ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b42a2615-0633-407f-afb5-c39aa20dfb84", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12492,Microsoft.Compute/GetVMImageFromLocation30Min;73492", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130406Z:b42a2615-0633-407f-afb5-c39aa20dfb84", - "Expires" : "-1", - "x-ms-request-id" : "c8ed0891-3a83-4bc0-985d-dfef4929be19", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2021040902\"\r\n}", - "x-ms-client-request-id" : "87604bee-694d-40be-9889-7fd75ff0e4ea", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/81-gen2/versions/8.1.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8f9adf5-ec70-4cc9-836c-4449937a485e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "106e5759-84f8-4bb1-b461-1ac3ac3041c6", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12493,Microsoft.Compute/GetVMImageFromLocation30Min;73493", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130406Z:106e5759-84f8-4bb1-b461-1ac3ac3041c6", - "Expires" : "-1", - "x-ms-request-id" : "6b90d477-b5b3-4d4d-a867-ab1eeee41455", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2021091202\"\r\n}", - "x-ms-client-request-id" : "c8f9adf5-ec70-4cc9-836c-4449937a485e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/81-gen2/versions/8.1.2021011902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75089ebe-a84f-47a2-9a71-1b03bc49458d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed58f5e1-e83e-4782-ad06-1412c59fd014", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12494,Microsoft.Compute/GetVMImageFromLocation30Min;73494", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130406Z:ed58f5e1-e83e-4782-ad06-1412c59fd014", - "Expires" : "-1", - "x-ms-request-id" : "0b9fa18d-29b3-4fe1-a7f1-2d531f9f7166", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2021011902\"\r\n}", - "x-ms-client-request-id" : "75089ebe-a84f-47a2-9a71-1b03bc49458d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/81-gen2/versions/8.1.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf0fb937-e990-4e66-9aa0-30cd69e9522e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7ebbef5-8bbe-4acb-917e-ca2ac3d62976", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12491,Microsoft.Compute/GetVMImageFromLocation30Min;73491", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130406Z:e7ebbef5-8bbe-4acb-917e-ca2ac3d62976", - "Expires" : "-1", - "x-ms-request-id" : "9132334d-6f41-4459-b291-6ad5d2894483", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/81-gen2/Versions/8.1.2022031402\"\r\n}", - "x-ms-client-request-id" : "bf0fb937-e990-4e66-9aa0-30cd69e9522e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/82-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6dc0b1e4-b603-4fd1-b81f-af55c2d1968f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "066ccf96-5ff5-4bac-a16e-e4db1fd4e834", - "Date" : "Tue, 24 May 2022 13:04:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15850,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130406Z:066ccf96-5ff5-4bac-a16e-e4db1fd4e834", - "Expires" : "-1", - "x-ms-request-id" : "b2d33638-be67-421c-8a8d-23e3ae8cfe2f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2021011902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2022031402\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2022032802\"\r\n }\r\n]", - "x-ms-client-request-id" : "6dc0b1e4-b603-4fd1-b81f-af55c2d1968f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/82-gen2/versions/8.2.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "255d0ff9-c278-4d55-8ba0-123ab002ea2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11722", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "465efd50-9837-40af-8117-7dee2d4609e7", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12490,Microsoft.Compute/GetVMImageFromLocation30Min;73490", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:465efd50-9837-40af-8117-7dee2d4609e7", - "Expires" : "-1", - "x-ms-request-id" : "e6780d48-2492-4e39-a452-99a0febdb99a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2022031402\"\r\n}", - "x-ms-client-request-id" : "255d0ff9-c278-4d55-8ba0-123ab002ea2d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/82-gen2/versions/8.2.2022032802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ac06b10-9c2c-470c-bedd-efee8a7416df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce579646-3144-4d52-8b85-5a6ca87a9f02", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12489,Microsoft.Compute/GetVMImageFromLocation30Min;73489", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:ce579646-3144-4d52-8b85-5a6ca87a9f02", - "Expires" : "-1", - "x-ms-request-id" : "44fa04f5-cc47-41b8-9c75-1be2633591c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2022032802\"\r\n}", - "x-ms-client-request-id" : "4ac06b10-9c2c-470c-bedd-efee8a7416df", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/82-gen2/versions/8.2.2021011902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b8efe57-169d-41f6-98dd-40b9bf4479b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "276e2f25-0ba8-457a-b847-9b0c08f95c16", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12488,Microsoft.Compute/GetVMImageFromLocation30Min;73488", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:276e2f25-0ba8-457a-b847-9b0c08f95c16", - "Expires" : "-1", - "x-ms-request-id" : "b40bc255-f4bb-4ee4-96ac-d9746f0a4fb0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2021011902\"\r\n}", - "x-ms-client-request-id" : "4b8efe57-169d-41f6-98dd-40b9bf4479b1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/82-gen2/versions/8.2.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4aa6a72f-6d7c-47d5-91ab-6031438345fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c6f66b8-dbae-40c0-89c6-3b000085c548", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12487,Microsoft.Compute/GetVMImageFromLocation30Min;73487", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:3c6f66b8-dbae-40c0-89c6-3b000085c548", - "Expires" : "-1", - "x-ms-request-id" : "4c3c2c1f-ce97-4072-bb0e-2fab736daba4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2021040902\"\r\n}", - "x-ms-client-request-id" : "4aa6a72f-6d7c-47d5-91ab-6031438345fb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/82-gen2/versions/8.2.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "139e69a6-9a1f-45ed-99cf-f6c2f7f99a7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b4a157d-6b73-427d-816a-d30a9b81d4e2", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12486,Microsoft.Compute/GetVMImageFromLocation30Min;73486", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:3b4a157d-6b73-427d-816a-d30a9b81d4e2", - "Expires" : "-1", - "x-ms-request-id" : "5bcd3123-ef00-4bb1-bc33-0c2ab72abd8d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/82-gen2/Versions/8.2.2021091202\"\r\n}", - "x-ms-client-request-id" : "139e69a6-9a1f-45ed-99cf-f6c2f7f99a7c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/83-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "706dd0c7-34f8-4d53-99b0-ff0a17259448", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1147", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93253627-e343-4455-bb86-a052337f0296", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15849,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:93253627-e343-4455-bb86-a052337f0296", - "Expires" : "-1", - "x-ms-request-id" : "717916cc-1a3b-4b0c-ad16-879faf109936", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2021011902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "706dd0c7-34f8-4d53-99b0-ff0a17259448", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/83-gen2/versions/8.3.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c253aad-4442-4fa2-848f-c9c4facc7caf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "993ce9c3-f99e-4b2a-b1fc-dc90f4a8be9d", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12482,Microsoft.Compute/GetVMImageFromLocation30Min;73482", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:993ce9c3-f99e-4b2a-b1fc-dc90f4a8be9d", - "Expires" : "-1", - "x-ms-request-id" : "5856a11f-b8dc-4fc9-9009-7abd7098c7bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2022031402\"\r\n}", - "x-ms-client-request-id" : "3c253aad-4442-4fa2-848f-c9c4facc7caf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/83-gen2/versions/8.3.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e4adc29-a33a-457f-8380-8720fb3f21d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5b010f2-840e-423b-92df-200234883d11", - "Date" : "Tue, 24 May 2022 13:04:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12483,Microsoft.Compute/GetVMImageFromLocation30Min;73483", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:f5b010f2-840e-423b-92df-200234883d11", - "Expires" : "-1", - "x-ms-request-id" : "54a9fcb6-06d8-4f33-9f6f-04ab3f79d5a5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2021040902\"\r\n}", - "x-ms-client-request-id" : "1e4adc29-a33a-457f-8380-8720fb3f21d1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/83-gen2/versions/8.3.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ac53c27-8ad3-4bee-8c73-d98720b708e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a261f211-f1d7-40d1-b9e9-6bf5d83b9664", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12485,Microsoft.Compute/GetVMImageFromLocation30Min;73485", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:a261f211-f1d7-40d1-b9e9-6bf5d83b9664", - "Expires" : "-1", - "x-ms-request-id" : "65597eda-ed50-4c91-89e4-f874c526f8a3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2021091202\"\r\n}", - "x-ms-client-request-id" : "1ac53c27-8ad3-4bee-8c73-d98720b708e6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/83-gen2/versions/8.3.2021011902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd65d831-6f5b-454b-a187-15d4b13b097a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a61bc95d-0272-47e8-8f3b-b3f882841808", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12484,Microsoft.Compute/GetVMImageFromLocation30Min;73484", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130407Z:a61bc95d-0272-47e8-8f3b-b3f882841808", - "Expires" : "-1", - "x-ms-request-id" : "51b4e480-12ab-48cf-a01e-a8935e92d1bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/83-gen2/Versions/8.3.2021011902\"\r\n}", - "x-ms-client-request-id" : "dd65d831-6f5b-454b-a187-15d4b13b097a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/84-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dfcd2cd-d233-4314-9cba-2763dec30255", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcd42b74-5775-4904-992f-7ac570a7a72d", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15848,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:fcd42b74-5775-4904-992f-7ac570a7a72d", - "Expires" : "-1", - "x-ms-request-id" : "da037366-a5db-4401-8cd7-73d7ad328463", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021053102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021080902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021081002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "3dfcd2cd-d233-4314-9cba-2763dec30255", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/84-gen2/versions/8.4.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52d439d7-d25c-4db5-a60f-03f0eef4461e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e37167b-82c2-4d7e-9c83-4330f82bc723", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12481,Microsoft.Compute/GetVMImageFromLocation30Min;73481", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:8e37167b-82c2-4d7e-9c83-4330f82bc723", - "Expires" : "-1", - "x-ms-request-id" : "682884d7-8970-4521-99e7-5ddbb5ac7862", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021091202\"\r\n}", - "x-ms-client-request-id" : "52d439d7-d25c-4db5-a60f-03f0eef4461e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/84-gen2/versions/8.4.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8125a08-9b7e-421d-8e2a-e5ac8ba68fa9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf520459-aaa6-40cf-bf23-8c29e493326e", - "Date" : "Tue, 24 May 2022 13:04:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12478,Microsoft.Compute/GetVMImageFromLocation30Min;73478", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:cf520459-aaa6-40cf-bf23-8c29e493326e", - "Expires" : "-1", - "x-ms-request-id" : "115b7785-c0fc-4229-9ff5-2528323b8162", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2022031402\"\r\n}", - "x-ms-client-request-id" : "e8125a08-9b7e-421d-8e2a-e5ac8ba68fa9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/84-gen2/versions/8.4.2021081002?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "299594c0-8ae3-4808-9878-11fe61e24d77", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf0d7d6f-db5b-4d8f-a099-bc08d81b2c8c", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12480,Microsoft.Compute/GetVMImageFromLocation30Min;73480", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:bf0d7d6f-db5b-4d8f-a099-bc08d81b2c8c", - "Expires" : "-1", - "x-ms-request-id" : "e7bdc30c-ea91-44cc-bc8f-96332f93eca0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021081002\"\r\n}", - "x-ms-client-request-id" : "299594c0-8ae3-4808-9878-11fe61e24d77", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/84-gen2/versions/8.4.2021080902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3949ca31-e9bf-4660-aa2e-02a9e8da449a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2eeff02e-287d-41ad-be0e-430731f75dbb", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12479,Microsoft.Compute/GetVMImageFromLocation30Min;73479", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:2eeff02e-287d-41ad-be0e-430731f75dbb", - "Expires" : "-1", - "x-ms-request-id" : "f043901e-e5c7-4217-a2aa-8410e41f42ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021080902\"\r\n}", - "x-ms-client-request-id" : "3949ca31-e9bf-4660-aa2e-02a9e8da449a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/84-gen2/versions/8.4.2021053102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0136c72-5ff5-42a4-9f0c-baec7c0f4de1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "965", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88f87396-04e8-49d3-9c8e-07390b8cf3cf", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12477,Microsoft.Compute/GetVMImageFromLocation30Min;73477", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:88f87396-04e8-49d3-9c8e-07390b8cf3cf", - "Expires" : "-1", - "x-ms-request-id" : "75a2dcde-13f7-4aad-bb53-aa2c345ac442", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/84-gen2/Versions/8.4.2021053102\"\r\n}", - "x-ms-client-request-id" : "d0136c72-5ff5-42a4-9f0c-baec7c0f4de1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/86-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52dcc2f9-81ff-49ed-bd6d-01b209099a6c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "006f696f-c8ac-4066-81ff-568ee24e9ca9", - "Date" : "Tue, 24 May 2022 13:04:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15847,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130408Z:006f696f-c8ac-4066-81ff-568ee24e9ca9", - "Expires" : "-1", - "x-ms-request-id" : "7dc91f4f-b80e-44cf-bb5f-c262be46bc00", - "Body" : "[]", - "x-ms-client-request-id" : "52dcc2f9-81ff-49ed-bd6d-01b209099a6c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_0/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b12258ab-73c0-42f8-8434-bca51552590f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf48c8ef-beea-4799-be82-e035ba3b6ffd", - "Date" : "Tue, 24 May 2022 13:04:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15846,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130409Z:bf48c8ef-beea-4799-be82-e035ba3b6ffd", - "Expires" : "-1", - "x-ms-request-id" : "f1b626ec-967a-4a81-8a6b-e037aad1074e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2021011901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "b12258ab-73c0-42f8-8434-bca51552590f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_0/versions/8.0.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c6ddd1b-8b8c-4f38-baa3-be88699690a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a6c9510-a4f4-4078-ac2f-68ad22ac6c1e", - "Date" : "Tue, 24 May 2022 13:04:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12476,Microsoft.Compute/GetVMImageFromLocation30Min;73476", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130409Z:7a6c9510-a4f4-4078-ac2f-68ad22ac6c1e", - "Expires" : "-1", - "x-ms-request-id" : "b74ebea6-949f-4596-adc7-4e1a8e816405", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2021040901\"\r\n}", - "x-ms-client-request-id" : "1c6ddd1b-8b8c-4f38-baa3-be88699690a8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_0/versions/8.0.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7677197-e881-4a66-83d2-eed166b53390", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "619dea92-eec8-4d88-94c5-93a554425380", - "Date" : "Tue, 24 May 2022 13:04:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12475,Microsoft.Compute/GetVMImageFromLocation30Min;73475", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130409Z:619dea92-eec8-4d88-94c5-93a554425380", - "Expires" : "-1", - "x-ms-request-id" : "f0d7f4ed-3a79-4195-a1df-1db92a87f9f1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2022031401\"\r\n}", - "x-ms-client-request-id" : "e7677197-e881-4a66-83d2-eed166b53390", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_0/versions/8.0.2021011901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e40da3e5-71a4-4aab-a48c-20da180fc660", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0bfdd48-16ad-49cf-baa4-d76df8f08f96", - "Date" : "Tue, 24 May 2022 13:04:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12473,Microsoft.Compute/GetVMImageFromLocation30Min;73473", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130409Z:b0bfdd48-16ad-49cf-baa4-d76df8f08f96", - "Expires" : "-1", - "x-ms-request-id" : "047a1c07-175a-4521-baa5-de44a8f514d9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2021011901\"\r\n}", - "x-ms-client-request-id" : "e40da3e5-71a4-4aab-a48c-20da180fc660", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_0/versions/8.0.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "385e1bb5-8107-48df-b2df-f64c5fd79777", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f426af2-19c1-452c-b736-e606742c88ca", - "Date" : "Tue, 24 May 2022 13:04:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12474,Microsoft.Compute/GetVMImageFromLocation30Min;73474", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130409Z:2f426af2-19c1-452c-b736-e606742c88ca", - "Expires" : "-1", - "x-ms-request-id" : "075f423a-6e6d-4247-a8a3-706b1eb0b540", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.0.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_0/Versions/8.0.2021091201\"\r\n}", - "x-ms-client-request-id" : "385e1bb5-8107-48df-b2df-f64c5fd79777", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "543d9c93-57fa-49db-853c-263368cc3998", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11748", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "825c5a94-339c-4540-b6bc-6dc111e19fe9", - "Date" : "Tue, 24 May 2022 13:04:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15845,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130409Z:825c5a94-339c-4540-b6bc-6dc111e19fe9", - "Expires" : "-1", - "x-ms-request-id" : "eb0dccfd-5d81-413a-8057-00f421b74abd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2021011901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "543d9c93-57fa-49db-853c-263368cc3998", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_1/versions/8.1.2021011901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d908cd60-6143-4269-a283-b73ddbad2f2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49ac615d-e21d-4244-b5f6-0d133ac9b932", - "Date" : "Tue, 24 May 2022 13:04:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12471,Microsoft.Compute/GetVMImageFromLocation30Min;73471", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130410Z:49ac615d-e21d-4244-b5f6-0d133ac9b932", - "Expires" : "-1", - "x-ms-request-id" : "e56a2a84-f214-4202-8f61-f5a3efd2d394", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2021011901\"\r\n}", - "x-ms-client-request-id" : "d908cd60-6143-4269-a283-b73ddbad2f2e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_1/versions/8.1.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aff3ac2e-cc85-4dca-98a9-04a6747045a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11721", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "93688c4b-d315-4582-8471-55aae73e653b", - "Date" : "Tue, 24 May 2022 13:04:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12472,Microsoft.Compute/GetVMImageFromLocation30Min;73472", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130410Z:93688c4b-d315-4582-8471-55aae73e653b", - "Expires" : "-1", - "x-ms-request-id" : "4031b5ab-06a5-4a94-bd98-07898f2dee89", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2021091201\"\r\n}", - "x-ms-client-request-id" : "aff3ac2e-cc85-4dca-98a9-04a6747045a5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_1/versions/8.1.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b51960f-ab84-4a84-9197-d5a1d28a5e19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11747", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "87219529-558c-45aa-8799-8d26a5a80f7f", - "Date" : "Tue, 24 May 2022 13:04:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12469,Microsoft.Compute/GetVMImageFromLocation30Min;73469", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130410Z:87219529-558c-45aa-8799-8d26a5a80f7f", - "Expires" : "-1", - "x-ms-request-id" : "2ee0188d-e69b-46cb-ae8a-982497d0e06c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2022031401\"\r\n}", - "x-ms-client-request-id" : "9b51960f-ab84-4a84-9197-d5a1d28a5e19", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_1/versions/8.1.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b1a5f89-b3cc-45fe-9e20-1adbd1dd513e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "665d3bb5-a82f-4485-b8f1-ff6d5b596826", - "Date" : "Tue, 24 May 2022 13:04:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12470,Microsoft.Compute/GetVMImageFromLocation30Min;73470", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130410Z:665d3bb5-a82f-4485-b8f1-ff6d5b596826", - "Expires" : "-1", - "x-ms-request-id" : "3c79acab-78a9-4a4f-b643-c7ce28696ab7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_1/Versions/8.1.2021040901\"\r\n}", - "x-ms-client-request-id" : "4b1a5f89-b3cc-45fe-9e20-1adbd1dd513e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c304c47-1543-470f-8048-aa8ded4441e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1413", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daf2816f-4f20-4b08-9416-cf7ef239f3df", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15844,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:daf2816f-4f20-4b08-9416-cf7ef239f3df", - "Expires" : "-1", - "x-ms-request-id" : "265d2973-681f-4c3e-80de-5c3991470a1f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2021011901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2022031401\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2022032801\"\r\n }\r\n]", - "x-ms-client-request-id" : "9c304c47-1543-470f-8048-aa8ded4441e1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_2/versions/8.2.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5bd97e5-7eec-44b4-830f-878fda9f1b58", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07f686cd-24f5-4b37-aabc-1197fbfe1300", - "Date" : "Tue, 24 May 2022 13:04:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12467,Microsoft.Compute/GetVMImageFromLocation30Min;73467", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:07f686cd-24f5-4b37-aabc-1197fbfe1300", - "Expires" : "-1", - "x-ms-request-id" : "5032940e-5f59-43f1-9e14-d4f91cfecd1e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2021091201\"\r\n}", - "x-ms-client-request-id" : "a5bd97e5-7eec-44b4-830f-878fda9f1b58", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_2/versions/8.2.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36a9d477-1753-4d62-b5cf-c02346db3c5c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "65124790-824b-4774-ad31-b04766c3648f", - "Date" : "Tue, 24 May 2022 13:04:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12464,Microsoft.Compute/GetVMImageFromLocation30Min;73464", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:65124790-824b-4774-ad31-b04766c3648f", - "Expires" : "-1", - "x-ms-request-id" : "8443409e-8531-4d9f-9332-c0247114af53", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2022031401\"\r\n}", - "x-ms-client-request-id" : "36a9d477-1753-4d62-b5cf-c02346db3c5c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_2/versions/8.2.2022032801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8baee75a-f02a-452e-962d-3f48ab59c22e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "edd26ecc-8e3b-41ee-b4ac-66e50e2ff600", - "Date" : "Tue, 24 May 2022 13:04:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12466,Microsoft.Compute/GetVMImageFromLocation30Min;73466", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:edd26ecc-8e3b-41ee-b4ac-66e50e2ff600", - "Expires" : "-1", - "x-ms-request-id" : "2bd748a9-48f0-426c-bcf9-8050c2e0704b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022032801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2022032801\"\r\n}", - "x-ms-client-request-id" : "8baee75a-f02a-452e-962d-3f48ab59c22e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_2/versions/8.2.2021011901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6041f3c-f901-43c9-8fae-c7dbdbdae8df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c4b40a28-3bbd-4c1a-998f-58d47c945d7b", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12465,Microsoft.Compute/GetVMImageFromLocation30Min;73465", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:c4b40a28-3bbd-4c1a-998f-58d47c945d7b", - "Expires" : "-1", - "x-ms-request-id" : "819baa53-5bb0-4303-a5f2-b32bbf150a09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2021011901\"\r\n}", - "x-ms-client-request-id" : "f6041f3c-f901-43c9-8fae-c7dbdbdae8df", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_2/versions/8.2.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2783b032-aba1-4f80-b428-390fcd0c69ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80356de4-5213-40eb-88bb-87c6df96231e", - "Date" : "Tue, 24 May 2022 13:04:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12468,Microsoft.Compute/GetVMImageFromLocation30Min;73468", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:80356de4-5213-40eb-88bb-87c6df96231e", - "Expires" : "-1", - "x-ms-request-id" : "73b34839-e5da-4818-a606-f61811b8129c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_2/Versions/8.2.2021040901\"\r\n}", - "x-ms-client-request-id" : "2783b032-aba1-4f80-b428-390fcd0c69ce", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "17583652-7d3a-4428-8e7c-64e1508e260e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f6aae0f-4c90-4a7e-9058-a8108099f232", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15843,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130411Z:1f6aae0f-4c90-4a7e-9058-a8108099f232", - "Expires" : "-1", - "x-ms-request-id" : "d8af2c8c-f7b1-45b7-aff2-5a50f920f785", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2021011901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "17583652-7d3a-4428-8e7c-64e1508e260e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_3/versions/8.3.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70770680-f539-472e-bb9a-3b067bc7e0c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7e3b9bb-ca8a-4904-bf2d-75d0cddd43c9", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12461,Microsoft.Compute/GetVMImageFromLocation30Min;73461", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:a7e3b9bb-ca8a-4904-bf2d-75d0cddd43c9", - "Expires" : "-1", - "x-ms-request-id" : "5c8cd853-34b8-45f1-a59a-a7a3ef79826b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2021091201\"\r\n}", - "x-ms-client-request-id" : "70770680-f539-472e-bb9a-3b067bc7e0c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_3/versions/8.3.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ee9172b-c069-4963-81fb-d3c97f50ca99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "20b50d80-fa93-46d5-beec-417eeb556d97", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12462,Microsoft.Compute/GetVMImageFromLocation30Min;73462", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:20b50d80-fa93-46d5-beec-417eeb556d97", - "Expires" : "-1", - "x-ms-request-id" : "5eb41c21-bbe2-4f53-b13c-5b6f86a3f85c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2022031401\"\r\n}", - "x-ms-client-request-id" : "2ee9172b-c069-4963-81fb-d3c97f50ca99", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_3/versions/8.3.2021011901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f3c020d-841e-4961-9e38-fd4f8344ca31", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "371050b8-d363-4b6e-b3f7-8758ace32e45", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12460,Microsoft.Compute/GetVMImageFromLocation30Min;73460", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:371050b8-d363-4b6e-b3f7-8758ace32e45", - "Expires" : "-1", - "x-ms-request-id" : "31848d97-19ec-432c-b7df-c3c3aa1dd0b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021011901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2021011901\"\r\n}", - "x-ms-client-request-id" : "2f3c020d-841e-4961-9e38-fd4f8344ca31", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_3/versions/8.3.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3382da95-1a69-4c9b-9fa7-4556848b4430", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ebb8020-1847-44ab-9eb5-6cad1b66f31d", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12463,Microsoft.Compute/GetVMImageFromLocation30Min;73463", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:7ebb8020-1847-44ab-9eb5-6cad1b66f31d", - "Expires" : "-1", - "x-ms-request-id" : "32ad7432-2556-4d06-a4e0-0a2a810dd65f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.3.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_3/Versions/8.3.2021040901\"\r\n}", - "x-ms-client-request-id" : "3382da95-1a69-4c9b-9fa7-4556848b4430", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c6962a8-97ba-48df-8e8b-66d4b59bc3fb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1413", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c08c887-fdd2-4f24-9fa0-e71166121725", - "Date" : "Tue, 24 May 2022 13:04:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15842,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:1c08c887-fdd2-4f24-9fa0-e71166121725", - "Expires" : "-1", - "x-ms-request-id" : "9f92d908-40a5-42fa-8e4a-948b80d5b7d1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021053101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021080901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021081001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "3c6962a8-97ba-48df-8e8b-66d4b59bc3fb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_4/versions/8.4.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1eeca64e-a8a2-41c6-bcea-0f67eec3307a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1b6aa58-90d8-40af-b00d-4a0a6eda1245", - "Date" : "Tue, 24 May 2022 13:04:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12459,Microsoft.Compute/GetVMImageFromLocation30Min;73459", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:c1b6aa58-90d8-40af-b00d-4a0a6eda1245", - "Expires" : "-1", - "x-ms-request-id" : "e3e268ee-9f7f-4c6a-945d-d81ca800f2c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021091201\"\r\n}", - "x-ms-client-request-id" : "1eeca64e-a8a2-41c6-bcea-0f67eec3307a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_4/versions/8.4.2021053101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86f7b823-4927-4939-af35-5fe0c5973727", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3f896c4-0a87-41a2-bc52-f81e6f21cde7", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12456,Microsoft.Compute/GetVMImageFromLocation30Min;73456", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:c3f896c4-0a87-41a2-bc52-f81e6f21cde7", - "Expires" : "-1", - "x-ms-request-id" : "396f20b5-4d86-4e48-9ad3-c5a9aeb62d48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021053101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021053101\"\r\n}", - "x-ms-client-request-id" : "86f7b823-4927-4939-af35-5fe0c5973727", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_4/versions/8.4.2021081001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b921d578-77a2-4635-a382-8dc69c801f7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11719", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30e52a33-2ffd-41bd-95da-e3e7f7b932dd", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12458,Microsoft.Compute/GetVMImageFromLocation30Min;73458", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:30e52a33-2ffd-41bd-95da-e3e7f7b932dd", - "Expires" : "-1", - "x-ms-request-id" : "4e6a7bfb-afbf-4d5a-8e5a-4a9159cb580d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021081001\"\r\n}", - "x-ms-client-request-id" : "b921d578-77a2-4635-a382-8dc69c801f7e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_4/versions/8.4.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43f521a6-d9b8-49db-b3db-6f2d8b8a1d8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11746", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bdccb7f-2639-47f1-b0d4-dc9f1abdf7fd", - "Date" : "Tue, 24 May 2022 13:04:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12455,Microsoft.Compute/GetVMImageFromLocation30Min;73455", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:6bdccb7f-2639-47f1-b0d4-dc9f1abdf7fd", - "Expires" : "-1", - "x-ms-request-id" : "60d89da7-23df-4256-88c1-c563762be942", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2022031401\"\r\n}", - "x-ms-client-request-id" : "43f521a6-d9b8-49db-b3db-6f2d8b8a1d8c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_4/versions/8.4.2021080901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4df64ab6-d7da-44ed-933d-5fa13f0eaa89", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11719", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "75660e9e-4081-4e75-8dd6-df0fb49ff3c6", - "Date" : "Tue, 24 May 2022 13:04:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12457,Microsoft.Compute/GetVMImageFromLocation30Min;73457", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130412Z:75660e9e-4081-4e75-8dd6-df0fb49ff3c6", - "Expires" : "-1", - "x-ms-request-id" : "75d0e9ee-e241-41f6-8b3d-4a9dceedc69b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 32,\r\n \"sizeInBytes\": 34359738880\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-raw/Skus/8_4/Versions/8.4.2021080901\"\r\n}", - "x-ms-client-request-id" : "4df64ab6-d7da-44ed-933d-5fa13f0eaa89", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-raw/skus/8_6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87c218f5-2f79-4eef-ae80-50310e82a1a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11718", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7bbcf0d-e03f-453b-9f80-3de06ee64c8f", - "Date" : "Tue, 24 May 2022 13:04:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15841,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130413Z:f7bbcf0d-e03f-453b-9f80-3de06ee64c8f", - "Expires" : "-1", - "x-ms-request-id" : "84d1d2f6-1745-42f6-90b0-09fcb544e770", - "Body" : "[]", - "x-ms-client-request-id" : "87c218f5-2f79-4eef-ae80-50310e82a1a9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45013bc8-83dd-4b1c-9f69-255752fafca3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3411", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c4bdd23-5980-42ef-a861-8bf623c8d545", - "Date" : "Tue, 24 May 2022 13:04:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9981,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130413Z:4c4bdd23-5980-42ef-a861-8bf623c8d545", - "Expires" : "-1", - "x-ms-request-id" : "ea2c7d22-3c43-4035-9d5e-8289fd230ef1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"74sap-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/74sap-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76-ci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76-ci\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76-ci-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76-ci-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76sap-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76sap-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"77sap-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/77sap-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "45013bc8-83dd-4b1c-9f69-255752fafca3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3193a5e0-1301-4c08-96b2-b15d55fb8df1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "845", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "adaa9c5b-b298-44dc-952f-d430aad066df", - "Date" : "Tue, 24 May 2022 13:04:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15840,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130413Z:adaa9c5b-b298-44dc-952f-d430aad066df", - "Expires" : "-1", - "x-ms-request-id" : "abb0bdb0-a3c5-48f1-a6c9-b17d518a42bf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019060723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4/Versions/7.4.2019060723\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062505\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4/Versions/7.4.2019062505\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4/Versions/7.4.20191212\"\r\n }\r\n]", - "x-ms-client-request-id" : "3193a5e0-1301-4c08-96b2-b15d55fb8df1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.4/versions/7.4.2019060723?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0c28f47-d8e9-4afe-8dcb-9b9c8dbfec54", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3964436a-8770-4e40-b63e-9992e6c4e8d7", - "Date" : "Tue, 24 May 2022 13:04:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12454,Microsoft.Compute/GetVMImageFromLocation30Min;73454", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130413Z:3964436a-8770-4e40-b63e-9992e6c4e8d7", - "Expires" : "-1", - "x-ms-request-id" : "2070c03e-ef4e-4374-9790-cc8fc6c92736", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019060723\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4/Versions/7.4.2019060723\"\r\n}", - "x-ms-client-request-id" : "d0c28f47-d8e9-4afe-8dcb-9b9c8dbfec54", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.4/versions/7.4.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75c19ac8-6f0e-43be-8feb-3316cc481f49", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f473df08-415a-4de2-8267-66593a1d7cf2", - "Date" : "Tue, 24 May 2022 13:04:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12453,Microsoft.Compute/GetVMImageFromLocation30Min;73453", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130413Z:f473df08-415a-4de2-8267-66593a1d7cf2", - "Expires" : "-1", - "x-ms-request-id" : "1ac4a900-188a-4a76-b120-5e59e5306963", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4/Versions/7.4.20191212\"\r\n}", - "x-ms-client-request-id" : "75c19ac8-6f0e-43be-8feb-3316cc481f49", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.4/versions/7.4.2019062505?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6d821eb-079c-44bb-af05-6c770354771d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aefc0d55-b57a-416c-8f9b-3ece31a592c3", - "Date" : "Tue, 24 May 2022 13:04:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12452,Microsoft.Compute/GetVMImageFromLocation30Min;73452", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:aefc0d55-b57a-416c-8f9b-3ece31a592c3", - "Expires" : "-1", - "x-ms-request-id" : "5cbcf8fa-660d-4c16-a25f-8eb856e9bc59", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062505\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.4/Versions/7.4.2019062505\"\r\n}", - "x-ms-client-request-id" : "e6d821eb-079c-44bb-af05-6c770354771d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.5/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9df555e-6a16-446b-99d8-0b2e4c5b923c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11745", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2589049c-a0b5-4309-8771-6c00e76f137a", - "Date" : "Tue, 24 May 2022 13:04:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15839,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:2589049c-a0b5-4309-8771-6c00e76f137a", - "Expires" : "-1", - "x-ms-request-id" : "06478585-632f-4afc-8ab1-95fcad135aa6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018102923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2018102923\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018112619\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2018112619\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019060721\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2019060721\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062505\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2019062505\"\r\n }\r\n]", - "x-ms-client-request-id" : "a9df555e-6a16-446b-99d8-0b2e4c5b923c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.5/versions/7.5.2018102923?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5fce5052-2d48-4a48-9fa6-2cf3435ebe67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "665", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "52576680-d879-4a75-b6b2-1a5f39905d42", - "Date" : "Tue, 24 May 2022 13:04:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12451,Microsoft.Compute/GetVMImageFromLocation30Min;73451", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:52576680-d879-4a75-b6b2-1a5f39905d42", - "Expires" : "-1", - "x-ms-request-id" : "0b20726e-307e-48c1-b06d-179114060fb1", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018102923\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2018102923\"\r\n}", - "x-ms-client-request-id" : "5fce5052-2d48-4a48-9fa6-2cf3435ebe67", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.5/versions/7.5.2019060721?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc64a19d-8a5b-405b-8218-bf34a9f5e42d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "665", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09cb028f-0b4c-4ca4-a12f-d9586c36e2af", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12448,Microsoft.Compute/GetVMImageFromLocation30Min;73448", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:09cb028f-0b4c-4ca4-a12f-d9586c36e2af", - "Expires" : "-1", - "x-ms-request-id" : "886f3646-84cd-4b72-a20e-eff6cd6f0339", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019060721\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2019060721\"\r\n}", - "x-ms-client-request-id" : "dc64a19d-8a5b-405b-8218-bf34a9f5e42d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.5/versions/7.5.2018112619?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6ea4b94-23f3-4ff5-a3ce-3eb278eb410a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "665", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a740097-37fd-47e1-b90e-606d97348f7d", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12450,Microsoft.Compute/GetVMImageFromLocation30Min;73450", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:2a740097-37fd-47e1-b90e-606d97348f7d", - "Expires" : "-1", - "x-ms-request-id" : "968e8c94-0717-4ce9-9e89-657906cf9d7d", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2018112619\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2018112619\"\r\n}", - "x-ms-client-request-id" : "d6ea4b94-23f3-4ff5-a3ce-3eb278eb410a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.5/versions/7.5.2019062505?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "598286ae-6c5d-4a8f-94f0-9e8800d01214", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "665", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "562f8503-d4fc-48c0-ab19-90ab51a90618", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12449,Microsoft.Compute/GetVMImageFromLocation30Min;73449", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:562f8503-d4fc-48c0-ab19-90ab51a90618", - "Expires" : "-1", - "x-ms-request-id" : "0d265d7f-0d58-4bb3-9465-8fb2a1106d02", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062505\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.5/Versions/7.5.2019062505\"\r\n}", - "x-ms-client-request-id" : "598286ae-6c5d-4a8f-94f0-9e8800d01214", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa9d337a-4a7b-4f1e-b60c-daaa84863c46", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "845", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e69376f0-8ee7-4ec6-9897-ccdd2a58b39a", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15838,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130414Z:e69376f0-8ee7-4ec6-9897-ccdd2a58b39a", - "Expires" : "-1", - "x-ms-request-id" : "19254f39-f407-4d56-ae2e-9a39823c50ea", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019071300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6/Versions/7.6.2019071300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6/Versions/7.6.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020022510\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6/Versions/7.6.2020022510\"\r\n }\r\n]", - "x-ms-client-request-id" : "aa9d337a-4a7b-4f1e-b60c-daaa84863c46", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.6/versions/7.6.2019071300?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7307c3b4-890d-482c-a630-817b1d2f2ddc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b131366a-2329-4eb5-9d51-fc95e0209a9e", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12447,Microsoft.Compute/GetVMImageFromLocation30Min;73447", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130415Z:b131366a-2329-4eb5-9d51-fc95e0209a9e", - "Expires" : "-1", - "x-ms-request-id" : "9ea1e292-e143-4259-bf97-ca264fc939ae", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019071300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6/Versions/7.6.2019071300\"\r\n}", - "x-ms-client-request-id" : "7307c3b4-890d-482c-a630-817b1d2f2ddc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.6/versions/7.6.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f0a35ba-fb4d-479d-b74e-948f84ddbb2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6fb3eb0b-a926-44c2-a6b3-99915522fc3d", - "Date" : "Tue, 24 May 2022 13:04:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12445,Microsoft.Compute/GetVMImageFromLocation30Min;73445", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130415Z:6fb3eb0b-a926-44c2-a6b3-99915522fc3d", - "Expires" : "-1", - "x-ms-request-id" : "bddb4581-e4ac-4e1a-826e-b71de59ad2ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6/Versions/7.6.20191212\"\r\n}", - "x-ms-client-request-id" : "9f0a35ba-fb4d-479d-b74e-948f84ddbb2e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.6/versions/7.6.2020022510?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8c15910-4e24-4ad7-bf1d-86aae6c24994", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "368e789d-7c4d-430a-b343-a150bb38e4aa", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12446,Microsoft.Compute/GetVMImageFromLocation30Min;73446", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130415Z:368e789d-7c4d-430a-b343-a150bb38e4aa", - "Expires" : "-1", - "x-ms-request-id" : "e0999907-7be2-4c11-aca1-b2af032fae35", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020022510\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.6/Versions/7.6.2020022510\"\r\n}", - "x-ms-client-request-id" : "d8c15910-4e24-4ad7-bf1d-86aae6c24994", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.7/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2194c9f1-ed40-4e63-8642-bf4b81ad1213", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "563", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff984b9b-a92f-4876-8143-eb21fff290de", - "Date" : "Tue, 24 May 2022 13:04:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15837,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130415Z:ff984b9b-a92f-4876-8143-eb21fff290de", - "Expires" : "-1", - "x-ms-request-id" : "44e62e89-d6c7-4baa-a1eb-685fe2ddc710", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019082922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.7/Versions/7.7.2019082922\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.7/Versions/7.7.20191212\"\r\n }\r\n]", - "x-ms-client-request-id" : "2194c9f1-ed40-4e63-8642-bf4b81ad1213", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.7/versions/7.7.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d670df12-329d-4b84-a4b6-5c6223724c99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1393f368-c8fe-4128-8604-1cda75b9b306", - "Date" : "Tue, 24 May 2022 13:04:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12443,Microsoft.Compute/GetVMImageFromLocation30Min;73443", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130415Z:1393f368-c8fe-4128-8604-1cda75b9b306", - "Expires" : "-1", - "x-ms-request-id" : "df110bbe-4a3f-4ff0-84ed-68fce536ec0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.7/Versions/7.7.20191212\"\r\n}", - "x-ms-client-request-id" : "d670df12-329d-4b84-a4b6-5c6223724c99", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/7.7/versions/7.7.2019082922?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74421a77-5893-474f-8e28-8daf1ef863b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4aa0a838-f07a-48b8-bf10-e7225ac2c6de", - "Date" : "Tue, 24 May 2022 13:04:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12444,Microsoft.Compute/GetVMImageFromLocation30Min;73444", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130415Z:4aa0a838-f07a-48b8-bf10-e7225ac2c6de", - "Expires" : "-1", - "x-ms-request-id" : "b1ee181b-1208-4af3-8b29-d3116ad237ab", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2019082922\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/7.7/Versions/7.7.2019082922\"\r\n}", - "x-ms-client-request-id" : "74421a77-5893-474f-8e28-8daf1ef863b3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/74sap-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0bc855d-bbce-4991-a2d0-3dbb0dc5154b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5be558ce-8372-4564-b8e4-e3f07a406b04", - "Date" : "Tue, 24 May 2022 13:04:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15836,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130416Z:5be558ce-8372-4564-b8e4-e3f07a406b04", - "Expires" : "-1", - "x-ms-request-id" : "679b2366-c97c-42d3-bb57-92f7b49be756", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/74sap-gen2/Versions/7.4.20191214\"\r\n }\r\n]", - "x-ms-client-request-id" : "a0bc855d-bbce-4991-a2d0-3dbb0dc5154b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/74sap-gen2/versions/7.4.20191214?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4173318c-236a-418b-891d-e60552b10e5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11789", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8d66097-712d-44af-910f-0fc6053ff8f7", - "Date" : "Tue, 24 May 2022 13:04:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12442,Microsoft.Compute/GetVMImageFromLocation30Min;73442", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130416Z:b8d66097-712d-44af-910f-0fc6053ff8f7", - "Expires" : "-1", - "x-ms-request-id" : "db309f93-95b4-4c8f-8beb-bc20752af1e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/74sap-gen2/Versions/7.4.20191214\"\r\n}", - "x-ms-client-request-id" : "4173318c-236a-418b-891d-e60552b10e5a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76-ci/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "468b6e73-1587-45b5-84b9-439857dee430", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "283", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bebd75f-e6aa-4055-9f10-91f9e7c2b0ad", - "Date" : "Tue, 24 May 2022 13:04:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15835,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130416Z:3bebd75f-e6aa-4055-9f10-91f9e7c2b0ad", - "Expires" : "-1", - "x-ms-request-id" : "332a957d-8574-4d05-9af4-541b1bf87db1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20200122\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76-ci/Versions/7.6.20200122\"\r\n }\r\n]", - "x-ms-client-request-id" : "468b6e73-1587-45b5-84b9-439857dee430", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76-ci/versions/7.6.20200122?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4afb3dc2-d051-41cf-a1d7-a36a34cc9a2d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "350a79d8-4512-43d3-97ec-ac6570ebfef9", - "Date" : "Tue, 24 May 2022 13:04:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12441,Microsoft.Compute/GetVMImageFromLocation30Min;73441", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130417Z:350a79d8-4512-43d3-97ec-ac6570ebfef9", - "Expires" : "-1", - "x-ms-request-id" : "024953ea-2606-4bb9-8840-f4544c3da288", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20200122\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76-ci/Versions/7.6.20200122\"\r\n}", - "x-ms-client-request-id" : "4afb3dc2-d051-41cf-a1d7-a36a34cc9a2d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76-ci-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "233be3e0-6068-488b-8006-4cc67514b017", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3655fb25-23eb-425d-9272-c7a102f0b3ed", - "Date" : "Tue, 24 May 2022 13:04:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15834,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130417Z:3655fb25-23eb-425d-9272-c7a102f0b3ed", - "Expires" : "-1", - "x-ms-request-id" : "16699006-c05f-4184-925e-b5aca8d4e40c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20200123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76-ci-gen2/Versions/7.6.20200123\"\r\n }\r\n]", - "x-ms-client-request-id" : "233be3e0-6068-488b-8006-4cc67514b017", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76-ci-gen2/versions/7.6.20200123?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f67cfd40-ca86-455b-9ac3-5d547e3ebc15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11744", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9ef1f61-09f6-4a67-a5a9-7dc0605ff3b7", - "Date" : "Tue, 24 May 2022 13:04:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12440,Microsoft.Compute/GetVMImageFromLocation30Min;73440", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130417Z:f9ef1f61-09f6-4a67-a5a9-7dc0605ff3b7", - "Expires" : "-1", - "x-ms-request-id" : "8ceb2088-fc4d-410f-841e-aebad44afbfc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20200123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76-ci-gen2/Versions/7.6.20200123\"\r\n}", - "x-ms-client-request-id" : "f67cfd40-ca86-455b-9ac3-5d547e3ebc15", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76sap-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7a172fc-3e69-4b72-bff2-b226722bcc11", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "577", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "383d64e4-2fc6-4345-b26f-547e772733ec", - "Date" : "Tue, 24 May 2022 13:04:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15833,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130418Z:383d64e4-2fc6-4345-b26f-547e772733ec", - "Expires" : "-1", - "x-ms-request-id" : "eb753f6a-dafd-4add-82a7-6254b4295e5d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76sap-gen2/Versions/7.6.20191214\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020022511\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76sap-gen2/Versions/7.6.2020022511\"\r\n }\r\n]", - "x-ms-client-request-id" : "c7a172fc-3e69-4b72-bff2-b226722bcc11", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76sap-gen2/versions/7.6.2020022511?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8aabaec-caa5-47b9-ae8b-7f6ae62d0dc4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8dd5e36-affc-4df4-b5ee-1de589153695", - "Date" : "Tue, 24 May 2022 13:04:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12439,Microsoft.Compute/GetVMImageFromLocation30Min;73439", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130418Z:f8dd5e36-affc-4df4-b5ee-1de589153695", - "Expires" : "-1", - "x-ms-request-id" : "e39ce443-dc9d-4c37-a7ae-2b39bc5f7080", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020022511\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76sap-gen2/Versions/7.6.2020022511\"\r\n}", - "x-ms-client-request-id" : "c8aabaec-caa5-47b9-ae8b-7f6ae62d0dc4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/76sap-gen2/versions/7.6.20191214?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d9186f7-69b9-4a27-b792-04463082c251", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "223ea070-0b03-422b-aa98-b5dfafc365ae", - "Date" : "Tue, 24 May 2022 13:04:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12438,Microsoft.Compute/GetVMImageFromLocation30Min;73438", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130418Z:223ea070-0b03-422b-aa98-b5dfafc365ae", - "Expires" : "-1", - "x-ms-request-id" : "272999d2-a371-4c5c-aaad-bae483cec503", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/76sap-gen2/Versions/7.6.20191214\"\r\n}", - "x-ms-client-request-id" : "7d9186f7-69b9-4a27-b792-04463082c251", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/77sap-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0da78e87-f1c1-428c-8ce5-b36820e65bcb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6285ecbe-fad5-45d0-91a8-74491ac9893e", - "Date" : "Tue, 24 May 2022 13:04:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15832,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130418Z:6285ecbe-fad5-45d0-91a8-74491ac9893e", - "Expires" : "-1", - "x-ms-request-id" : "8dec6b61-6915-4fc5-ab53-414a44681d50", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/77sap-gen2/Versions/7.7.20191214\"\r\n }\r\n]", - "x-ms-client-request-id" : "0da78e87-f1c1-428c-8ce5-b36820e65bcb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP/skus/77sap-gen2/versions/7.7.20191214?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84918a33-4836-466c-ad50-40b5a1d3f726", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "345235f5-9297-463a-a1e2-4cf485194008", - "Date" : "Tue, 24 May 2022 13:04:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12437,Microsoft.Compute/GetVMImageFromLocation30Min;73437", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130418Z:345235f5-9297-463a-a1e2-4cf485194008", - "Expires" : "-1", - "x-ms-request-id" : "31c33638-dd73-44a3-ab53-c75979351c82", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP/Skus/77sap-gen2/Versions/7.7.20191214\"\r\n}", - "x-ms-client-request-id" : "84918a33-4836-466c-ad50-40b5a1d3f726", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8059e4a5-5b50-42e9-bdd0-3f03c7d8680d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "6211", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fefb0075-fa3d-4c0b-8610-0dd07dc04384", - "Date" : "Tue, 24 May 2022 13:04:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9980,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130419Z:fefb0075-fa3d-4c0b-8610-0dd07dc04384", - "Expires" : "-1", - "x-ms-request-id" : "826076cd-814b-4861-848d-930ee37c35ee", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"74sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"77sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"79sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/79sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"81sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"82sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"84sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"86sapapps-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/86sapapps-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_6\"\r\n }\r\n]", - "x-ms-client-request-id" : "8059e4a5-5b50-42e9-bdd0-3f03c7d8680d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/74sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dac8d5d1-ab47-438a-88e1-65119f1e0882", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "897", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "85493364-31a4-4a89-b469-bd8428ce5f0b", - "Date" : "Tue, 24 May 2022 13:04:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15831,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130419Z:85493364-31a4-4a89-b469-bd8428ce5f0b", - "Expires" : "-1", - "x-ms-request-id" : "a2423136-7bb0-4efb-9ee1-768192f6af75", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020101118\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2/Versions/7.4.2020101118\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2/Versions/7.4.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2/Versions/7.4.2021100402\"\r\n }\r\n]", - "x-ms-client-request-id" : "dac8d5d1-ab47-438a-88e1-65119f1e0882", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/74sapapps-gen2/versions/7.4.2021100402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "469b7775-488b-461d-8706-1f8f15c51057", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60b14c1f-30c3-4b9e-904f-83571480e82f", - "Date" : "Tue, 24 May 2022 13:04:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12435,Microsoft.Compute/GetVMImageFromLocation30Min;73435", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130419Z:60b14c1f-30c3-4b9e-904f-83571480e82f", - "Expires" : "-1", - "x-ms-request-id" : "b74e83c6-4d09-4841-85e7-389527b16e14", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2/Versions/7.4.2021100402\"\r\n}", - "x-ms-client-request-id" : "469b7775-488b-461d-8706-1f8f15c51057", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/74sapapps-gen2/versions/7.4.2020101118?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9be93b9c-5c2e-4087-b44e-cca726137a85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3800d898-20fc-4fbf-8707-fc5c11989ac8", - "Date" : "Tue, 24 May 2022 13:04:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12436,Microsoft.Compute/GetVMImageFromLocation30Min;73436", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130419Z:3800d898-20fc-4fbf-8707-fc5c11989ac8", - "Expires" : "-1", - "x-ms-request-id" : "9a77a235-a5aa-4900-99fb-49ebe9634d86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020101118\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2/Versions/7.4.2020101118\"\r\n}", - "x-ms-client-request-id" : "9be93b9c-5c2e-4087-b44e-cca726137a85", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/74sapapps-gen2/versions/7.4.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd9dd6f7-d0c1-4ab6-9036-6134d07bb378", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f33c1b36-00bf-4ff3-a9f0-f014e10f471a", - "Date" : "Tue, 24 May 2022 13:04:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12434,Microsoft.Compute/GetVMImageFromLocation30Min;73434", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130419Z:f33c1b36-00bf-4ff3-a9f0-f014e10f471a", - "Expires" : "-1", - "x-ms-request-id" : "cf4c4acd-75a3-4e09-b6e9-84cc6032a990", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/74sapapps-gen2/Versions/7.4.2021051102\"\r\n}", - "x-ms-client-request-id" : "cd9dd6f7-d0c1-4ab6-9036-6134d07bb378", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/76sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a506505-53a6-49d1-9e2a-910263f2522b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "897", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "daa39435-de63-444e-92b3-b2efb1ab3a5c", - "Date" : "Tue, 24 May 2022 13:04:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15830,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:daa39435-de63-444e-92b3-b2efb1ab3a5c", - "Expires" : "-1", - "x-ms-request-id" : "d7807454-d835-4f46-8ec2-d838d0c1b013", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020101115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2/Versions/7.6.2020101115\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2/Versions/7.6.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2/Versions/7.6.2021100402\"\r\n }\r\n]", - "x-ms-client-request-id" : "4a506505-53a6-49d1-9e2a-910263f2522b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/76sapapps-gen2/versions/7.6.2021100402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e4cc1db-28d9-4b33-be23-3b71637443ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7af72995-cce9-4597-bd42-5d0fff967b18", - "Date" : "Tue, 24 May 2022 13:04:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12433,Microsoft.Compute/GetVMImageFromLocation30Min;73433", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:7af72995-cce9-4597-bd42-5d0fff967b18", - "Expires" : "-1", - "x-ms-request-id" : "30a8789c-abc2-4fb4-a8ec-90236e13e508", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2/Versions/7.6.2021100402\"\r\n}", - "x-ms-client-request-id" : "1e4cc1db-28d9-4b33-be23-3b71637443ec", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/76sapapps-gen2/versions/7.6.2020101115?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8fb7be0-ffe6-41d7-8c3b-17890214fc62", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11717", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2a84dfd-a4a9-4068-b5bd-edf4529ceeac", - "Date" : "Tue, 24 May 2022 13:04:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12432,Microsoft.Compute/GetVMImageFromLocation30Min;73432", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:f2a84dfd-a4a9-4068-b5bd-edf4529ceeac", - "Expires" : "-1", - "x-ms-request-id" : "79a719a1-671b-4e79-9d5f-414fea0f31d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020101115\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2/Versions/7.6.2020101115\"\r\n}", - "x-ms-client-request-id" : "a8fb7be0-ffe6-41d7-8c3b-17890214fc62", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/76sapapps-gen2/versions/7.6.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec35d615-d92b-4d63-a1c4-d2ccd250d4e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9cd297ee-ad01-430a-ad84-936144fc6e3a", - "Date" : "Tue, 24 May 2022 13:04:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12431,Microsoft.Compute/GetVMImageFromLocation30Min;73431", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:9cd297ee-ad01-430a-ad84-936144fc6e3a", - "Expires" : "-1", - "x-ms-request-id" : "35c31d8b-a8b3-4953-9463-8bcf993ced37", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/76sapapps-gen2/Versions/7.6.2021051102\"\r\n}", - "x-ms-client-request-id" : "ec35d615-d92b-4d63-a1c4-d2ccd250d4e0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/77sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1cfee38d-49bf-4ddd-9194-77686666356d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "897", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3878629e-d64a-48df-bb7e-7e3c0cac3c64", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15829,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:3878629e-d64a-48df-bb7e-7e3c0cac3c64", - "Expires" : "-1", - "x-ms-request-id" : "5c956219-2808-43d4-a11d-835fe791ba61", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020101117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2/Versions/7.7.2020101117\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2/Versions/7.7.2021051902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2/Versions/7.7.2021100402\"\r\n }\r\n]", - "x-ms-client-request-id" : "1cfee38d-49bf-4ddd-9194-77686666356d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/77sapapps-gen2/versions/7.7.2021100402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54205c10-f28c-4252-8499-c233adf61626", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57b2a015-98e5-43ad-8bad-d85ba30923c2", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12430,Microsoft.Compute/GetVMImageFromLocation30Min;73430", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:57b2a015-98e5-43ad-8bad-d85ba30923c2", - "Expires" : "-1", - "x-ms-request-id" : "cb5ab253-8bec-4d51-bd1a-ab4273b39af1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2/Versions/7.7.2021100402\"\r\n}", - "x-ms-client-request-id" : "54205c10-f28c-4252-8499-c233adf61626", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/77sapapps-gen2/versions/7.7.2020101117?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7365d6e9-b664-41da-aad9-990655ec7ab5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73797493-3a12-43e6-a98f-7837c27e6e11", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12429,Microsoft.Compute/GetVMImageFromLocation30Min;73429", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130420Z:73797493-3a12-43e6-a98f-7837c27e6e11", - "Expires" : "-1", - "x-ms-request-id" : "8d5b0b3d-9cab-48cc-b81b-3c9e1d183ddc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020101117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2/Versions/7.7.2020101117\"\r\n}", - "x-ms-client-request-id" : "7365d6e9-b664-41da-aad9-990655ec7ab5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/77sapapps-gen2/versions/7.7.2021051902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb170808-aabf-4776-9943-fbe430bf3ff0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11716", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "764edcc2-1434-4c0e-87c4-45d59a254497", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12428,Microsoft.Compute/GetVMImageFromLocation30Min;73428", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130421Z:764edcc2-1434-4c0e-87c4-45d59a254497", - "Expires" : "-1", - "x-ms-request-id" : "0c29dba7-88c1-4f9a-9718-4169bfac9f6f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/77sapapps-gen2/Versions/7.7.2021051902\"\r\n}", - "x-ms-client-request-id" : "fb170808-aabf-4776-9943-fbe430bf3ff0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/79sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28197f92-112e-4d3d-af20-d38f1b9dcf1b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "599", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7d0bbe21-6cfd-4c87-bf8d-b337889615e4", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15828,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130421Z:7d0bbe21-6cfd-4c87-bf8d-b337889615e4", - "Expires" : "-1", - "x-ms-request-id" : "acf0ec1f-9681-4285-ab4d-b61ac2b0f3af", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/79sapapps-gen2/Versions/7.9.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/79sapapps-gen2/Versions/7.9.2021100402\"\r\n }\r\n]", - "x-ms-client-request-id" : "28197f92-112e-4d3d-af20-d38f1b9dcf1b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/79sapapps-gen2/versions/7.9.2021100402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f649ab2-05d6-4aad-b1a9-fca6cd2a873a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0a40e2a-5d4f-4f5f-84a2-af9efc6fb02c", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12427,Microsoft.Compute/GetVMImageFromLocation30Min;73427", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130421Z:c0a40e2a-5d4f-4f5f-84a2-af9efc6fb02c", - "Expires" : "-1", - "x-ms-request-id" : "f536bcfa-ca33-4777-947b-bf94d20d87c4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/79sapapps-gen2/Versions/7.9.2021100402\"\r\n}", - "x-ms-client-request-id" : "1f649ab2-05d6-4aad-b1a9-fca6cd2a873a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/79sapapps-gen2/versions/7.9.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80fb31a2-17e1-4d17-93ca-199484224943", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "762", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "447c2ef8-6587-4cc4-a3a2-42f8b30ffe29", - "Date" : "Tue, 24 May 2022 13:04:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12426,Microsoft.Compute/GetVMImageFromLocation30Min;73426", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130421Z:447c2ef8-6587-4cc4-a3a2-42f8b30ffe29", - "Expires" : "-1", - "x-ms-request-id" : "22656dfb-d0ec-4be7-94ff-110b4f34ab4e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/79sapapps-gen2/Versions/7.9.2021040902\"\r\n}", - "x-ms-client-request-id" : "80fb31a2-17e1-4d17-93ca-199484224943", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d67b2cf1-5884-41f8-a066-b8e76c6313e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "029ff86d-ef9a-4c01-a7e8-4dc1af68b5fd", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15827,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130421Z:029ff86d-ef9a-4c01-a7e8-4dc1af68b5fd", - "Expires" : "-1", - "x-ms-request-id" : "e3365b51-c940-440b-9252-70b56a68e130", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020101117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4/Versions/7.4.2020101117\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4/Versions/7.4.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4/Versions/7.4.2021100401\"\r\n }\r\n]", - "x-ms-client-request-id" : "d67b2cf1-5884-41f8-a066-b8e76c6313e2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_4/versions/7.4.2020101117?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "157b6fe9-7d6c-43e7-a3c9-f119157e1967", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11812", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b41ff04c-ce50-4716-b6f8-94357085a6e3", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12425,Microsoft.Compute/GetVMImageFromLocation30Min;73425", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:b41ff04c-ce50-4716-b6f8-94357085a6e3", - "Expires" : "-1", - "x-ms-request-id" : "9aa0d4c7-64f2-4b9b-821c-f689a5ef01c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020101117\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4/Versions/7.4.2020101117\"\r\n}", - "x-ms-client-request-id" : "157b6fe9-7d6c-43e7-a3c9-f119157e1967", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_4/versions/7.4.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f72e0f1-4545-4614-8c04-b691a94cf9d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11812", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "46e9491e-1d9a-463e-870d-1a1ca95bbcb1", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12424,Microsoft.Compute/GetVMImageFromLocation30Min;73424", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:46e9491e-1d9a-463e-870d-1a1ca95bbcb1", - "Expires" : "-1", - "x-ms-request-id" : "e694fc28-f051-493a-bd7a-9f7e86e08f3b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4/Versions/7.4.2021051101\"\r\n}", - "x-ms-client-request-id" : "0f72e0f1-4545-4614-8c04-b691a94cf9d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_4/versions/7.4.2021100401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bd20203-e7e7-4567-9222-4b504284b75d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "822ef558-06f0-4bcb-91b9-d91b57af13f3", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12423,Microsoft.Compute/GetVMImageFromLocation30Min;73423", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:822ef558-06f0-4bcb-91b9-d91b57af13f3", - "Expires" : "-1", - "x-ms-request-id" : "d603150d-ce88-43da-9fac-e162c6e1d877", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_4/Versions/7.4.2021100401\"\r\n}", - "x-ms-client-request-id" : "5bd20203-e7e7-4567-9222-4b504284b75d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d03ba177-e3fa-4e87-aba7-d668155be0d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "be964209-54ab-4b3a-b784-db4f575c5990", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15826,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:be964209-54ab-4b3a-b784-db4f575c5990", - "Expires" : "-1", - "x-ms-request-id" : "43cd0a3a-0be8-4729-8746-5a9f498a3b18", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020101114\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6/Versions/7.6.2020101114\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6/Versions/7.6.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6/Versions/7.6.2021100401\"\r\n }\r\n]", - "x-ms-client-request-id" : "d03ba177-e3fa-4e87-aba7-d668155be0d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_6/versions/7.6.2020101114?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dea5b06-e647-4131-9e39-38c5102ea335", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7578cc5-a827-4082-8b83-7590509b8ba1", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12422,Microsoft.Compute/GetVMImageFromLocation30Min;73422", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:c7578cc5-a827-4082-8b83-7590509b8ba1", - "Expires" : "-1", - "x-ms-request-id" : "dec248e7-5d96-4b21-a5c5-1a17ad38d94c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020101114\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6/Versions/7.6.2020101114\"\r\n}", - "x-ms-client-request-id" : "2dea5b06-e647-4131-9e39-38c5102ea335", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_6/versions/7.6.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1afccc4a-d173-4007-8300-a419f16ad7c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d339cee-6cc0-439e-9c28-250dd2bf1252", - "Date" : "Tue, 24 May 2022 13:04:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12421,Microsoft.Compute/GetVMImageFromLocation30Min;73421", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:8d339cee-6cc0-439e-9c28-250dd2bf1252", - "Expires" : "-1", - "x-ms-request-id" : "59ab886d-c1ff-4fb6-b190-efd9e50651d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6/Versions/7.6.2021051101\"\r\n}", - "x-ms-client-request-id" : "1afccc4a-d173-4007-8300-a419f16ad7c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_6/versions/7.6.2021100401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "828af53a-0d98-4f45-8070-38b565d2c3e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4323b3c9-94f8-4e0f-829f-194dc8ea628d", - "Date" : "Tue, 24 May 2022 13:04:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12420,Microsoft.Compute/GetVMImageFromLocation30Min;73420", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130422Z:4323b3c9-94f8-4e0f-829f-194dc8ea628d", - "Expires" : "-1", - "x-ms-request-id" : "73a71ca9-888c-4af1-8143-376269ac6511", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_6/Versions/7.6.2021100401\"\r\n}", - "x-ms-client-request-id" : "828af53a-0d98-4f45-8070-38b565d2c3e6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_7/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70d486c5-b3ef-46b4-b608-a109a1e4bddc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11743", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "407bbc51-eebb-4112-9af8-2c2df557d638", - "Date" : "Tue, 24 May 2022 13:04:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15825,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:407bbc51-eebb-4112-9af8-2c2df557d638", - "Expires" : "-1", - "x-ms-request-id" : "d6cb1502-e39e-498b-a4b2-7d0550936b08", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020101116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7/Versions/7.7.2020101116\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7/Versions/7.7.2021051901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7/Versions/7.7.2021100401\"\r\n }\r\n]", - "x-ms-client-request-id" : "70d486c5-b3ef-46b4-b608-a109a1e4bddc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_7/versions/7.7.2021051901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41bf88d7-ee74-4bb5-ab21-57faf1356e3b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b34fe96-da5d-4668-b077-df2a6d5158a4", - "Date" : "Tue, 24 May 2022 13:04:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12418,Microsoft.Compute/GetVMImageFromLocation30Min;73418", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:8b34fe96-da5d-4668-b077-df2a6d5158a4", - "Expires" : "-1", - "x-ms-request-id" : "8f8b3cd4-3545-4b9e-8dcb-548e6516e8eb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7/Versions/7.7.2021051901\"\r\n}", - "x-ms-client-request-id" : "41bf88d7-ee74-4bb5-ab21-57faf1356e3b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_7/versions/7.7.2020101116?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5e66735-71bc-4138-86ac-d4f8254582ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0d954ae-30ac-4480-b751-8224f4d4f487", - "Date" : "Tue, 24 May 2022 13:04:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12419,Microsoft.Compute/GetVMImageFromLocation30Min;73419", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:a0d954ae-30ac-4480-b751-8224f4d4f487", - "Expires" : "-1", - "x-ms-request-id" : "98f157b6-20ae-4ada-8d3c-ffb1abefefbc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020101116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7/Versions/7.7.2020101116\"\r\n}", - "x-ms-client-request-id" : "d5e66735-71bc-4138-86ac-d4f8254582ea", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_7/versions/7.7.2021100401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd72c5a3-58d7-4f39-b12f-adc945e48c87", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6a43a13-d90f-4cbf-ae17-914b1c827fe4", - "Date" : "Tue, 24 May 2022 13:04:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12417,Microsoft.Compute/GetVMImageFromLocation30Min;73417", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:e6a43a13-d90f-4cbf-ae17-914b1c827fe4", - "Expires" : "-1", - "x-ms-request-id" : "082bdfca-3e53-4c71-9543-698fbc9a8281", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_7/Versions/7.7.2021100401\"\r\n}", - "x-ms-client-request-id" : "bd72c5a3-58d7-4f39-b12f-adc945e48c87", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_9/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f12087cf-ba13-4d2f-8258-3c8f1430f9e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "577", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe9a7e75-7457-4b10-9d6d-21769d923899", - "Date" : "Tue, 24 May 2022 13:04:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15824,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:fe9a7e75-7457-4b10-9d6d-21769d923899", - "Expires" : "-1", - "x-ms-request-id" : "c0310930-a235-494a-a569-b75efbf8dce3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_9/Versions/7.9.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_9/Versions/7.9.2021100401\"\r\n }\r\n]", - "x-ms-client-request-id" : "f12087cf-ba13-4d2f-8258-3c8f1430f9e4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_9/versions/7.9.2021100401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e8b8c28-ce68-4e56-ad92-bba3a37dad85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dbd4d0c0-a01c-42ef-9d82-b5b3160be96f", - "Date" : "Tue, 24 May 2022 13:04:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12415,Microsoft.Compute/GetVMImageFromLocation30Min;73415", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:dbd4d0c0-a01c-42ef-9d82-b5b3160be96f", - "Expires" : "-1", - "x-ms-request-id" : "74a0c531-8a8d-4f44-b603-ac8da2cb2e9a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021100401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_9/Versions/7.9.2021100401\"\r\n}", - "x-ms-client-request-id" : "3e8b8c28-ce68-4e56-ad92-bba3a37dad85", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7_9/versions/7.9.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "922bf68e-376f-462c-86fc-620aebde4f73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c6080ee-43ae-42e5-a9fd-8302be3d9412", - "Date" : "Tue, 24 May 2022 13:04:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12416,Microsoft.Compute/GetVMImageFromLocation30Min;73416", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130423Z:5c6080ee-43ae-42e5-a9fd-8302be3d9412", - "Expires" : "-1", - "x-ms-request-id" : "6bae76f0-abec-40d4-b535-640e89e47842", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7_9/Versions/7.9.2021040901\"\r\n}", - "x-ms-client-request-id" : "922bf68e-376f-462c-86fc-620aebde4f73", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/81sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd127768-8486-4808-a0cf-2a3592bb8383", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1195", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97c59973-d856-4843-a3dd-48d26337b60b", - "Date" : "Tue, 24 May 2022 13:04:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15823,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43823", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130424Z:97c59973-d856-4843-a3dd-48d26337b60b", - "Expires" : "-1", - "x-ms-request-id" : "1f8fa0ad-b23d-4bfc-a205-8438c6ee64ca", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021012202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2021012202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021020502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2021020502\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "fd127768-8486-4808-a0cf-2a3592bb8383", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/81sapapps-gen2/versions/8.1.2021020502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22407578-79d1-4f6c-90bf-c108d5e5330e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "62dba562-1d53-4c0b-b3cf-70293432a92a", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12414,Microsoft.Compute/GetVMImageFromLocation30Min;73414", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130424Z:62dba562-1d53-4c0b-b3cf-70293432a92a", - "Expires" : "-1", - "x-ms-request-id" : "71759331-2a9e-44b6-aec3-90350e2de16f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021020502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2021020502\"\r\n}", - "x-ms-client-request-id" : "22407578-79d1-4f6c-90bf-c108d5e5330e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/81sapapps-gen2/versions/8.1.2021012202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96e4b7ea-ff3d-43f9-9bdd-c6d0b95bfd33", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd289355-de88-42b0-9135-f95b323bf578", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12411,Microsoft.Compute/GetVMImageFromLocation30Min;73411", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130424Z:fd289355-de88-42b0-9135-f95b323bf578", - "Expires" : "-1", - "x-ms-request-id" : "329e1172-acea-4314-9c49-37a95c705fec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021012202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2021012202\"\r\n}", - "x-ms-client-request-id" : "96e4b7ea-ff3d-43f9-9bdd-c6d0b95bfd33", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/81sapapps-gen2/versions/8.1.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "407a4f06-74aa-439e-beda-735d9c4d66c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0094237f-4010-4752-b245-43943042e55e", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12413,Microsoft.Compute/GetVMImageFromLocation30Min;73413", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130424Z:0094237f-4010-4752-b245-43943042e55e", - "Expires" : "-1", - "x-ms-request-id" : "d46c92b3-7bab-408a-aae6-c6f824807898", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2021091202\"\r\n}", - "x-ms-client-request-id" : "407a4f06-74aa-439e-beda-735d9c4d66c9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/81sapapps-gen2/versions/8.1.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8dc76fdf-95f4-4339-8879-bfb425037715", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11715", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9da5da6-512a-4587-9dc2-3e7c0e740425", - "Date" : "Tue, 24 May 2022 13:04:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12412,Microsoft.Compute/GetVMImageFromLocation30Min;73412", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130424Z:c9da5da6-512a-4587-9dc2-3e7c0e740425", - "Expires" : "-1", - "x-ms-request-id" : "dd59f42f-e6e2-42c1-aaee-006440219fc6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/81sapapps-gen2/Versions/8.1.2022031402\"\r\n}", - "x-ms-client-request-id" : "8dc76fdf-95f4-4339-8879-bfb425037715", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/82sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32382adf-3be1-4d02-9ca9-b90ef29054e5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1493", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5105dc52-88e1-4ed1-9a20-ad4d362faddf", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15822,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130425Z:5105dc52-88e1-4ed1-9a20-ad4d362faddf", - "Expires" : "-1", - "x-ms-request-id" : "5ba4802c-eb75-4208-ab8e-ec425814d2bb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021012202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021012202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021020502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021020502\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "32382adf-3be1-4d02-9ca9-b90ef29054e5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/82sapapps-gen2/versions/8.2.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5eb952c0-d39d-43fd-a89a-072313a006b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9ddbcfe-4e65-48c5-a4e4-2791854d0354", - "Date" : "Tue, 24 May 2022 13:04:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12410,Microsoft.Compute/GetVMImageFromLocation30Min;73410", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130425Z:a9ddbcfe-4e65-48c5-a4e4-2791854d0354", - "Expires" : "-1", - "x-ms-request-id" : "d8ef72c6-bd08-4754-b8bf-413b478cf975", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021040902\"\r\n}", - "x-ms-client-request-id" : "5eb952c0-d39d-43fd-a89a-072313a006b3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/82sapapps-gen2/versions/8.2.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d86e890-ae39-432b-a224-fd5904fdd05f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb8dfb35-c317-4a16-92d7-4438811e3c83", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12408,Microsoft.Compute/GetVMImageFromLocation30Min;73408", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130425Z:cb8dfb35-c317-4a16-92d7-4438811e3c83", - "Expires" : "-1", - "x-ms-request-id" : "dbcd687f-72a1-43c7-9409-315f4790d46a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021091202\"\r\n}", - "x-ms-client-request-id" : "0d86e890-ae39-432b-a224-fd5904fdd05f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/82sapapps-gen2/versions/8.2.2021020502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb74c602-5983-4470-90e2-df003db6c70c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "21fc627c-032a-4c77-b6a7-c9c3f69fe9e1", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12407,Microsoft.Compute/GetVMImageFromLocation30Min;73407", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130425Z:21fc627c-032a-4c77-b6a7-c9c3f69fe9e1", - "Expires" : "-1", - "x-ms-request-id" : "9d146adb-3fb0-456f-ab3e-395d69404a74", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021020502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021020502\"\r\n}", - "x-ms-client-request-id" : "fb74c602-5983-4470-90e2-df003db6c70c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/82sapapps-gen2/versions/8.2.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c30eff5-1999-41cc-bc49-674b065d8feb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1ec11c8-06bb-4870-9141-b9744a423ef7", - "Date" : "Tue, 24 May 2022 13:04:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12409,Microsoft.Compute/GetVMImageFromLocation30Min;73409", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130425Z:e1ec11c8-06bb-4870-9141-b9744a423ef7", - "Expires" : "-1", - "x-ms-request-id" : "a51e68a2-4779-4f2f-969b-abf62e80bb4c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2022031402\"\r\n}", - "x-ms-client-request-id" : "6c30eff5-1999-41cc-bc49-674b065d8feb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/82sapapps-gen2/versions/8.2.2021012202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06485daf-f8e6-4180-99d6-6b5a66234192", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b6986bb-0144-4339-a2f2-7767397ba949", - "Date" : "Tue, 24 May 2022 13:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12406,Microsoft.Compute/GetVMImageFromLocation30Min;73406", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130426Z:7b6986bb-0144-4339-a2f2-7767397ba949", - "Expires" : "-1", - "x-ms-request-id" : "9be80ac4-6de1-4b37-8c2b-85b2b19b6533", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021012202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/82sapapps-gen2/Versions/8.2.2021012202\"\r\n}", - "x-ms-client-request-id" : "06485daf-f8e6-4180-99d6-6b5a66234192", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/84sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "22388c93-ec68-488e-a956-df4285c34ebf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1493", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b7f9e77c-5bc3-4c3d-b765-38ecbb6db1aa", - "Date" : "Tue, 24 May 2022 13:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15821,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130426Z:b7f9e77c-5bc3-4c3d-b765-38ecbb6db1aa", - "Expires" : "-1", - "x-ms-request-id" : "a4d272d4-9230-4be3-a493-264b6d30b90a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021070802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021080502\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021081002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021091409\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "22388c93-ec68-488e-a956-df4285c34ebf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/84sapapps-gen2/versions/8.4.2021081002?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82652ea7-a2ec-49e2-9ea8-d4dbd04db006", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "512f764f-7446-4e6a-b1c9-8f124f386fc3", - "Date" : "Tue, 24 May 2022 13:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12403,Microsoft.Compute/GetVMImageFromLocation30Min;73403", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130427Z:512f764f-7446-4e6a-b1c9-8f124f386fc3", - "Expires" : "-1", - "x-ms-request-id" : "b592584d-0f93-4d71-9cb8-64b80b2d70e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021081002\"\r\n}", - "x-ms-client-request-id" : "82652ea7-a2ec-49e2-9ea8-d4dbd04db006", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/84sapapps-gen2/versions/8.4.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d3234e0-ad85-4964-92a6-aa7ec21ccb26", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7970fce6-9282-4084-93b7-9ca1e0cd75e0", - "Date" : "Tue, 24 May 2022 13:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12402,Microsoft.Compute/GetVMImageFromLocation30Min;73402", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130427Z:7970fce6-9282-4084-93b7-9ca1e0cd75e0", - "Expires" : "-1", - "x-ms-request-id" : "064ad059-26d5-4127-b0ea-665c1c191acc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2022031402\"\r\n}", - "x-ms-client-request-id" : "0d3234e0-ad85-4964-92a6-aa7ec21ccb26", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/84sapapps-gen2/versions/8.4.2021070802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90b170dd-72a0-4acf-aa8c-4f5a753ff5e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb0c7090-48b2-4198-89ac-a6350574200b", - "Date" : "Tue, 24 May 2022 13:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12405,Microsoft.Compute/GetVMImageFromLocation30Min;73405", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130427Z:eb0c7090-48b2-4198-89ac-a6350574200b", - "Expires" : "-1", - "x-ms-request-id" : "2050603c-ed9d-46dc-8aeb-d5e582ed2d56", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021070802\"\r\n}", - "x-ms-client-request-id" : "90b170dd-72a0-4acf-aa8c-4f5a753ff5e9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/84sapapps-gen2/versions/8.4.2021080502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a40e050e-5a1f-4240-9031-445a6c7f78a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a906775e-d37e-4616-8656-ad04139d988f", - "Date" : "Tue, 24 May 2022 13:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12404,Microsoft.Compute/GetVMImageFromLocation30Min;73404", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130427Z:a906775e-d37e-4616-8656-ad04139d988f", - "Expires" : "-1", - "x-ms-request-id" : "fef0def5-76ac-4302-b6f3-7ea5085ae436", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021080502\"\r\n}", - "x-ms-client-request-id" : "a40e050e-5a1f-4240-9031-445a6c7f78a0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/84sapapps-gen2/versions/8.4.2021091409?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80df0a00-7238-4d51-8b82-a87c2a3f13df", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "882", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b559e986-6d20-4c46-8d67-2b604ceb1351", - "Date" : "Tue, 24 May 2022 13:04:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12401,Microsoft.Compute/GetVMImageFromLocation30Min;73401", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130427Z:b559e986-6d20-4c46-8d67-2b604ceb1351", - "Expires" : "-1", - "x-ms-request-id" : "6813d325-295b-4efc-a082-1b83d1e67176", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091409\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/84sapapps-gen2/Versions/8.4.2021091409\"\r\n}", - "x-ms-client-request-id" : "80df0a00-7238-4d51-8b82-a87c2a3f13df", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/86sapapps-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9321953-ed4f-488d-a44c-03de305f53c0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11741", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96595cf7-8fe9-4dac-acac-348cb389f56e", - "Date" : "Tue, 24 May 2022 13:04:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15820,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43820", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130427Z:96595cf7-8fe9-4dac-acac-348cb389f56e", - "Expires" : "-1", - "x-ms-request-id" : "3ea5a984-b6c6-4204-87eb-bdf727828b37", - "Body" : "[]", - "x-ms-client-request-id" : "d9321953-ed4f-488d-a44c-03de305f53c0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4eaf8660-5123-4468-bec7-61e7b61607f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1151", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "029ba0e6-8832-46d8-a748-ccd30080e1ec", - "Date" : "Tue, 24 May 2022 13:04:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15819,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130428Z:029ba0e6-8832-46d8-a748-ccd30080e1ec", - "Expires" : "-1", - "x-ms-request-id" : "5de9c2fa-b198-4d95-bffe-638a4a025144", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021012201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2021012201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021020501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2021020501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "4eaf8660-5123-4468-bec7-61e7b61607f2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_1/versions/8.1.2021020501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6db1492-1fcf-4224-b776-a4c6a7de6e61", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45cda857-7d4f-4037-b02a-e3cb5a7808fc", - "Date" : "Tue, 24 May 2022 13:04:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12399,Microsoft.Compute/GetVMImageFromLocation30Min;73399", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130428Z:45cda857-7d4f-4037-b02a-e3cb5a7808fc", - "Expires" : "-1", - "x-ms-request-id" : "53611ca4-04da-4a0d-9f31-445c5dca7183", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021020501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2021020501\"\r\n}", - "x-ms-client-request-id" : "b6db1492-1fcf-4224-b776-a4c6a7de6e61", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_1/versions/8.1.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9264b71a-0c51-42a3-a334-7641f2ac6ffb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11714", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ae95564-4082-4bd0-9f1a-35a5bf44080e", - "Date" : "Tue, 24 May 2022 13:04:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12397,Microsoft.Compute/GetVMImageFromLocation30Min;73397", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130428Z:5ae95564-4082-4bd0-9f1a-35a5bf44080e", - "Expires" : "-1", - "x-ms-request-id" : "a6740af3-d577-4f80-9f57-778858b6d600", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2021091201\"\r\n}", - "x-ms-client-request-id" : "9264b71a-0c51-42a3-a334-7641f2ac6ffb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_1/versions/8.1.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90485562-fdc3-45e5-8c4c-3b1a9a3fbfa5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df3940c0-c8be-4f56-a61a-289c71ef8208", - "Date" : "Tue, 24 May 2022 13:04:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12398,Microsoft.Compute/GetVMImageFromLocation30Min;73398", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130428Z:df3940c0-c8be-4f56-a61a-289c71ef8208", - "Expires" : "-1", - "x-ms-request-id" : "92d6e563-c77a-49c3-b284-0e466e6f31e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2022031401\"\r\n}", - "x-ms-client-request-id" : "90485562-fdc3-45e5-8c4c-3b1a9a3fbfa5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_1/versions/8.1.2021012201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3d1078d-eaf1-4354-8b1b-17343341f6d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e870f57-eaa3-44d4-af1e-e33b86946430", - "Date" : "Tue, 24 May 2022 13:04:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12400,Microsoft.Compute/GetVMImageFromLocation30Min;73400", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130428Z:8e870f57-eaa3-44d4-af1e-e33b86946430", - "Expires" : "-1", - "x-ms-request-id" : "cbc1a1d5-7fe0-4177-81de-be5ac6499725", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021012201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_1/Versions/8.1.2021012201\"\r\n}", - "x-ms-client-request-id" : "c3d1078d-eaf1-4354-8b1b-17343341f6d9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2187f05d-1375-43cd-b549-a8cc137548d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1725", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e966b79-3e51-4af6-b4d6-af560128c977", - "Date" : "Tue, 24 May 2022 13:04:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15818,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:9e966b79-3e51-4af6-b4d6-af560128c977", - "Expires" : "-1", - "x-ms-request-id" : "bcc04fde-f9a0-49d0-96c7-eacf7253ee99", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020111501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2020111501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021012201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021012201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021020501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021020501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "2187f05d-1375-43cd-b549-a8cc137548d7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions/8.2.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "703455c8-aa62-481d-8772-149757866a6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04fca588-aff6-45d5-af2f-77d71feb6b38", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12394,Microsoft.Compute/GetVMImageFromLocation30Min;73394", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:04fca588-aff6-45d5-af2f-77d71feb6b38", - "Expires" : "-1", - "x-ms-request-id" : "af06482b-0ff4-42ba-a3a2-9c173ee711cd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2022031401\"\r\n}", - "x-ms-client-request-id" : "703455c8-aa62-481d-8772-149757866a6b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions/8.2.2020111501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e12300b0-ff0a-4ff8-9915-f3095d3329b2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41a45ff7-00fe-4ed1-a135-e43dc193ff32", - "Date" : "Tue, 24 May 2022 13:04:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12396,Microsoft.Compute/GetVMImageFromLocation30Min;73396", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:41a45ff7-00fe-4ed1-a135-e43dc193ff32", - "Expires" : "-1", - "x-ms-request-id" : "9c31a9bd-e6e6-4d61-b61e-046cb08e40a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020111501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2020111501\"\r\n}", - "x-ms-client-request-id" : "e12300b0-ff0a-4ff8-9915-f3095d3329b2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions/8.2.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ce53ec0-0851-4158-a809-333ca9730117", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de4eb4b7-5e90-4d51-9e30-0809392ba432", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12393,Microsoft.Compute/GetVMImageFromLocation30Min;73393", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:de4eb4b7-5e90-4d51-9e30-0809392ba432", - "Expires" : "-1", - "x-ms-request-id" : "b1363298-e410-485b-8475-84e4a3e33dac", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021040901\"\r\n}", - "x-ms-client-request-id" : "6ce53ec0-0851-4158-a809-333ca9730117", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions/8.2.2021020501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "daa4a4cf-cc7f-46aa-b418-1560a955d567", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "270ca04b-afca-4d45-b454-be34de29a7d2", - "Date" : "Tue, 24 May 2022 13:04:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12395,Microsoft.Compute/GetVMImageFromLocation30Min;73395", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:270ca04b-afca-4d45-b454-be34de29a7d2", - "Expires" : "-1", - "x-ms-request-id" : "f54ce5ac-2eaf-4226-b612-a711f2d3c694", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021020501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021020501\"\r\n}", - "x-ms-client-request-id" : "daa4a4cf-cc7f-46aa-b418-1560a955d567", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions/8.2.2021012201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cfedda4-533e-46c6-9c5d-d094f29df98e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63650fab-62c5-48bd-9f54-1a457b81e986", - "Date" : "Tue, 24 May 2022 13:04:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12391,Microsoft.Compute/GetVMImageFromLocation30Min;73391", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:63650fab-62c5-48bd-9f54-1a457b81e986", - "Expires" : "-1", - "x-ms-request-id" : "060be1a0-f1f2-4e8f-bc98-851cb851bff0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021012201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021012201\"\r\n}", - "x-ms-client-request-id" : "4cfedda4-533e-46c6-9c5d-d094f29df98e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_2/versions/8.2.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a9af50d-3320-41fc-9b31-b0404a772e36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4fd929bf-4201-4305-b6cb-f185b268ff02", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12392,Microsoft.Compute/GetVMImageFromLocation30Min;73392", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:4fd929bf-4201-4305-b6cb-f185b268ff02", - "Expires" : "-1", - "x-ms-request-id" : "2e708f10-d168-4e42-bb7c-85c9742c2033", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_2/Versions/8.2.2021091201\"\r\n}", - "x-ms-client-request-id" : "8a9af50d-3320-41fc-9b31-b0404a772e36", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b49258c-06b6-402f-ab9f-87a8d5e4f60e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1438", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ab1db17-1fc6-4bee-9f6c-a25844c2ac11", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15817,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:6ab1db17-1fc6-4bee-9f6c-a25844c2ac11", - "Expires" : "-1", - "x-ms-request-id" : "ec116130-93ad-450a-890d-db8982a433d7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021070801\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021080501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021081001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021091410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "8b49258c-06b6-402f-ab9f-87a8d5e4f60e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_4/versions/8.4.2021080501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fedb762e-b79d-425d-a9cd-39e964894b5c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0ab0525-cd29-4541-b0db-06f7ee5091b6", - "Date" : "Tue, 24 May 2022 13:04:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12390,Microsoft.Compute/GetVMImageFromLocation30Min;73390", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:d0ab0525-cd29-4541-b0db-06f7ee5091b6", - "Expires" : "-1", - "x-ms-request-id" : "c2d7e65e-b191-4aab-b8c0-3edb7520be43", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021080501\"\r\n}", - "x-ms-client-request-id" : "fedb762e-b79d-425d-a9cd-39e964894b5c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_4/versions/8.4.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "157e7071-0a3e-41c1-b6b1-0353eb255fff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "984a49c4-d0c7-447c-b86a-63cd402c4af1", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12388,Microsoft.Compute/GetVMImageFromLocation30Min;73388", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:984a49c4-d0c7-447c-b86a-63cd402c4af1", - "Expires" : "-1", - "x-ms-request-id" : "b4eaa80b-5626-444d-9ace-39ed37d7afa7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2022031401\"\r\n}", - "x-ms-client-request-id" : "157e7071-0a3e-41c1-b6b1-0353eb255fff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_4/versions/8.4.2021091410?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "080d1387-ba7e-449c-bd67-bd35b372826a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67e64404-fee6-45e2-ac5b-94369933642a", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12389,Microsoft.Compute/GetVMImageFromLocation30Min;73389", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:67e64404-fee6-45e2-ac5b-94369933642a", - "Expires" : "-1", - "x-ms-request-id" : "8dfeccb3-dc71-4761-99fd-82560c6b1af7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021091410\"\r\n}", - "x-ms-client-request-id" : "080d1387-ba7e-449c-bd67-bd35b372826a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_4/versions/8.4.2021070801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "377785b1-a53a-4dd3-b00d-88aa43766b10", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e36edc3e-e735-4e54-b7a3-f307fb202d94", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12387,Microsoft.Compute/GetVMImageFromLocation30Min;73387", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130429Z:e36edc3e-e735-4e54-b7a3-f307fb202d94", - "Expires" : "-1", - "x-ms-request-id" : "3d6a17ff-c31c-44c7-a806-4138fc998632", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021070801\"\r\n}", - "x-ms-client-request-id" : "377785b1-a53a-4dd3-b00d-88aa43766b10", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_4/versions/8.4.2021081001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e0b97c3-66fa-495f-8e19-744a6e249f7a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ce85b44-1834-4324-b468-08df615657ad", - "Date" : "Tue, 24 May 2022 13:04:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12386,Microsoft.Compute/GetVMImageFromLocation30Min;73386", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130430Z:8ce85b44-1834-4324-b468-08df615657ad", - "Expires" : "-1", - "x-ms-request-id" : "2dc20f5a-460e-491d-812c-90e003f8b454", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/8_4/Versions/8.4.2021081001\"\r\n}", - "x-ms-client-request-id" : "1e0b97c3-66fa-495f-8e19-744a6e249f7a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/8_6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e62996e8-75b2-4528-b147-994bf1e92cb5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b9fda00-053e-4b44-8f0e-4cdd2161b6ec", - "Date" : "Tue, 24 May 2022 13:04:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15816,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130430Z:9b9fda00-053e-4b44-8f0e-4cdd2161b6ec", - "Expires" : "-1", - "x-ms-request-id" : "5be18aec-207c-4c6f-a62a-2d59ddc943a0", - "Body" : "[]", - "x-ms-client-request-id" : "e62996e8-75b2-4528-b147-994bf1e92cb5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db821bc7-08b3-4fef-8ca6-1723438fd8cd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ffdd6eb3-3bf0-4633-aa07-806262b69f85", - "Date" : "Tue, 24 May 2022 13:04:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9979,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:ffdd6eb3-3bf0-4633-aa07-806262b69f85", - "Expires" : "-1", - "x-ms-request-id" : "4d7407de-6b7f-4f49-80af-088cb76d0661", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"74sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"76sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"77sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"79sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/79sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7_9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7_9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"81sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"82sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"84sapha-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8_4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4\"\r\n }\r\n]", - "x-ms-client-request-id" : "db821bc7-08b3-4fef-8ca6-1723438fd8cd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91d12b48-b97f-44ce-8905-bc821ce618ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1424", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b08a24b0-55e4-4fb3-9de9-04b82b499e8c", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15815,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:b08a24b0-55e4-4fb3-9de9-04b82b499e8c", - "Expires" : "-1", - "x-ms-request-id" : "4adb4aae-3aa5-4be9-8e28-5fbe80b97e51", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062018\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2019062018\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020071514\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2020071514\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020082416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2020082416\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2021051101\"\r\n }\r\n]", - "x-ms-client-request-id" : "91d12b48-b97f-44ce-8905-bc821ce618ca", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.4/versions/7.4.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fd355c3-eae2-42e2-8219-78a8f62fd958", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "752", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c447899-4b21-4404-ac48-2857ba18c0bb", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12384,Microsoft.Compute/GetVMImageFromLocation30Min;73384", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:4c447899-4b21-4404-ac48-2857ba18c0bb", - "Expires" : "-1", - "x-ms-request-id" : "20b260bf-1fa3-4b3c-9acc-5a97feab99af", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.20191212\"\r\n}", - "x-ms-client-request-id" : "2fd355c3-eae2-42e2-8219-78a8f62fd958", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.4/versions/7.4.2020082416?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "235c0acb-124c-472f-b64f-d296613e693b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "551cdf12-8107-4c30-9b61-37591d606af1", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12383,Microsoft.Compute/GetVMImageFromLocation30Min;73383", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:551cdf12-8107-4c30-9b61-37591d606af1", - "Expires" : "-1", - "x-ms-request-id" : "5a86ef02-fbd7-470e-94ae-fd4fc9454b79", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020082416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2020082416\"\r\n}", - "x-ms-client-request-id" : "235c0acb-124c-472f-b64f-d296613e693b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.4/versions/7.4.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5cd3e0d-84df-4a4f-95ec-a9a5012b3dde", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11740", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28039e75-fae0-4b23-b99a-e96f949ec3ac", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12382,Microsoft.Compute/GetVMImageFromLocation30Min;73382", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:28039e75-fae0-4b23-b99a-e96f949ec3ac", - "Expires" : "-1", - "x-ms-request-id" : "71da10d4-e893-46cb-8441-42bc019724fb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2021051101\"\r\n}", - "x-ms-client-request-id" : "d5cd3e0d-84df-4a4f-95ec-a9a5012b3dde", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.4/versions/7.4.2019062018?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "75b48c2b-6212-465d-b2a5-6a3babbc33c2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8fb10ca-09c9-4630-8cb8-61eff5b17c45", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12385,Microsoft.Compute/GetVMImageFromLocation30Min;73385", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:f8fb10ca-09c9-4630-8cb8-61eff5b17c45", - "Expires" : "-1", - "x-ms-request-id" : "210a5b33-5800-4457-babb-936cf07933c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2019062018\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2019062018\"\r\n}", - "x-ms-client-request-id" : "75b48c2b-6212-465d-b2a5-6a3babbc33c2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.4/versions/7.4.2020071514?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ab35dd6-6fdd-4ea1-a64a-4c58ca92e38c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c7006de-af1c-487a-bed2-29afd13fef84", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12381,Microsoft.Compute/GetVMImageFromLocation30Min;73381", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130431Z:4c7006de-af1c-487a-bed2-29afd13fef84", - "Expires" : "-1", - "x-ms-request-id" : "1f401fee-8971-4707-84ab-88b9b94e2d77", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020071514\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.4/Versions/7.4.2020071514\"\r\n}", - "x-ms-client-request-id" : "3ab35dd6-6fdd-4ea1-a64a-4c58ca92e38c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.5/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c23c831d-a0e6-4fc0-a342-631ec10f9284", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0752e132-e4d2-4dbb-bf8b-27d2d667ed92", - "Date" : "Tue, 24 May 2022 13:04:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15814,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130432Z:0752e132-e4d2-4dbb-bf8b-27d2d667ed92", - "Expires" : "-1", - "x-ms-request-id" : "c397e328-b36f-4981-aeff-5d5226f8266b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.5/Versions/7.5.2019062116\"\r\n }\r\n]", - "x-ms-client-request-id" : "c23c831d-a0e6-4fc0-a342-631ec10f9284", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.5/versions/7.5.2019062116?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f88b6fdc-eed0-4a91-9f31-3340e972e39a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "668", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11713", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd254172-3394-40fc-884f-1a23888f7199", - "Date" : "Tue, 24 May 2022 13:04:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12380,Microsoft.Compute/GetVMImageFromLocation30Min;73380", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:fd254172-3394-40fc-884f-1a23888f7199", - "Expires" : "-1", - "x-ms-request-id" : "56ffd550-f114-4576-ae78-9016d11af451", - "Body" : "{\r\n \"properties\": {\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.5.2019062116\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.5/Versions/7.5.2019062116\"\r\n}", - "x-ms-client-request-id" : "f88b6fdc-eed0-4a91-9f31-3340e972e39a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e34e15d-067a-4700-ad9d-e7d692f7b7a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2564", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11739", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f9d0e0b-2b07-491e-9bc5-6ad75ee538d1", - "Date" : "Tue, 24 May 2022 13:04:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15813,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:5f9d0e0b-2b07-491e-9bc5-6ad75ee538d1", - "Expires" : "-1", - "x-ms-request-id" : "81499dba-6744-44bc-a8a4-9530d7091979", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019061818\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2019061818\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2019062019\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2019062320\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.20191212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020040209\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2020040209\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020091012\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2020091012\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021031517\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2021031517\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2021051101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021102501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2021102501\"\r\n }\r\n]", - "x-ms-client-request-id" : "4e34e15d-067a-4700-ad9d-e7d692f7b7a4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2019061818?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e39b831-dc8e-4dec-ace2-5350c30bdf90", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "960b3f54-862e-4cbf-b954-bf462e3c9dfb", - "Date" : "Tue, 24 May 2022 13:04:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12379,Microsoft.Compute/GetVMImageFromLocation30Min;73379", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:960b3f54-862e-4cbf-b954-bf462e3c9dfb", - "Expires" : "-1", - "x-ms-request-id" : "fc498946-53ab-4eb7-968b-9b333ef7f2c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019061818\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2019061818\"\r\n}", - "x-ms-client-request-id" : "1e39b831-dc8e-4dec-ace2-5350c30bdf90", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2019062320?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4500b91f-bd22-4cc1-8c85-6f276191eee1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13c290bb-922c-4a44-b3f9-00a30e9966b9", - "Date" : "Tue, 24 May 2022 13:04:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12378,Microsoft.Compute/GetVMImageFromLocation30Min;73378", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:13c290bb-922c-4a44-b3f9-00a30e9966b9", - "Expires" : "-1", - "x-ms-request-id" : "a5c07116-143d-4863-8164-ee0352ddd75d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062320\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2019062320\"\r\n}", - "x-ms-client-request-id" : "4500b91f-bd22-4cc1-8c85-6f276191eee1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2020040209?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1d53058-efc1-42b4-9fa9-72c951d5faae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17b9881f-d30c-4bdd-917a-15b017104f40", - "Date" : "Tue, 24 May 2022 13:04:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12377,Microsoft.Compute/GetVMImageFromLocation30Min;73377", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:17b9881f-d30c-4bdd-917a-15b017104f40", - "Expires" : "-1", - "x-ms-request-id" : "518240fa-e58b-440f-9b20-93c867e9627a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020040209\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2020040209\"\r\n}", - "x-ms-client-request-id" : "c1d53058-efc1-42b4-9fa9-72c951d5faae", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2021031517?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36d50622-8993-4c77-ba79-f3b529beb3bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9b66b87-18de-4d14-9766-a06592cb3a46", - "Date" : "Tue, 24 May 2022 13:04:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12375,Microsoft.Compute/GetVMImageFromLocation30Min;73375", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:b9b66b87-18de-4d14-9766-a06592cb3a46", - "Expires" : "-1", - "x-ms-request-id" : "cd4cf1a0-5f5f-444e-85f2-8460d232aa18", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021031517\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2021031517\"\r\n}", - "x-ms-client-request-id" : "36d50622-8993-4c77-ba79-f3b529beb3bb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2021051101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "59dfc3cb-bf6a-40ba-ac94-9c0128ed187a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fed7fea1-a6c6-4a9c-98b8-2ff07bc0ac9e", - "Date" : "Tue, 24 May 2022 13:04:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12371,Microsoft.Compute/GetVMImageFromLocation30Min;73371", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:fed7fea1-a6c6-4a9c-98b8-2ff07bc0ac9e", - "Expires" : "-1", - "x-ms-request-id" : "898b6e1d-660a-406b-a574-fa6637384530", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2021051101\"\r\n}", - "x-ms-client-request-id" : "59dfc3cb-bf6a-40ba-ac94-9c0128ed187a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2021102501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa8c207c-1e6b-4acd-989f-ed23b2854dd5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6be3b771-6f9f-41ce-8ee3-f1eafb3ca492", - "Date" : "Tue, 24 May 2022 13:04:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12373,Microsoft.Compute/GetVMImageFromLocation30Min;73373", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:6be3b771-6f9f-41ce-8ee3-f1eafb3ca492", - "Expires" : "-1", - "x-ms-request-id" : "45145f3b-2d15-42dd-966c-23bc6de3cf52", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021102501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2021102501\"\r\n}", - "x-ms-client-request-id" : "aa8c207c-1e6b-4acd-989f-ed23b2854dd5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2019062019?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcbe5760-f881-47bd-ad44-de0bc87ac3cc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d74ff13d-55c5-405a-b30b-fcbbf735f06a", - "Date" : "Tue, 24 May 2022 13:04:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12374,Microsoft.Compute/GetVMImageFromLocation30Min;73374", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:d74ff13d-55c5-405a-b30b-fcbbf735f06a", - "Expires" : "-1", - "x-ms-request-id" : "83a91ade-156b-48c0-813e-60ddb2b14cb2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2019062019\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2019062019\"\r\n}", - "x-ms-client-request-id" : "fcbe5760-f881-47bd-ad44-de0bc87ac3cc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.2020091012?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e9be6c9-0bee-47f8-827f-2432d0a51c8b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e9240e8-baa7-4ad1-aff4-7ef6f39716f6", - "Date" : "Tue, 24 May 2022 13:04:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12372,Microsoft.Compute/GetVMImageFromLocation30Min;73372", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:5e9240e8-baa7-4ad1-aff4-7ef6f39716f6", - "Expires" : "-1", - "x-ms-request-id" : "eef94f73-dd62-47b3-afe2-4f92570560b4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020091012\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.2020091012\"\r\n}", - "x-ms-client-request-id" : "6e9be6c9-0bee-47f8-827f-2432d0a51c8b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.6/versions/7.6.20191212?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b99d833-05a2-4ba9-bafa-456e23756720", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "752", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80570e24-02b8-450a-9d2c-ca3c26fba08a", - "Date" : "Tue, 24 May 2022 13:04:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12376,Microsoft.Compute/GetVMImageFromLocation30Min;73376", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130433Z:80570e24-02b8-450a-9d2c-ca3c26fba08a", - "Expires" : "-1", - "x-ms-request-id" : "a653c710-894b-486b-be72-7efdca005297", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.20191212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.6/Versions/7.6.20191212\"\r\n}", - "x-ms-client-request-id" : "4b99d833-05a2-4ba9-bafa-456e23756720", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.7/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54c2b695-3793-470d-b894-7e0f10227ec0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1424", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67fb1df5-f944-448a-87c6-03206a0bb631", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15812,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130434Z:67fb1df5-f944-448a-87c6-03206a0bb631", - "Expires" : "-1", - "x-ms-request-id" : "f14062f0-b16a-47ba-94c2-b0bf00cc2c86", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20191216\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.20191216\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020040209\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2020040209\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020062414\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2020062414\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2020082416\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2021051901\"\r\n }\r\n]", - "x-ms-client-request-id" : "54c2b695-3793-470d-b894-7e0f10227ec0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.7/versions/7.7.2020082416?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91642bc0-8f67-4ca1-bb72-bd3dc54c702f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb89643a-664b-4c41-8e73-164cf8fc55b5", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12370,Microsoft.Compute/GetVMImageFromLocation30Min;73370", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130434Z:eb89643a-664b-4c41-8e73-164cf8fc55b5", - "Expires" : "-1", - "x-ms-request-id" : "8f62c197-4229-4991-a547-d821e915b4f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2020082416\"\r\n}", - "x-ms-client-request-id" : "91642bc0-8f67-4ca1-bb72-bd3dc54c702f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.7/versions/7.7.2020062414?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d346fab-b9b7-49d8-9e64-65faab00a990", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "009ec6ce-202b-4195-befb-c2de791fe859", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12367,Microsoft.Compute/GetVMImageFromLocation30Min;73367", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130434Z:009ec6ce-202b-4195-befb-c2de791fe859", - "Expires" : "-1", - "x-ms-request-id" : "bb3d0b3d-0ede-4776-b361-fdfe2efab573", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020062414\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2020062414\"\r\n}", - "x-ms-client-request-id" : "4d346fab-b9b7-49d8-9e64-65faab00a990", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.7/versions/7.7.2020040209?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fd6b661-71d2-410a-8261-de4ec2a34f29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bef7b81-9f0d-46b4-9a80-a0256847afdc", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12366,Microsoft.Compute/GetVMImageFromLocation30Min;73366", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130434Z:8bef7b81-9f0d-46b4-9a80-a0256847afdc", - "Expires" : "-1", - "x-ms-request-id" : "847c9369-ebee-46aa-8ff7-d12545038f56", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020040209\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2020040209\"\r\n}", - "x-ms-client-request-id" : "6fd6b661-71d2-410a-8261-de4ec2a34f29", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.7/versions/7.7.20191216?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ff867b9-0d08-4099-b225-8407fae7b5d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "752", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8dae67bb-960b-466c-bd37-18130d807708", - "Date" : "Tue, 24 May 2022 13:04:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12368,Microsoft.Compute/GetVMImageFromLocation30Min;73368", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130434Z:8dae67bb-960b-466c-bd37-18130d807708", - "Expires" : "-1", - "x-ms-request-id" : "763acaf8-ef3c-4744-b1f2-62c7a16ca7b4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.20191216\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.20191216\"\r\n}", - "x-ms-client-request-id" : "0ff867b9-0d08-4099-b225-8407fae7b5d9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7.7/versions/7.7.2021051901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c6ef0ab-38a4-42f1-a8e7-7dd71808c0e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d676a169-9021-43bd-83bb-3fbae026542f", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12369,Microsoft.Compute/GetVMImageFromLocation30Min;73369", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130434Z:d676a169-9021-43bd-83bb-3fbae026542f", - "Expires" : "-1", - "x-ms-request-id" : "41772885-8067-411f-b068-880ffc490a28", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7.7/Versions/7.7.2021051901\"\r\n}", - "x-ms-client-request-id" : "3c6ef0ab-38a4-42f1-a8e7-7dd71808c0e9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/74sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d64b55b6-31c5-4013-9735-5b35202c7ece", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1171", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11712", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68fafb4c-844b-4cd0-851a-de4dcd6488d1", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15811,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130435Z:68fafb4c-844b-4cd0-851a-de4dcd6488d1", - "Expires" : "-1", - "x-ms-request-id" : "556a5696-f803-4743-840b-4b793c1daeb5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.20191214\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20200716\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.20200716\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020082418\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.2020082418\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.2021051102\"\r\n }\r\n]", - "x-ms-client-request-id" : "d64b55b6-31c5-4013-9735-5b35202c7ece", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/74sapha-gen2/versions/7.4.20191214?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44fbfd12-2f45-465e-93f9-0ae7f60b659c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11738", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7717fa23-32a6-4178-a0cc-f45b02c761d4", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12365,Microsoft.Compute/GetVMImageFromLocation30Min;73365", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130435Z:7717fa23-32a6-4178-a0cc-f45b02c761d4", - "Expires" : "-1", - "x-ms-request-id" : "42151aa1-fe69-4433-bda6-b361e092192a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20191214\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.20191214\"\r\n}", - "x-ms-client-request-id" : "44fbfd12-2f45-465e-93f9-0ae7f60b659c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/74sapha-gen2/versions/7.4.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e173d79-2761-4bc2-b76a-d545e34588dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c708bd17-6fb7-4614-bf5d-0d81f373629a", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12363,Microsoft.Compute/GetVMImageFromLocation30Min;73363", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130435Z:c708bd17-6fb7-4614-bf5d-0d81f373629a", - "Expires" : "-1", - "x-ms-request-id" : "7ecbde1e-9763-4d19-af82-9e882c9e7396", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.2021051102\"\r\n}", - "x-ms-client-request-id" : "7e173d79-2761-4bc2-b76a-d545e34588dc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/74sapha-gen2/versions/7.4.2020082418?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1361681e-4d4c-4bc7-9336-f6540f5419b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11710", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c929a59-23f1-4548-b8f6-ffc00afd897a", - "Date" : "Tue, 24 May 2022 13:04:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12364,Microsoft.Compute/GetVMImageFromLocation30Min;73364", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130435Z:7c929a59-23f1-4548-b8f6-ffc00afd897a", - "Expires" : "-1", - "x-ms-request-id" : "379e3a9a-1e81-4392-adeb-04d150b51475", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.2020082418\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.2020082418\"\r\n}", - "x-ms-client-request-id" : "1361681e-4d4c-4bc7-9336-f6540f5419b6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/74sapha-gen2/versions/7.4.20200716?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "494b4e74-a135-4334-9b48-4f94f05f1af1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11710", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "592c0018-9218-4fb8-85de-ca2c363202bf", - "Date" : "Tue, 24 May 2022 13:04:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12362,Microsoft.Compute/GetVMImageFromLocation30Min;73362", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130435Z:592c0018-9218-4fb8-85de-ca2c363202bf", - "Expires" : "-1", - "x-ms-request-id" : "837d0b35-f408-44af-bbf0-281c9617ddb9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.4.20200716\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/74sapha-gen2/Versions/7.4.20200716\"\r\n}", - "x-ms-client-request-id" : "494b4e74-a135-4334-9b48-4f94f05f1af1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/76sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a5bcdb6-93be-4897-8809-8a42f7d7a141", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1473", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec521ece-670e-4686-aab0-a06ed9a1c870", - "Date" : "Tue, 24 May 2022 13:04:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15810,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43810", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:ec521ece-670e-4686-aab0-a06ed9a1c870", - "Expires" : "-1", - "x-ms-request-id" : "785c527e-e752-4fa7-90ae-47045ad37cfa", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020062416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2020062416\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020091013\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2020091013\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021031519\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2021031519\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2021051102\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021102502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2021102502\"\r\n }\r\n]", - "x-ms-client-request-id" : "8a5bcdb6-93be-4897-8809-8a42f7d7a141", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/76sapha-gen2/versions/7.6.2020091013?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f58a441-e3fc-476c-9958-ddad7945cdff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "90561f90-5e2f-4318-b3f8-74cf86e88647", - "Date" : "Tue, 24 May 2022 13:04:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12361,Microsoft.Compute/GetVMImageFromLocation30Min;73361", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:90561f90-5e2f-4318-b3f8-74cf86e88647", - "Expires" : "-1", - "x-ms-request-id" : "92b679b1-b13b-46f1-ae36-b87fef2373a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020091013\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2020091013\"\r\n}", - "x-ms-client-request-id" : "5f58a441-e3fc-476c-9958-ddad7945cdff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/76sapha-gen2/versions/7.6.2021031519?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4a1d56b-30ac-4c9b-8ae7-c72553478beb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "872b68e0-eb43-4df2-a40d-a088d6574a8a", - "Date" : "Tue, 24 May 2022 13:04:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12360,Microsoft.Compute/GetVMImageFromLocation30Min;73360", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:872b68e0-eb43-4df2-a40d-a088d6574a8a", - "Expires" : "-1", - "x-ms-request-id" : "bae6b1b6-9a79-43ff-a770-6e06c6073694", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021031519\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2021031519\"\r\n}", - "x-ms-client-request-id" : "c4a1d56b-30ac-4c9b-8ae7-c72553478beb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/76sapha-gen2/versions/7.6.2020062416?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dea9c415-dd06-45ef-a348-fd6dc5fa53de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34a27c9e-9a9e-401c-8a69-a91eb4433af6", - "Date" : "Tue, 24 May 2022 13:04:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12359,Microsoft.Compute/GetVMImageFromLocation30Min;73359", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:34a27c9e-9a9e-401c-8a69-a91eb4433af6", - "Expires" : "-1", - "x-ms-request-id" : "0e0deb49-0ce4-431f-983b-6b57aef62f3e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2020062416\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2020062416\"\r\n}", - "x-ms-client-request-id" : "dea9c415-dd06-45ef-a348-fd6dc5fa53de", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/76sapha-gen2/versions/7.6.2021102502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc892a2d-206d-4f0a-b29a-c5e14eee8e2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "224e651b-ff89-4ebe-b474-55e785dce8e6", - "Date" : "Tue, 24 May 2022 13:04:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12358,Microsoft.Compute/GetVMImageFromLocation30Min;73358", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:224e651b-ff89-4ebe-b474-55e785dce8e6", - "Expires" : "-1", - "x-ms-request-id" : "9175fd0a-c84e-4d22-9f0a-4a5ac4f1bf1f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021102502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2021102502\"\r\n}", - "x-ms-client-request-id" : "dc892a2d-206d-4f0a-b29a-c5e14eee8e2f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/76sapha-gen2/versions/7.6.2021051102?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "06d1868d-5243-41de-8a92-e6b3afafacb0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11737", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b91b41a-5895-4e02-b059-435290463d8c", - "Date" : "Tue, 24 May 2022 13:04:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12357,Microsoft.Compute/GetVMImageFromLocation30Min;73357", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:1b91b41a-5895-4e02-b059-435290463d8c", - "Expires" : "-1", - "x-ms-request-id" : "1ff1a9b3-cc9e-44f8-8b2c-21bfc5fac191", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.6.2021051102\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/76sapha-gen2/Versions/7.6.2021051102\"\r\n}", - "x-ms-client-request-id" : "06d1868d-5243-41de-8a92-e6b3afafacb0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/77sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "979916d9-a626-4a06-8c21-3c0c4ff4e5e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "885", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82142a04-a492-4193-a7eb-715721914ed5", - "Date" : "Tue, 24 May 2022 13:04:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15809,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130436Z:82142a04-a492-4193-a7eb-715721914ed5", - "Expires" : "-1", - "x-ms-request-id" : "a31d06f1-f791-4efd-b90f-7ee2a2a83361", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020062415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2/Versions/7.7.2020062415\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082417\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2/Versions/7.7.2020082417\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2/Versions/7.7.2021051902\"\r\n }\r\n]", - "x-ms-client-request-id" : "979916d9-a626-4a06-8c21-3c0c4ff4e5e9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/77sapha-gen2/versions/7.7.2020082417?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e61bf22d-83ea-4026-9374-7b25388b9121", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45e0186a-9436-45da-9acb-0063dd579cfe", - "Date" : "Tue, 24 May 2022 13:04:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12356,Microsoft.Compute/GetVMImageFromLocation30Min;73356", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130437Z:45e0186a-9436-45da-9acb-0063dd579cfe", - "Expires" : "-1", - "x-ms-request-id" : "bea37c7d-8bff-4058-bf7c-c91d7613e6da", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020082417\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2/Versions/7.7.2020082417\"\r\n}", - "x-ms-client-request-id" : "e61bf22d-83ea-4026-9374-7b25388b9121", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/77sapha-gen2/versions/7.7.2020062415?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8b27877-1051-4c00-ba35-99043482b26d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43ecfadf-bfa3-433f-abcf-b0dd6ad79b41", - "Date" : "Tue, 24 May 2022 13:04:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12355,Microsoft.Compute/GetVMImageFromLocation30Min;73355", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130437Z:43ecfadf-bfa3-433f-abcf-b0dd6ad79b41", - "Expires" : "-1", - "x-ms-request-id" : "dd68af28-9540-49c3-a250-afd738b7048d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2020062415\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2/Versions/7.7.2020062415\"\r\n}", - "x-ms-client-request-id" : "c8b27877-1051-4c00-ba35-99043482b26d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/77sapha-gen2/versions/7.7.2021051902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa13e477-c9c4-4206-becd-ecbd2a8c2e67", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2d224a5-6374-497f-ae53-3eec6975ef09", - "Date" : "Tue, 24 May 2022 13:04:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12354,Microsoft.Compute/GetVMImageFromLocation30Min;73354", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130437Z:d2d224a5-6374-497f-ae53-3eec6975ef09", - "Expires" : "-1", - "x-ms-request-id" : "b46f3edc-c6a3-49d9-8cb8-03e9e219abff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.7.2021051902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/77sapha-gen2/Versions/7.7.2021051902\"\r\n}", - "x-ms-client-request-id" : "aa13e477-c9c4-4206-becd-ecbd2a8c2e67", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/79sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3043a8b9-a17a-4c4f-aab0-e86785dd7a9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "297", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3327c512-9877-4ca7-87cc-71d3b2f09ff5", - "Date" : "Tue, 24 May 2022 13:04:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15808,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130437Z:3327c512-9877-4ca7-87cc-71d3b2f09ff5", - "Expires" : "-1", - "x-ms-request-id" : "576e1d59-6f24-4611-9724-41308b384a4f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/79sapha-gen2/Versions/7.9.2021051502\"\r\n }\r\n]", - "x-ms-client-request-id" : "3043a8b9-a17a-4c4f-aab0-e86785dd7a9e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/79sapha-gen2/versions/7.9.2021051502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42ed22ef-d04b-46d4-ba53-b2f44d6e1833", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e802db9e-1da1-415b-98ee-7b33a054787a", - "Date" : "Tue, 24 May 2022 13:04:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12353,Microsoft.Compute/GetVMImageFromLocation30Min;73353", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130438Z:e802db9e-1da1-415b-98ee-7b33a054787a", - "Expires" : "-1", - "x-ms-request-id" : "747d3ad8-ed06-41d7-a65b-7103fb2e7c45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/79sapha-gen2/Versions/7.9.2021051502\"\r\n}", - "x-ms-client-request-id" : "42ed22ef-d04b-46d4-ba53-b2f44d6e1833", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7_9/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6842b04e-d441-4b50-9b9c-20665a9de7a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24eefc32-4cb9-463b-9142-5bffba7cd24f", - "Date" : "Tue, 24 May 2022 13:04:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15807,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130438Z:24eefc32-4cb9-463b-9142-5bffba7cd24f", - "Expires" : "-1", - "x-ms-request-id" : "59f616ce-5c31-4431-9d05-6d41e932570b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7_9/Versions/7.9.2021051501\"\r\n }\r\n]", - "x-ms-client-request-id" : "6842b04e-d441-4b50-9b9c-20665a9de7a6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/7_9/versions/7.9.2021051501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18dcd1bf-b01c-4a8a-a5e5-40248d2b2b3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "756", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c51ba1ca-5e50-43cb-bc90-9bb2e19bbde5", - "Date" : "Tue, 24 May 2022 13:04:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12352,Microsoft.Compute/GetVMImageFromLocation30Min;73352", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130438Z:c51ba1ca-5e50-43cb-bc90-9bb2e19bbde5", - "Expires" : "-1", - "x-ms-request-id" : "22af0506-1e0f-4e22-9f8d-0afa88563113", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.9.2021051501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/7_9/Versions/7.9.2021051501\"\r\n}", - "x-ms-client-request-id" : "18dcd1bf-b01c-4a8a-a5e5-40248d2b2b3e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5587ae3a-0b7d-446c-ac15-f497c1689abf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4751024-79e6-42d4-ab30-41cf9354ad24", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15806,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43806", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130439Z:e4751024-79e6-42d4-ab30-41cf9354ad24", - "Expires" : "-1", - "x-ms-request-id" : "bfb600be-ed39-488d-8017-75d3bd9016f9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020060412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2020060412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021010601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2021010601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "5587ae3a-0b7d-446c-ac15-f497c1689abf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.1/versions/8.1.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38e66d2b-dfe4-4ab9-9444-8f2d80c10cb8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a2f7b32-4fe6-4b97-b5d4-99c14ee734c7", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12351,Microsoft.Compute/GetVMImageFromLocation30Min;73351", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130439Z:5a2f7b32-4fe6-4b97-b5d4-99c14ee734c7", - "Expires" : "-1", - "x-ms-request-id" : "1abee20c-879a-449b-a3e7-53e3910ba5cc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2021091201\"\r\n}", - "x-ms-client-request-id" : "38e66d2b-dfe4-4ab9-9444-8f2d80c10cb8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.1/versions/8.1.2020060412?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e0f5ef9-20b6-4157-8fb5-a89391e1cb8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d87114e-59c0-48b0-8005-6acdc28dc47c", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12350,Microsoft.Compute/GetVMImageFromLocation30Min;73350", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130439Z:9d87114e-59c0-48b0-8005-6acdc28dc47c", - "Expires" : "-1", - "x-ms-request-id" : "b523fd6c-c9c3-4b9b-9ee9-f3a07e9e2697", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020060412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2020060412\"\r\n}", - "x-ms-client-request-id" : "6e0f5ef9-20b6-4157-8fb5-a89391e1cb8a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.1/versions/8.1.2021010601?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "adf37590-2a03-41af-bbc4-9b2ba9561638", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "97063e77-7994-46bd-a3ed-a799e64af240", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12349,Microsoft.Compute/GetVMImageFromLocation30Min;73349", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130439Z:97063e77-7994-46bd-a3ed-a799e64af240", - "Expires" : "-1", - "x-ms-request-id" : "d3cca615-0438-43ab-8b20-24dad297abfe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021010601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2021010601\"\r\n}", - "x-ms-client-request-id" : "adf37590-2a03-41af-bbc4-9b2ba9561638", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.1/versions/8.1.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69d0223f-01bf-45c0-916c-c58889322deb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11786", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c7ff9fe-6283-4457-983c-baf056e652c3", - "Date" : "Tue, 24 May 2022 13:04:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12348,Microsoft.Compute/GetVMImageFromLocation30Min;73348", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130439Z:1c7ff9fe-6283-4457-983c-baf056e652c3", - "Expires" : "-1", - "x-ms-request-id" : "12384a29-1940-4771-bbcc-a9ea3048b799", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2022031401\"\r\n}", - "x-ms-client-request-id" : "69d0223f-01bf-45c0-916c-c58889322deb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.1/versions/8.1.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08605bff-a86a-4fa9-88d7-4062c3dffb7c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11786", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebb679bf-e75d-4e50-aa3b-3e5e23d4fa97", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12347,Microsoft.Compute/GetVMImageFromLocation30Min;73347", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130439Z:ebb679bf-e75d-4e50-aa3b-3e5e23d4fa97", - "Expires" : "-1", - "x-ms-request-id" : "681bb0df-1e59-41db-a9a0-025d75a17a09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.1/Versions/8.1.2021040901\"\r\n}", - "x-ms-client-request-id" : "08605bff-a86a-4fa9-88d7-4062c3dffb7c", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f03d8320-8c2e-4a83-8f2b-470f6e697cd7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d0f4a8f-e6e5-4e52-83eb-1b5e73122a86", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15805,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43805", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:4d0f4a8f-e6e5-4e52-83eb-1b5e73122a86", - "Expires" : "-1", - "x-ms-request-id" : "669923a7-5c68-4754-b21a-0cafc733dd62", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020060412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2020060412\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021010601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2021010601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2021040901\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "f03d8320-8c2e-4a83-8f2b-470f6e697cd7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.2/versions/8.2.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c28cbaef-6ff8-4cf2-b921-e127078ac404", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8bde167b-f491-45d7-820b-ad332c9f2c64", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12344,Microsoft.Compute/GetVMImageFromLocation30Min;73344", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:8bde167b-f491-45d7-820b-ad332c9f2c64", - "Expires" : "-1", - "x-ms-request-id" : "414d986e-4120-4ddb-bbd6-251e8f2d2891", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2021091201\"\r\n}", - "x-ms-client-request-id" : "c28cbaef-6ff8-4cf2-b921-e127078ac404", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.2/versions/8.2.2021040901?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6f09ee8-3cb8-4de6-8ffb-389f8ea66005", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a8852cc-9022-4d50-a108-71ecb0a44b02", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12346,Microsoft.Compute/GetVMImageFromLocation30Min;73346", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:3a8852cc-9022-4d50-a108-71ecb0a44b02", - "Expires" : "-1", - "x-ms-request-id" : "6af9002a-1618-41ce-bf73-94d15ba655dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040901\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2021040901\"\r\n}", - "x-ms-client-request-id" : "d6f09ee8-3cb8-4de6-8ffb-389f8ea66005", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.2/versions/8.2.2020060412?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea728c9e-0b0b-4cd6-b050-361714a366aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11736", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "981641da-4171-4c67-8065-0dfdb1a4782c", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12343,Microsoft.Compute/GetVMImageFromLocation30Min;73343", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:981641da-4171-4c67-8065-0dfdb1a4782c", - "Expires" : "-1", - "x-ms-request-id" : "a0ba7df5-eb99-42b5-aab1-878f347ac2c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020060412\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2020060412\"\r\n}", - "x-ms-client-request-id" : "ea728c9e-0b0b-4cd6-b050-361714a366aa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.2/versions/8.2.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80d94aeb-647e-45ff-a197-fb7f3af07d1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f056f74-c7e3-4556-800f-bfc0f4d364ec", - "Date" : "Tue, 24 May 2022 13:04:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12342,Microsoft.Compute/GetVMImageFromLocation30Min;73342", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:8f056f74-c7e3-4556-800f-bfc0f4d364ec", - "Expires" : "-1", - "x-ms-request-id" : "be8fac55-615b-4950-b3c1-8ba151f0f00b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2022031401\"\r\n}", - "x-ms-client-request-id" : "80d94aeb-647e-45ff-a197-fb7f3af07d1d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8.2/versions/8.2.2021010601?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a539fdec-2a12-4864-a72f-0031d84cb6d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbf879ce-cc78-408a-b00d-bde5e98e0130", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12345,Microsoft.Compute/GetVMImageFromLocation30Min;73345", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:bbf879ce-cc78-408a-b00d-bde5e98e0130", - "Expires" : "-1", - "x-ms-request-id" : "d8a6e907-bec6-4eee-bf53-53a79143e18d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021010601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8.2/Versions/8.2.2021010601\"\r\n}", - "x-ms-client-request-id" : "a539fdec-2a12-4864-a72f-0031d84cb6d1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/81sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1159ef17-55ad-4aeb-8011-b9a939754944", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1473", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "715298ee-b7fe-482c-a8f3-05718989afb2", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15804,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130440Z:715298ee-b7fe-482c-a8f3-05718989afb2", - "Expires" : "-1", - "x-ms-request-id" : "156411e1-cf3f-4b0a-a1f1-075dd02923f6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020060413\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2020060413\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021010602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2021010602\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "1159ef17-55ad-4aeb-8011-b9a939754944", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/81sapha-gen2/versions/8.1.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "abd170ca-91f9-40a6-8f9d-a0d4f34ca235", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9cb2862-a7eb-4ee3-8a4a-c9283dacd2cc", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12341,Microsoft.Compute/GetVMImageFromLocation30Min;73341", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:e9cb2862-a7eb-4ee3-8a4a-c9283dacd2cc", - "Expires" : "-1", - "x-ms-request-id" : "e4cbcaca-0fc2-4e6d-b142-3669982c2c35", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2021040902\"\r\n}", - "x-ms-client-request-id" : "abd170ca-91f9-40a6-8f9d-a0d4f34ca235", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/81sapha-gen2/versions/8.1.2020060413?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa417432-0e29-49b3-a13c-e8d901523b92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e169d8c6-246a-4090-b414-1ebad90b49c1", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12340,Microsoft.Compute/GetVMImageFromLocation30Min;73340", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:e169d8c6-246a-4090-b414-1ebad90b49c1", - "Expires" : "-1", - "x-ms-request-id" : "9cc9f6cc-065c-409b-baf1-6de5259474c0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2020060413\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2020060413\"\r\n}", - "x-ms-client-request-id" : "fa417432-0e29-49b3-a13c-e8d901523b92", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/81sapha-gen2/versions/8.1.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f062d809-e115-4cd6-adc0-8b4ab0acc7ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd23a2db-cf69-4f26-be78-995b5ff6e6eb", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12339,Microsoft.Compute/GetVMImageFromLocation30Min;73339", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:fd23a2db-cf69-4f26-be78-995b5ff6e6eb", - "Expires" : "-1", - "x-ms-request-id" : "e9c7e63f-b5d9-419d-b763-01e9ff159eb3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2021091202\"\r\n}", - "x-ms-client-request-id" : "f062d809-e115-4cd6-adc0-8b4ab0acc7ab", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/81sapha-gen2/versions/8.1.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09739e89-bca4-4b2f-b2fc-be8710bdfa20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b04e9a8-2443-4c9e-8dc2-e4b99c6932ed", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12337,Microsoft.Compute/GetVMImageFromLocation30Min;73337", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:8b04e9a8-2443-4c9e-8dc2-e4b99c6932ed", - "Expires" : "-1", - "x-ms-request-id" : "0f30d40a-b059-482b-9b7f-cbd32fe89d8a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2022031402\"\r\n}", - "x-ms-client-request-id" : "09739e89-bca4-4b2f-b2fc-be8710bdfa20", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/81sapha-gen2/versions/8.1.2021010602?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da0a9cf9-ef26-4413-b4ab-5de435d130ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "766a0f34-684f-4762-87aa-3b692cc0d7a1", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12338,Microsoft.Compute/GetVMImageFromLocation30Min;73338", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:766a0f34-684f-4762-87aa-3b692cc0d7a1", - "Expires" : "-1", - "x-ms-request-id" : "2704277c-5af3-453d-aec4-8e44204d29a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.1.2021010602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/81sapha-gen2/Versions/8.1.2021010602\"\r\n}", - "x-ms-client-request-id" : "da0a9cf9-ef26-4413-b4ab-5de435d130ff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/82sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5fce547-1bbb-4ea7-ae94-8aa769f0da29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1473", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04e16489-12a8-4f47-91a6-e265c194c8aa", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15803,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:04e16489-12a8-4f47-91a6-e265c194c8aa", - "Expires" : "-1", - "x-ms-request-id" : "27c6a2ea-6c72-47b2-ba8b-3f742fb5eb92", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020060413\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2020060413\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021010602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2021010602\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2021040902\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "c5fce547-1bbb-4ea7-ae94-8aa769f0da29", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/82sapha-gen2/versions/8.2.2021040902?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39eacffe-937e-4537-9fd1-c18b26baaca2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "321c401b-a120-40db-ab63-20edd0d9931f", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12335,Microsoft.Compute/GetVMImageFromLocation30Min;73335", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:321c401b-a120-40db-ab63-20edd0d9931f", - "Expires" : "-1", - "x-ms-request-id" : "30839759-788b-4f79-ae1c-a1000f89f11b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021040902\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2021040902\"\r\n}", - "x-ms-client-request-id" : "39eacffe-937e-4537-9fd1-c18b26baaca2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/82sapha-gen2/versions/8.2.2021010602?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74abc5b5-35e6-4ca4-a653-9311d8e429d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11709", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a0eaee9-af12-43ea-b5bc-749138d642a4", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12336,Microsoft.Compute/GetVMImageFromLocation30Min;73336", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:4a0eaee9-af12-43ea-b5bc-749138d642a4", - "Expires" : "-1", - "x-ms-request-id" : "fd6874b6-816a-4e3e-9053-7a43768af618", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021010602\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2021010602\"\r\n}", - "x-ms-client-request-id" : "74abc5b5-35e6-4ca4-a653-9311d8e429d7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/82sapha-gen2/versions/8.2.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44703aa1-ee68-48e6-a073-7d3bc8692922", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "359bf573-f648-4939-83c9-942db31d1def", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12334,Microsoft.Compute/GetVMImageFromLocation30Min;73334", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:359bf573-f648-4939-83c9-942db31d1def", - "Expires" : "-1", - "x-ms-request-id" : "be12ea90-b5f1-4532-b81f-9b46b2993ad1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2022031402\"\r\n}", - "x-ms-client-request-id" : "44703aa1-ee68-48e6-a073-7d3bc8692922", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/82sapha-gen2/versions/8.2.2020060413?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e23f7f85-2382-4a68-9165-fb969df69d2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1cb532d6-ddd8-4832-9b7b-7432f5ef6ccf", - "Date" : "Tue, 24 May 2022 13:04:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12333,Microsoft.Compute/GetVMImageFromLocation30Min;73333", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:1cb532d6-ddd8-4832-9b7b-7432f5ef6ccf", - "Expires" : "-1", - "x-ms-request-id" : "832814fc-4ec0-413a-949f-a30c91e0a958", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2020060413\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2020060413\"\r\n}", - "x-ms-client-request-id" : "e23f7f85-2382-4a68-9165-fb969df69d2f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/82sapha-gen2/versions/8.2.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5660af2d-0f58-46ba-8e99-9c1d53fae86f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "20b038e7-3fc6-42fc-888e-85ac0bf3e96f", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12332,Microsoft.Compute/GetVMImageFromLocation30Min;73332", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130441Z:20b038e7-3fc6-42fc-888e-85ac0bf3e96f", - "Expires" : "-1", - "x-ms-request-id" : "8db763e7-0194-4b70-9296-6ebdefb75714", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.2.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/82sapha-gen2/Versions/8.2.2021091202\"\r\n}", - "x-ms-client-request-id" : "5660af2d-0f58-46ba-8e99-9c1d53fae86f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/84sapha-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1e330bd-8436-42d0-b500-550a9a937747", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1473", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18b014ee-0386-49be-845c-5643dfed9c59", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15802,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43802", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:18b014ee-0386-49be-845c-5643dfed9c59", - "Expires" : "-1", - "x-ms-request-id" : "a0ed2d65-2606-4e5f-86b4-de3c1a1c2d34", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021070802\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021080502\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021081002\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021091202\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2022031402\"\r\n }\r\n]", - "x-ms-client-request-id" : "d1e330bd-8436-42d0-b500-550a9a937747", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/84sapha-gen2/versions/8.4.2021070802?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fcdf404-3f57-4a65-a174-420db017cb3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11708", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9a783f7-0dd1-4287-9c11-b18304decd7e", - "Date" : "Tue, 24 May 2022 13:04:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12331,Microsoft.Compute/GetVMImageFromLocation30Min;73331", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:d9a783f7-0dd1-4287-9c11-b18304decd7e", - "Expires" : "-1", - "x-ms-request-id" : "bb20acba-bd0e-480f-9a04-a10edaf5141f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070802\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021070802\"\r\n}", - "x-ms-client-request-id" : "1fcdf404-3f57-4a65-a174-420db017cb3e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/84sapha-gen2/versions/8.4.2022031402?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7eff3f0-ae54-4e39-aefa-7dfed0de6c99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11809", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9eb62b4-3374-4fcb-b05f-3b21a0efb375", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12328,Microsoft.Compute/GetVMImageFromLocation30Min;73328", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:b9eb62b4-3374-4fcb-b05f-3b21a0efb375", - "Expires" : "-1", - "x-ms-request-id" : "30f0e492-dd7d-40e9-8cb5-709de8460f5e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031402\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2022031402\"\r\n}", - "x-ms-client-request-id" : "a7eff3f0-ae54-4e39-aefa-7dfed0de6c99", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/84sapha-gen2/versions/8.4.2021081002?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f985f2f8-9a9b-4e2f-acb1-dde284b9f748", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "16b9ef5e-5d43-4234-862c-f023cc279817", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12329,Microsoft.Compute/GetVMImageFromLocation30Min;73329", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:16b9ef5e-5d43-4234-862c-f023cc279817", - "Expires" : "-1", - "x-ms-request-id" : "844b38aa-7961-425a-9d21-9f82d6fa0e7f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081002\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021081002\"\r\n}", - "x-ms-client-request-id" : "f985f2f8-9a9b-4e2f-acb1-dde284b9f748", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/84sapha-gen2/versions/8.4.2021080502?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "357b4133-0945-4918-92a5-76adeee224aa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02f498e1-d9c6-4386-8623-dd5b47a3b76a", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12327,Microsoft.Compute/GetVMImageFromLocation30Min;73327", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:02f498e1-d9c6-4386-8623-dd5b47a3b76a", - "Expires" : "-1", - "x-ms-request-id" : "bc69c57c-6c1d-4e34-91c4-8b63fe9901de", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080502\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021080502\"\r\n}", - "x-ms-client-request-id" : "357b4133-0945-4918-92a5-76adeee224aa", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/84sapha-gen2/versions/8.4.2021091202?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ad2f783-93a1-4b67-8e64-f88ff4230fb3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa11fde8-2d7c-4557-a8ad-bf671c0a1366", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12330,Microsoft.Compute/GetVMImageFromLocation30Min;73330", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:fa11fde8-2d7c-4557-a8ad-bf671c0a1366", - "Expires" : "-1", - "x-ms-request-id" : "6d88be15-102a-4cdc-a388-b01c3f1c2c46", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091202\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/84sapha-gen2/Versions/8.4.2021091202\"\r\n}", - "x-ms-client-request-id" : "6ad2f783-93a1-4b67-8e64-f88ff4230fb3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8_4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e202cc9-3ddc-4bc2-aedd-34f39f4271bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f6d823a-2239-44cb-b198-cf81deeacec2", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15801,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43801", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:1f6d823a-2239-44cb-b198-cf81deeacec2", - "Expires" : "-1", - "x-ms-request-id" : "1f090cfd-f2fc-4f91-ab1e-434d134a1ed0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021070801\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021080501\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021081001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021091201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2022031401\"\r\n }\r\n]", - "x-ms-client-request-id" : "1e202cc9-3ddc-4bc2-aedd-34f39f4271bf", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8_4/versions/8.4.2021091201?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2eaaf14f-79ec-4af3-bcd3-3182eb72c813", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41744127-57a4-4e0b-94f3-3e0de468cddf", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12326,Microsoft.Compute/GetVMImageFromLocation30Min;73326", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:41744127-57a4-4e0b-94f3-3e0de468cddf", - "Expires" : "-1", - "x-ms-request-id" : "6dc0ce82-9550-4cb5-bc18-4319c782013e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021091201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021091201\"\r\n}", - "x-ms-client-request-id" : "2eaaf14f-79ec-4af3-bcd3-3182eb72c813", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8_4/versions/8.4.2021081001?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ea4cf4b-4dcf-4c78-ba15-fd59bbb2afdb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "842d7ed9-9d9f-4c3d-97f7-9e2b7b323545", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12324,Microsoft.Compute/GetVMImageFromLocation30Min;73324", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130442Z:842d7ed9-9d9f-4c3d-97f7-9e2b7b323545", - "Expires" : "-1", - "x-ms-request-id" : "cf1b58ac-e1b7-45d5-9c2f-4d6ea46159e9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021081001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021081001\"\r\n}", - "x-ms-client-request-id" : "5ea4cf4b-4dcf-4c78-ba15-fd59bbb2afdb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8_4/versions/8.4.2022031401?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca424dab-0ed6-4811-8a64-d0648cf11f7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44eb5fac-c6f5-40aa-8547-41e6af1a8a2f", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12323,Microsoft.Compute/GetVMImageFromLocation30Min;73323", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130443Z:44eb5fac-c6f5-40aa-8547-41e6af1a8a2f", - "Expires" : "-1", - "x-ms-request-id" : "dcd357af-bbcf-41bf-bce3-1f8ec790f1dd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2022031401\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2022031401\"\r\n}", - "x-ms-client-request-id" : "ca424dab-0ed6-4811-8a64-d0648cf11f7e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8_4/versions/8.4.2021080501?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88fc9331-006e-4c2f-bded-63df02742519", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa5a6aa0-1399-4f14-a025-0d7be570f17e", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12322,Microsoft.Compute/GetVMImageFromLocation30Min;73322", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130443Z:aa5a6aa0-1399-4f14-a025-0d7be570f17e", - "Expires" : "-1", - "x-ms-request-id" : "a2e51a05-b359-47d1-8486-09a3607e14d0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021080501\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021080501\"\r\n}", - "x-ms-client-request-id" : "88fc9331-006e-4c2f-bded-63df02742519", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HA/skus/8_4/versions/8.4.2021070801?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cab10a18-cc43-44bd-bd44-bba7ad47b173", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9451f3f6-21ba-4217-88c3-78668c7a9154", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12325,Microsoft.Compute/GetVMImageFromLocation30Min;73325", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130443Z:9451f3f6-21ba-4217-88c3-78668c7a9154", - "Expires" : "-1", - "x-ms-request-id" : "ab19d7cd-dab3-4085-8040-6232d04ffacc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021070801\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HA/Skus/8_4/Versions/8.4.2021070801\"\r\n}", - "x-ms-client-request-id" : "cab10a18-cc43-44bd-bd44-bba7ad47b173", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-sig-publishing-test/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef949bdb-b96c-4b2e-9bd4-3cb4592e7900", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1601", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11806", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f4a35f0-b9ba-4429-b043-5dc805b0c449", - "Date" : "Tue, 24 May 2022 13:04:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9978,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130443Z:2f4a35f0-b9ba-4429-b043-5dc805b0c449", - "Expires" : "-1", - "x-ms-request-id" : "33f42a2f-0063-4c9d-963c-b52060e0b2e5", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"9-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test/Skus/9-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"9_0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test/Skus/9_0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel77-sig-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test/Skus/rhel77-sig-test\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel78-test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test/Skus/rhel78-test\"\r\n }\r\n]", - "x-ms-client-request-id" : "ef949bdb-b96c-4b2e-9bd4-3cb4592e7900", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-sig-publishing-test/skus/9-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c79d5a2-4198-4bcf-9a80-da51a35ad2f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11735", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2877ac7b-9726-4dc7-bd09-4b136db5129f", - "Date" : "Tue, 24 May 2022 13:04:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15800,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130443Z:2877ac7b-9726-4dc7-bd09-4b136db5129f", - "Expires" : "-1", - "x-ms-request-id" : "cf284354-1253-4c75-9134-9a7905dd21c7", - "Body" : "[]", - "x-ms-client-request-id" : "5c79d5a2-4198-4bcf-9a80-da51a35ad2f5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-sig-publishing-test/skus/9_0/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bd6aaeb-df84-405a-9400-80b6569224f8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d0157ab6-5c08-4a95-a251-654bc8ecb6c6", - "Date" : "Tue, 24 May 2022 13:04:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15799,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130443Z:d0157ab6-5c08-4a95-a251-654bc8ecb6c6", - "Expires" : "-1", - "x-ms-request-id" : "f847ad0a-cb58-41a4-8bf0-41e0365dc65f", - "Body" : "[]", - "x-ms-client-request-id" : "3bd6aaeb-df84-405a-9400-80b6569224f8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-sig-publishing-test/skus/rhel77-sig-test/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f6f4d67-1f0e-48ec-a477-5dcb9ce053d0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a823ddf0-9e9d-4472-ab3b-32e017ac28b5", - "Date" : "Tue, 24 May 2022 13:04:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15798,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130444Z:a823ddf0-9e9d-4472-ab3b-32e017ac28b5", - "Expires" : "-1", - "x-ms-request-id" : "5ea4c744-bf99-43f1-b517-f735c8d74c38", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20210222\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test/Skus/rhel77-sig-test/Versions/7.8.20210222\"\r\n }\r\n]", - "x-ms-client-request-id" : "9f6f4d67-1f0e-48ec-a477-5dcb9ce053d0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-sig-publishing-test/skus/rhel77-sig-test/versions/7.8.20210222?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5a3259e-3a52-4dc9-8e78-e6419ca6ead1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1034", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e512d18-5c45-4d35-9e58-de2041ab505b", - "Date" : "Tue, 24 May 2022 13:04:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12321,Microsoft.Compute/GetVMImageFromLocation30Min;73321", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130444Z:3e512d18-5c45-4d35-9e58-de2041ab505b", - "Expires" : "-1", - "x-ms-request-id" : "48cb9a72-3ae7-4604-be95-b1e6d2512c26", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel77-sig-test\",\r\n \"product\": \"rhel-sig-publishing-test\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.8.20210222\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rhel-sig-publishing-test/Skus/rhel77-sig-test/Versions/7.8.20210222\"\r\n}", - "x-ms-client-request-id" : "b5a3259e-3a52-4dc9-8e78-e6419ca6ead1", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rhel-sig-publishing-test/skus/rhel78-test/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c2d7aed-3e91-42d9-b279-8cf11eacb3a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3bdaf36-0464-4255-b653-f6fe233c98dc", - "Date" : "Tue, 24 May 2022 13:04:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15797,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130444Z:e3bdaf36-0464-4255-b653-f6fe233c98dc", - "Expires" : "-1", - "x-ms-request-id" : "57caa90d-da10-4ae2-9ea8-9b7f40f1b8e8", - "Body" : "[]", - "x-ms-client-request-id" : "5c2d7aed-3e91-42d9-b279-8cf11eacb3a9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-TEST/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77becbea-a60b-42d2-8e20-3ed2ec5643d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "412", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3237a9d-b6af-47b4-b2c5-f2b0bd5dada0", - "Date" : "Tue, 24 May 2022 13:04:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9977,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130444Z:d3237a9d-b6af-47b4-b2c5-f2b0bd5dada0", - "Expires" : "-1", - "x-ms-request-id" : "beeb3cf1-fc4e-4c64-9538-f228bb610305", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-RAW-TEST-DO-NOT-USE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-TEST/Skus/7-RAW-TEST-DO-NOT-USE\"\r\n }\r\n]", - "x-ms-client-request-id" : "77becbea-a60b-42d2-8e20-3ed2ec5643d3", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-TEST/skus/7-RAW-TEST-DO-NOT-USE/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e74559d-2e27-43cb-9f26-58ee91c3a7b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03171bba-a1bd-4a25-b301-34f78394cd8c", - "Date" : "Tue, 24 May 2022 13:04:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15796,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130445Z:03171bba-a1bd-4a25-b301-34f78394cd8c", - "Expires" : "-1", - "x-ms-request-id" : "60db617f-8a34-4e18-9281-2e79d12d0370", - "Body" : "[]", - "x-ms-client-request-id" : "5e74559d-2e27-43cb-9f26-58ee91c3a7b9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7492f59-af1d-42c1-b4a1-8734da08e19e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38a7a2c1-1a9b-4f47-89d2-8124da0b4253", - "Date" : "Tue, 24 May 2022 13:04:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9976,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130445Z:38a7a2c1-1a9b-4f47-89d2-8124da0b4253", - "Expires" : "-1", - "x-ms-request-id" : "273e5735-170b-49fb-ae46-15494ccffaee", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7a_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest/Skus/rhel7a_latest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7a_latest_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest/Skus/rhel7a_latest_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7b_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest/Skus/rhel7b_latest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7b_latest_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest/Skus/rhel7b_latest_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7c_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest/Skus/rhel7c_latest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7c_latest_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_latest/Skus/rhel7c_latest_gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "d7492f59-af1d-42c1-b4a1-8734da08e19e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus/rhel7a_latest/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d0cdd1b-b564-4089-911a-759dd79fd383", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb9fc9b1-2fb7-476e-a9d2-b313fdc94b56", - "Date" : "Tue, 24 May 2022 13:04:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15795,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130445Z:cb9fc9b1-2fb7-476e-a9d2-b313fdc94b56", - "Expires" : "-1", - "x-ms-request-id" : "4415dd7d-ed6d-4f17-970a-57ea3647f6a4", - "Body" : "[]", - "x-ms-client-request-id" : "5d0cdd1b-b564-4089-911a-759dd79fd383", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus/rhel7a_latest_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd895404-5aba-4687-a6ae-be12c69ac726", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e95068cc-8b87-42bd-bdc8-9efb04d1b510", - "Date" : "Tue, 24 May 2022 13:04:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15794,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130446Z:e95068cc-8b87-42bd-bdc8-9efb04d1b510", - "Expires" : "-1", - "x-ms-request-id" : "05b2c995-093e-47f6-aff5-97448693d41f", - "Body" : "[]", - "x-ms-client-request-id" : "dd895404-5aba-4687-a6ae-be12c69ac726", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus/rhel7b_latest/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fe8fd4f-1813-4b62-99b1-7908195f2c6e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e55611a-5482-437b-b574-bfbb62f7ca9a", - "Date" : "Tue, 24 May 2022 13:04:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15793,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130446Z:5e55611a-5482-437b-b574-bfbb62f7ca9a", - "Expires" : "-1", - "x-ms-request-id" : "870d8025-e53f-4462-ae2f-54702ff54a8c", - "Body" : "[]", - "x-ms-client-request-id" : "0fe8fd4f-1813-4b62-99b1-7908195f2c6e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus/rhel7b_latest_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed56ed7b-e0ec-405d-ba2a-ace315bf1be7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11707", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "53da61a0-58d8-4e27-8b16-2deef41db508", - "Date" : "Tue, 24 May 2022 13:04:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15792,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130446Z:53da61a0-58d8-4e27-8b16-2deef41db508", - "Expires" : "-1", - "x-ms-request-id" : "ce423074-bf14-4035-907d-5d23f8fa2498", - "Body" : "[]", - "x-ms-client-request-id" : "ed56ed7b-e0ec-405d-ba2a-ace315bf1be7", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus/rhel7c_latest/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "500147d0-1eff-4d18-b5f2-cc73b60b0f65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7b0acd9-ded5-4b11-9bcd-4eed98487137", - "Date" : "Tue, 24 May 2022 13:04:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15791,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130446Z:d7b0acd9-ded5-4b11-9bcd-4eed98487137", - "Expires" : "-1", - "x-ms-request-id" : "5ade334d-e721-4d09-9ff5-70c7c6e4ccf8", - "Body" : "[]", - "x-ms-client-request-id" : "500147d0-1eff-4d18-b5f2-cc73b60b0f65", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_latest/skus/rhel7c_latest_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c19064ed-b33f-4cde-88b3-39184015d701", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89fc3492-fe94-4830-9bb7-eba1278a0640", - "Date" : "Tue, 24 May 2022 13:04:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15790,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130447Z:89fc3492-fe94-4830-9bb7-eba1278a0640", - "Expires" : "-1", - "x-ms-request-id" : "35030994-cded-481d-a1b9-79f7238ed1c7", - "Body" : "[]", - "x-ms-client-request-id" : "c19064ed-b33f-4cde-88b3-39184015d701", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96842320-acea-4201-97e1-420e71f01157", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2337", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9da17928-bd60-4bbc-af08-45ecc1def392", - "Date" : "Tue, 24 May 2022 13:04:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9975,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130447Z:9da17928-bd60-4bbc-af08-45ecc1def392", - "Expires" : "-1", - "x-ms-request-id" : "1289f58e-124f-4345-a4d3-2fb576d50320", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7-a\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm/Skus/rhel7-a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7-a-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm/Skus/rhel7-a-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7-b\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm/Skus/rhel7-b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7-b-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm/Skus/rhel7-b-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7-c\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm/Skus/rhel7-c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel7-c-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_7_vm/Skus/rhel7-c-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "96842320-acea-4201-97e1-420e71f01157", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus/rhel7-a/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14368d66-e6c7-4fd5-aa2b-08ebb7d2a38f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2582fbe3-a81a-4a90-a84a-13791d1e725f", - "Date" : "Tue, 24 May 2022 13:04:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15789,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130447Z:2582fbe3-a81a-4a90-a84a-13791d1e725f", - "Expires" : "-1", - "x-ms-request-id" : "c44e08bd-4936-4dc1-b577-4ab0892e1cf4", - "Body" : "[]", - "x-ms-client-request-id" : "14368d66-e6c7-4fd5-aa2b-08ebb7d2a38f", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus/rhel7-a-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31775800-94d2-4721-92cb-848a650cebff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ef7df31-8eed-4b2c-b70a-e1c6625b09c0", - "Date" : "Tue, 24 May 2022 13:04:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15788,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43788", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130448Z:3ef7df31-8eed-4b2c-b70a-e1c6625b09c0", - "Expires" : "-1", - "x-ms-request-id" : "751ba682-5295-4b7d-998d-ceec739af670", - "Body" : "[]", - "x-ms-client-request-id" : "31775800-94d2-4721-92cb-848a650cebff", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus/rhel7-b/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ea9a755-6275-471f-b704-d64062fba03e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6bb46323-96ea-4e4b-9f5b-121be7629787", - "Date" : "Tue, 24 May 2022 13:04:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15787,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130448Z:6bb46323-96ea-4e4b-9f5b-121be7629787", - "Expires" : "-1", - "x-ms-request-id" : "f21f9879-6be4-4909-bd9b-db75caa66223", - "Body" : "[]", - "x-ms-client-request-id" : "8ea9a755-6275-471f-b704-d64062fba03e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus/rhel7-b-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0c31a79-387a-4174-8c5f-13f2f7fc3fc8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c01b5a8-06fe-4240-8601-ebf4df4535dc", - "Date" : "Tue, 24 May 2022 13:04:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15786,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130448Z:1c01b5a8-06fe-4240-8601-ebf4df4535dc", - "Expires" : "-1", - "x-ms-request-id" : "ab61586c-c1da-4c79-84cc-e456877a28c6", - "Body" : "[]", - "x-ms-client-request-id" : "f0c31a79-387a-4174-8c5f-13f2f7fc3fc8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus/rhel7-c/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "552b363e-b34c-47a6-aff5-831af084b761", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c2e1cbd0-3c76-4b9e-b232-fb481351e1f1", - "Date" : "Tue, 24 May 2022 13:04:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15785,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43785", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130449Z:c2e1cbd0-3c76-4b9e-b232-fb481351e1f1", - "Expires" : "-1", - "x-ms-request-id" : "806fdb3d-5f31-411a-8b50-17e4ebfb3d36", - "Body" : "[]", - "x-ms-client-request-id" : "552b363e-b34c-47a6-aff5-831af084b761", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_7_vm/skus/rhel7-c-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee6045d1-859c-4b27-958c-9ea1863e8aa8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11734", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b77573a8-164e-4580-a254-014c80ea725e", - "Date" : "Tue, 24 May 2022 13:04:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15784,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43784", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130449Z:b77573a8-164e-4580-a254-014c80ea725e", - "Expires" : "-1", - "x-ms-request-id" : "93e81038-63ab-4e6d-b82b-3466728c5f76", - "Body" : "[]", - "x-ms-client-request-id" : "ee6045d1-859c-4b27-958c-9ea1863e8aa8", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60fbd179-b5b6-4a7a-9fb6-279c3f31f0af", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2433", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb45711d-4865-4411-b3d5-fe8719d72124", - "Date" : "Tue, 24 May 2022 13:04:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9974,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130449Z:cb45711d-4865-4411-b3d5-fe8719d72124", - "Expires" : "-1", - "x-ms-request-id" : "a965c0a3-65e8-428f-97dc-8043a0d424bb", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8a_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest/Skus/rhel8a_latest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8a_latest_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest/Skus/rhel8a_latest_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8b_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest/Skus/rhel8b_latest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8b_latest_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest/Skus/rhel8b_latest_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8c_latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest/Skus/rhel8c_latest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8c_latest_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_latest/Skus/rhel8c_latest_gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "60fbd179-b5b6-4a7a-9fb6-279c3f31f0af", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus/rhel8a_latest/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "97c77128-0bcf-4578-9878-aa3cd4c08f06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "14d991f9-21d1-4679-8df4-a211d74e8274", - "Date" : "Tue, 24 May 2022 13:04:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15783,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130449Z:14d991f9-21d1-4679-8df4-a211d74e8274", - "Expires" : "-1", - "x-ms-request-id" : "31ba064f-0036-4f84-8b59-5ac71976659f", - "Body" : "[]", - "x-ms-client-request-id" : "97c77128-0bcf-4578-9878-aa3cd4c08f06", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus/rhel8a_latest_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "51b892cc-ced9-46e4-856c-4d3852ecd70e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c5601b0-2045-4eb1-9c43-2dddf6a958b6", - "Date" : "Tue, 24 May 2022 13:04:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15782,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43782", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130450Z:2c5601b0-2045-4eb1-9c43-2dddf6a958b6", - "Expires" : "-1", - "x-ms-request-id" : "ccdf33f8-f7b3-457c-a316-cb3ec8ce88ae", - "Body" : "[]", - "x-ms-client-request-id" : "51b892cc-ced9-46e4-856c-4d3852ecd70e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus/rhel8b_latest/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4609fc84-eae6-4375-bd25-62473b9fe8dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11733", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "96785f0d-109d-4f9b-814a-667b9b82de32", - "Date" : "Tue, 24 May 2022 13:04:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15781,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130450Z:96785f0d-109d-4f9b-814a-667b9b82de32", - "Expires" : "-1", - "x-ms-request-id" : "7c984a73-4a21-40e6-9175-7d5443964e9e", - "Body" : "[]", - "x-ms-client-request-id" : "4609fc84-eae6-4375-bd25-62473b9fe8dd", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus/rhel8b_latest_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4b7822a-834c-4b83-83b6-976ab19df414", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c033007-60f2-44d3-9784-7138b33af9b5", - "Date" : "Tue, 24 May 2022 13:04:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15780,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130450Z:4c033007-60f2-44d3-9784-7138b33af9b5", - "Expires" : "-1", - "x-ms-request-id" : "196861ef-74d4-4ed9-a974-9ed3f368940d", - "Body" : "[]", - "x-ms-client-request-id" : "d4b7822a-834c-4b83-83b6-976ab19df414", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus/rhel8c_latest/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8081d2bf-9a1a-4aea-aa88-610e06bc3677", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a09c5625-2885-4ae1-b91e-325011014749", - "Date" : "Tue, 24 May 2022 13:04:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15779,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130451Z:a09c5625-2885-4ae1-b91e-325011014749", - "Expires" : "-1", - "x-ms-request-id" : "e3723f1f-491e-47de-8b1f-a2becd010cfd", - "Body" : "[]", - "x-ms-client-request-id" : "8081d2bf-9a1a-4aea-aa88-610e06bc3677", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_latest/skus/rhel8c_latest_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0887a758-961b-4689-a2b8-c45d33414867", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11706", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "628de310-df93-4d25-8728-4da1b0fca18f", - "Date" : "Tue, 24 May 2022 13:04:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15778,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130451Z:628de310-df93-4d25-8728-4da1b0fca18f", - "Expires" : "-1", - "x-ms-request-id" : "3db572a0-17dc-48a1-a3e7-42c9a40ec62f", - "Body" : "[]", - "x-ms-client-request-id" : "0887a758-961b-4689-a2b8-c45d33414867", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8424f7a2-1a98-4d91-abdc-76329d236445", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2445", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4853e894-280e-4831-80c0-e5f8556166b4", - "Date" : "Tue, 24 May 2022 13:04:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9973,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130451Z:4853e894-280e-4831-80c0-e5f8556166b4", - "Expires" : "-1", - "x-ms-request-id" : "c2537c0f-e9ad-45ac-b92b-dbdffa81618c", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_a1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_a1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_a1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_b1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_b1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_b1_gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_c1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_c1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_8_main_c1_gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_c1_gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "8424f7a2-1a98-4d91-abdc-76329d236445", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_a1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "183090af-95d5-4e48-ac74-f3bfd6d90990", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce3b563e-5f07-45e4-9bb6-97dd77fc61a7", - "Date" : "Tue, 24 May 2022 13:04:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15777,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43777", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130451Z:ce3b563e-5f07-45e4-9bb6-97dd77fc61a7", - "Expires" : "-1", - "x-ms-request-id" : "e26a0f6a-751f-4865-889d-5a8d84bca16b", - "Body" : "[]", - "x-ms-client-request-id" : "183090af-95d5-4e48-ac74-f3bfd6d90990", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_a1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b7b17f1-eff0-43fb-b5e7-bb72a67727b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb2e9871-9541-4051-9b3b-d837a2a3ba40", - "Date" : "Tue, 24 May 2022 13:04:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15776,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130452Z:cb2e9871-9541-4051-9b3b-d837a2a3ba40", - "Expires" : "-1", - "x-ms-request-id" : "05c2d0f7-5667-43b5-996e-ee9d701ba6c0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_a1_gen1/Versions/8.4.2021110400\"\r\n }\r\n]", - "x-ms-client-request-id" : "8b7b17f1-eff0-43fb-b5e7-bb72a67727b5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_a1_gen1/versions/8.4.2021110400?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f98e3469-5c1a-40c1-b2b5-1e5636f06b6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1030", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3f73b50-54cd-49a5-a5b0-412667132e8d", - "Date" : "Tue, 24 May 2022 13:04:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12320,Microsoft.Compute/GetVMImageFromLocation30Min;73320", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130452Z:d3f73b50-54cd-49a5-a5b0-412667132e8d", - "Expires" : "-1", - "x-ms-request-id" : "41b8ab02-771d-4d9f-b510-1bd5274ed56f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"rhel_8_main_a1_gen1\",\r\n \"product\": \"rh_rhel_8_main_1\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 64,\r\n \"sizeInBytes\": 68719477248\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"8.4.2021110400\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_main_1/Skus/rhel_8_main_a1_gen1/Versions/8.4.2021110400\"\r\n}", - "x-ms-client-request-id" : "f98e3469-5c1a-40c1-b2b5-1e5636f06b6b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_b1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1539d0c-2f0b-4546-9f29-df582e4c1e71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5efb84a-c256-4a90-8562-fc21ba495664", - "Date" : "Tue, 24 May 2022 13:04:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15775,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130452Z:f5efb84a-c256-4a90-8562-fc21ba495664", - "Expires" : "-1", - "x-ms-request-id" : "be1aad23-55c0-410f-9316-46d4f39bafc2", - "Body" : "[]", - "x-ms-client-request-id" : "a1539d0c-2f0b-4546-9f29-df582e4c1e71", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_b1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f75acf41-d48b-4b60-bd93-e05dc461e81e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd50b443-47fd-45b4-ab1a-2ebd33fd9782", - "Date" : "Tue, 24 May 2022 13:04:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15774,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130453Z:bd50b443-47fd-45b4-ab1a-2ebd33fd9782", - "Expires" : "-1", - "x-ms-request-id" : "c59f7c2d-9e77-40f9-b5da-65686c3850fb", - "Body" : "[]", - "x-ms-client-request-id" : "f75acf41-d48b-4b60-bd93-e05dc461e81e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_c1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "63c0bc53-e70a-4491-a1b3-5e2790db97e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0247a31d-1bec-48eb-b879-205a665f3ffc", - "Date" : "Tue, 24 May 2022 13:04:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15773,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43773", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130453Z:0247a31d-1bec-48eb-b879-205a665f3ffc", - "Expires" : "-1", - "x-ms-request-id" : "566c5b58-c913-4332-9cf8-a42e9b373727", - "Body" : "[]", - "x-ms-client-request-id" : "63c0bc53-e70a-4491-a1b3-5e2790db97e0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_main_1/skus/rhel_8_main_c1_gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cf8cea6-318c-4a43-97a3-2ccd5ee23a91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a2161dd-c05e-4ea4-bdba-3f91afa8b9f5", - "Date" : "Tue, 24 May 2022 13:04:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15772,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130453Z:1a2161dd-c05e-4ea4-bdba-3f91afa8b9f5", - "Expires" : "-1", - "x-ms-request-id" : "f5420fec-91be-4b60-92f4-edf5a38efe00", - "Body" : "[]", - "x-ms-client-request-id" : "8cf8cea6-318c-4a43-97a3-2ccd5ee23a91", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec2b3e11-9fef-4952-93c8-ecb37b9949d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2337", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a945f74e-debc-49bf-833f-8281fe8d1c7e", - "Date" : "Tue, 24 May 2022 13:04:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9972,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130453Z:a945f74e-debc-49bf-833f-8281fe8d1c7e", - "Expires" : "-1", - "x-ms-request-id" : "d7e9b906-501f-408c-95ae-849a0dd51107", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8-a\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm/Skus/rhel8-a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8-a-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm/Skus/rhel8-a-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8-b\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm/Skus/rhel8-b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8-b-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm/Skus/rhel8-b-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8-c\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm/Skus/rhel8-c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel8-c-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/rh_rhel_8_vm/Skus/rhel8-c-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "ec2b3e11-9fef-4952-93c8-ecb37b9949d4", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus/rhel8-a/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "64c44da0-ab8b-4993-b9a2-e9e9af769446", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e721e494-de16-4f1d-9f95-10935aaa0fb6", - "Date" : "Tue, 24 May 2022 13:04:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15771,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130454Z:e721e494-de16-4f1d-9f95-10935aaa0fb6", - "Expires" : "-1", - "x-ms-request-id" : "ec492303-736a-4ebb-b9dd-d5ce1e128f88", - "Body" : "[]", - "x-ms-client-request-id" : "64c44da0-ab8b-4993-b9a2-e9e9af769446", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus/rhel8-a-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61dc3b61-ba1f-4dbf-b598-574c96c50679", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4fb887a-192a-42fa-9900-43707a540cef", - "Date" : "Tue, 24 May 2022 13:04:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15770,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130454Z:d4fb887a-192a-42fa-9900-43707a540cef", - "Expires" : "-1", - "x-ms-request-id" : "ab10c28b-b13d-4c6c-83db-a366e6d8e2f2", - "Body" : "[]", - "x-ms-client-request-id" : "61dc3b61-ba1f-4dbf-b598-574c96c50679", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus/rhel8-b/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d961639-2e2e-4b00-be10-46efd1db50b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4a961d5-159a-4a50-8873-9ad3d20b46c0", - "Date" : "Tue, 24 May 2022 13:04:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15769,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130455Z:a4a961d5-159a-4a50-8873-9ad3d20b46c0", - "Expires" : "-1", - "x-ms-request-id" : "fcafef23-2014-42c6-814a-13455355c569", - "Body" : "[]", - "x-ms-client-request-id" : "3d961639-2e2e-4b00-be10-46efd1db50b9", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus/rhel8-b-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "623ad1d7-0720-492c-ac2f-6f78daf7a11e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0bbe5ac3-8425-464e-94bf-39717d001cfc", - "Date" : "Tue, 24 May 2022 13:04:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15768,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43768", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130455Z:0bbe5ac3-8425-464e-94bf-39717d001cfc", - "Expires" : "-1", - "x-ms-request-id" : "c6d97577-e25f-49d8-9c91-b561e631ac1b", - "Body" : "[]", - "x-ms-client-request-id" : "623ad1d7-0720-492c-ac2f-6f78daf7a11e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus/rhel8-c/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f74a3d56-4f82-4bb8-ad73-adbe55b6de15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5833afb-c32e-4c85-bead-fde3d0091f45", - "Date" : "Tue, 24 May 2022 13:04:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15767,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130455Z:b5833afb-c32e-4c85-bead-fde3d0091f45", - "Expires" : "-1", - "x-ms-request-id" : "0938a03d-b183-48a0-9db1-d677ace29747", - "Body" : "[]", - "x-ms-client-request-id" : "f74a3d56-4f82-4bb8-ad73-adbe55b6de15", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/rh_rhel_8_vm/skus/rhel8-c-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7f761a4-0a89-42ca-8eeb-dc01823bf8c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d007aa19-3b69-40eb-805c-49a864953a2d", - "Date" : "Tue, 24 May 2022 13:04:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15766,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43766", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130456Z:d007aa19-3b69-40eb-805c-49a864953a2d", - "Expires" : "-1", - "x-ms-request-id" : "ce5dae7f-fd79-4386-99d8-53bf61283408", - "Body" : "[]", - "x-ms-client-request-id" : "f7f761a4-0a89-42ca-8eeb-dc01823bf8c6", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fde756be-3725-4719-97db-039f1d025b2a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2529", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b684f084-614c-437d-a11a-0ad70b1457aa", - "Date" : "Tue, 24 May 2022 13:04:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9971,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130456Z:b684f084-614c-437d-a11a-0ad70b1457aa", - "Expires" : "-1", - "x-ms-request-id" : "b6bc40db-b348-4834-be59-2112a2e21bba", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker-a\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker-a-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-a-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker-b\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker-b-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-b-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker-c\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sp-test-oke-worker-c-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-c-gen1\"\r\n }\r\n]", - "x-ms-client-request-id" : "fde756be-3725-4719-97db-039f1d025b2a", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-a/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23b46394-66cd-452d-a90a-de785df70a9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "312", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86ad29a3-e4c3-4b0c-8d26-f309cee05b7e", - "Date" : "Tue, 24 May 2022 13:04:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15765,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130456Z:86ad29a3-e4c3-4b0c-8d26-f309cee05b7e", - "Expires" : "-1", - "x-ms-request-id" : "695a6465-b508-43ce-addb-e8775801216a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-a/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "23b46394-66cd-452d-a90a-de785df70a9e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-a/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "53b83d84-7dac-4a9e-bfac-2c09e43b834b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1104", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd0a5e3f-25e1-4581-bada-04c25333b206", - "Date" : "Tue, 24 May 2022 13:04:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12319,Microsoft.Compute/GetVMImageFromLocation30Min;73319", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130456Z:fd0a5e3f-25e1-4581-bada-04c25333b206", - "Expires" : "-1", - "x-ms-request-id" : "2491e9a3-911b-4a45-8079-9aa97e0ed03f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"sp-test-oke-worker-a\",\r\n \"product\": \"sp-test-oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-a/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "53b83d84-7dac-4a9e-bfac-2c09e43b834b", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-a-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec0a211f-2b45-4c63-ae63-baabf34d1c6d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "317", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40b6ff86-7f24-4880-8d9f-fa35dd37197d", - "Date" : "Tue, 24 May 2022 13:04:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15764,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130457Z:40b6ff86-7f24-4880-8d9f-fa35dd37197d", - "Expires" : "-1", - "x-ms-request-id" : "6467d11f-cbec-4d75-aea3-3d3432799c1f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-a-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "ec0a211f-2b45-4c63-ae63-baabf34d1c6d", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-a-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9a19313-8796-4183-8849-eb8bd2297ca2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1127", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9f8906b-36cb-45ca-9673-668f97ddaa27", - "Date" : "Tue, 24 May 2022 13:04:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12318,Microsoft.Compute/GetVMImageFromLocation30Min;73318", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130457Z:d9f8906b-36cb-45ca-9673-668f97ddaa27", - "Expires" : "-1", - "x-ms-request-id" : "6c5118b5-f26e-4e6b-8c09-1b7df7374432", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"sp-test-oke-worker-a-gen1\",\r\n \"product\": \"sp-test-oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-a-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "b9a19313-8796-4183-8849-eb8bd2297ca2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-b/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "094212a1-ea0a-4d3d-8f60-fb8d3aeb08c5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "312", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11732", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49056878-cad1-4399-b3b9-a22e516324ca", - "Date" : "Tue, 24 May 2022 13:04:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15763,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130457Z:49056878-cad1-4399-b3b9-a22e516324ca", - "Expires" : "-1", - "x-ms-request-id" : "12145235-3638-4bf0-817b-5508d9f55dd5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-b/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "094212a1-ea0a-4d3d-8f60-fb8d3aeb08c5", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-b/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed8a0047-2968-4301-ad55-327be2e86d22", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1104", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c77a882e-349f-4545-a028-97f983480234", - "Date" : "Tue, 24 May 2022 13:04:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12317,Microsoft.Compute/GetVMImageFromLocation30Min;73317", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130458Z:c77a882e-349f-4545-a028-97f983480234", - "Expires" : "-1", - "x-ms-request-id" : "5f224273-52ff-4550-a39f-38ce8c3526aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"sp-test-oke-worker-b\",\r\n \"product\": \"sp-test-oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-b/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "ed8a0047-2968-4301-ad55-327be2e86d22", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-b-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed4466cd-3525-4a59-8eaa-94d18fb473b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "317", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a203491c-efef-4b6c-a05b-c9eb5ccc76f0", - "Date" : "Tue, 24 May 2022 13:04:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15762,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130458Z:a203491c-efef-4b6c-a05b-c9eb5ccc76f0", - "Expires" : "-1", - "x-ms-request-id" : "bc75a930-5c9d-4639-b3b5-046ef7e783e2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-b-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "ed4466cd-3525-4a59-8eaa-94d18fb473b0", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-b-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72ced05f-306a-4c4b-9855-75204a01e715", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1127", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc3e3d64-9c87-473d-922d-bef480a8f364", - "Date" : "Tue, 24 May 2022 13:04:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12316,Microsoft.Compute/GetVMImageFromLocation30Min;73316", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130458Z:fc3e3d64-9c87-473d-922d-bef480a8f364", - "Expires" : "-1", - "x-ms-request-id" : "18279448-dd1a-4bcd-8be7-2b75fa56664d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"sp-test-oke-worker-b-gen1\",\r\n \"product\": \"sp-test-oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-b-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "72ced05f-306a-4c4b-9855-75204a01e715", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-c/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9178a507-9462-4abb-8a28-b9b545a5e647", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "312", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11705", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "744f5565-2c95-4f85-9e68-74b583687625", - "Date" : "Tue, 24 May 2022 13:04:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15761,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43761", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130458Z:744f5565-2c95-4f85-9e68-74b583687625", - "Expires" : "-1", - "x-ms-request-id" : "e9efca2c-e4b0-4cce-85eb-55573a6999ac", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-c/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "9178a507-9462-4abb-8a28-b9b545a5e647", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-c/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f01612a9-0ba8-4b35-a20a-428691c9ee23", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1104", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11731", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06463781-bd01-455f-ba94-23da18049ec0", - "Date" : "Tue, 24 May 2022 13:04:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12315,Microsoft.Compute/GetVMImageFromLocation30Min;73315", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130459Z:06463781-bd01-455f-ba94-23da18049ec0", - "Expires" : "-1", - "x-ms-request-id" : "b018df4f-2828-44d4-82ca-7d20ab6e0512", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 3,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"sp-test-oke-worker-c\",\r\n \"product\": \"sp-test-oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-c/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "f01612a9-0ba8-4b35-a20a-428691c9ee23", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-c-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "895084a4-61f7-4243-9139-a60b91c1b5cb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "317", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b1a00b4-84d9-44c3-8712-a8e7ae2d7b65", - "Date" : "Tue, 24 May 2022 13:04:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15760,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130500Z:3b1a00b4-84d9-44c3-8712-a8e7ae2d7b65", - "Expires" : "-1", - "x-ms-request-id" : "a4f6abdf-6e61-4573-aae1-edf0958affc6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-c-gen1/Versions/4.8.2021122100\"\r\n }\r\n]", - "x-ms-client-request-id" : "895084a4-61f7-4243-9139-a60b91c1b5cb", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/sp-test-oke-worker/skus/sp-test-oke-worker-c-gen1/versions/4.8.2021122100?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34ee2c09-f12f-43e5-b722-01975dcbddfc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1127", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fb56e1c5-8891-41ea-a6c6-243899c00a52", - "Date" : "Tue, 24 May 2022 13:04:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12314,Microsoft.Compute/GetVMImageFromLocation30Min;73314", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130500Z:fb56e1c5-8891-41ea-a6c6-243899c00a52", - "Expires" : "-1", - "x-ms-request-id" : "73225161-6f39-46a4-b77b-244403911458", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"ScheduledForDeprecation\",\r\n \"scheduledDeprecationTime\": \"2022-08-15T00:00:00+00:00\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"plan\": {\r\n \"publisher\": \"redhat\",\r\n \"name\": \"sp-test-oke-worker-c-gen1\",\r\n \"product\": \"sp-test-oke-worker\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 16,\r\n \"sizeInBytes\": 17179869696\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4.8.2021122100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/sp-test-oke-worker/Skus/sp-test-oke-worker-c-gen1/Versions/4.8.2021122100\"\r\n}", - "x-ms-client-request-id" : "34ee2c09-f12f-43e5-b722-01975dcbddfc", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/TEST-DO-NOT-USE/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f90b891c-f9b6-4efd-9853-89c7ae98aa5e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "386", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5387fc5-f18e-4536-aa29-bb66addaa697", - "Date" : "Tue, 24 May 2022 13:04:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9970,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130500Z:b5387fc5-f18e-4536-aa29-bb66addaa697", - "Expires" : "-1", - "x-ms-request-id" : "0d3be0f2-c98e-4e03-a3fc-d2c6faffabe1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7-LVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/TEST-DO-NOT-USE/Skus/7-LVM\"\r\n }\r\n]", - "x-ms-client-request-id" : "f90b891c-f9b6-4efd-9853-89c7ae98aa5e", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/TEST-DO-NOT-USE/skus/7-LVM/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b66f0db9-d742-4024-80c0-7535fc30d0d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01b38884-68a4-4583-b4b5-85416de709ee", - "Date" : "Tue, 24 May 2022 13:05:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15759,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43759", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130500Z:01b38884-68a4-4583-b4b5-85416de709ee", - "Expires" : "-1", - "x-ms-request-id" : "94845ee7-b2ae-4b5c-a434-d437d79641ee", - "Body" : "[]", - "x-ms-client-request-id" : "b66f0db9-d742-4024-80c0-7535fc30d0d2", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/test_offer_china/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb22467b-ffaa-4d9b-a3db-9e0958b45192", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "407", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4ef8c660-1edb-4c2d-ba21-99753c404554", - "Date" : "Tue, 24 May 2022 13:05:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9969,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130501Z:4ef8c660-1edb-4c2d-ba21-99753c404554", - "Expires" : "-1", - "x-ms-request-id" : "349e5ec7-9859-4b94-bd43-9b7e491d27a1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rhel_china_test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/test_offer_china/Skus/rhel_china_test\"\r\n }\r\n]", - "x-ms-client-request-id" : "eb22467b-ffaa-4d9b-a3db-9e0958b45192", - "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/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/test_offer_china/skus/rhel_china_test/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48d52e02-5ec2-4079-ba69-49f9e812688a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_132974889326133970", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11901", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ccf9dfc-d9c1-4230-be83-2599591574f5", - "Date" : "Tue, 24 May 2022 13:05:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15758,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130501Z:8ccf9dfc-d9c1-4230-be83-2599591574f5", - "Expires" : "-1", - "x-ms-request-id" : "02d3702e-8fdb-4d87-9340-81660aa103d7", - "Body" : "[]", - "x-ms-client-request-id" : "48d52e02-5ec2-4079-ba69-49f9e812688a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c0a3608-3fa0-4c65-8488-c4a335a559ea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "13202", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4fe93bd4-5b91-412e-bd42-13504c7f46ae", - "Date" : "Tue, 24 May 2022 13:05:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageOffersFromLocation3Min;199,Microsoft.Compute/ListVMImageOffersFromLocation30Min;999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130502Z:4fe93bd4-5b91-412e-bd42-13504c7f46ae", - "Expires" : "-1", - "x-ms-request-id" : "e0459604-0db1-4bd9-bac4-3b8c253c79d7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cap-deploy-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/cap-deploy-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"console-for-sap-applications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/console-for-sap-applications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manager-proxy-4-1-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manager-proxy-4-2-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manager-proxy-4-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manager-server-4-1-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manager-server-4-2-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manager-server-4-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openSUSE-Leap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opensuse-leap-15-3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sle-micro-5-1-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sle-micro-5-2-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-12-sp5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-12-sp5-basic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-12-sp5-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-12-sp5-hpc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-12-sp5-hpc-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp1-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp1-chost-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp1-hpc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp1-hpc-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp1-sapcal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2-basic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-basic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2-chost-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2-hpc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2-hpc-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp2-monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3-basic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3-chost-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3-hpc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3-hpc-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-15-sp3-sapcal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAP\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-12-sp5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-12-sp5-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-15-sp1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-15-sp1-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-15-sp2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-15-sp2-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-15-sp3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sles-sap-15-sp3-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAP-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAPCAL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-Standard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Standard\"\r\n }\r\n]", - "x-ms-client-request-id" : "3c0a3608-3fa0-4c65-8488-c4a335a559ea", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/cap-deploy-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b3bc811-b29a-4bfc-a94a-a0b2aa701e09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "382", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "11f59a2d-aabc-4cf8-b673-0b46c93ff64f", - "Date" : "Tue, 24 May 2022 13:05:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9999,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130502Z:11f59a2d-aabc-4cf8-b673-0b46c93ff64f", - "Expires" : "-1", - "x-ms-request-id" : "1fcac1ca-6f43-4776-bc20-1018b8c8835e", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/cap-deploy-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "1b3bc811-b29a-4bfc-a94a-a0b2aa701e09", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/cap-deploy-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39cefa69-f6d7-4161-82c8-d1fa3f80530e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "563", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d161ba32-b9d1-4438-b4b8-f1fdccbdb928", - "Date" : "Tue, 24 May 2022 13:05:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130502Z:d161ba32-b9d1-4438-b4b8-f1fdccbdb928", - "Expires" : "-1", - "x-ms-request-id" : "8e110be8-f088-4744-80a7-6fd08564d22a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.06.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/cap-deploy-byos/Skus/gen2/Versions/2020.06.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.12.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/cap-deploy-byos/Skus/gen2/Versions/2020.12.04\"\r\n }\r\n]", - "x-ms-client-request-id" : "39cefa69-f6d7-4161-82c8-d1fa3f80530e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/cap-deploy-byos/skus/gen2/versions/2020.12.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8ff7f37-6bd7-4884-89d5-47d015408e29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de39aad2-8b9e-48c8-87cc-e2a8df5db275", - "Date" : "Tue, 24 May 2022 13:05:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130503Z:de39aad2-8b9e-48c8-87cc-e2a8df5db275", - "Expires" : "-1", - "x-ms-request-id" : "f3dadca0-e4bb-4755-911d-1c5227c72603", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.12.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/cap-deploy-byos/Skus/gen2/Versions/2020.12.04\"\r\n}", - "x-ms-client-request-id" : "d8ff7f37-6bd7-4884-89d5-47d015408e29", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/cap-deploy-byos/skus/gen2/versions/2020.06.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "471856d4-a511-4eb5-b314-c02ac280698f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3fa8b469-d6b1-406d-b9be-dc2fdc3aad3b", - "Date" : "Tue, 24 May 2022 13:05:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130503Z:3fa8b469-d6b1-406d-b9be-dc2fdc3aad3b", - "Expires" : "-1", - "x-ms-request-id" : "74c41574-89b3-41a2-8134-b0f8ffab3c63", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.06.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/cap-deploy-byos/Skus/gen2/Versions/2020.06.26\"\r\n}", - "x-ms-client-request-id" : "471856d4-a511-4eb5-b314-c02ac280698f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/console-for-sap-applications/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11aac988-da97-42b4-8ce5-e89a7b3d8f66", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "819", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7963d771-9745-412b-b22f-daa469c3c961", - "Date" : "Tue, 24 May 2022 13:05:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9998,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130503Z:7963d771-9745-412b-b22f-daa469c3c961", - "Expires" : "-1", - "x-ms-request-id" : "413bd8bf-51a0-4f46-b40c-afdf79759795", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"preview-gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/console-for-sap-applications/Skus/preview-gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"preview-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/console-for-sap-applications/Skus/preview-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "11aac988-da97-42b4-8ce5-e89a7b3d8f66", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/console-for-sap-applications/skus/preview-gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c09301b-45be-46f8-b71d-6635a9cdff1e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e021da80-5cad-427c-be6f-f59b97946639", - "Date" : "Tue, 24 May 2022 13:05:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130503Z:e021da80-5cad-427c-be6f-f59b97946639", - "Expires" : "-1", - "x-ms-request-id" : "c5cd76da-c68c-4626-9d1d-1ed794f0bf6d", - "Body" : "[]", - "x-ms-client-request-id" : "9c09301b-45be-46f8-b71d-6635a9cdff1e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/console-for-sap-applications/skus/preview-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8909b95-e63a-46bb-b6fe-ba7f0e8fbee7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10b081d8-6cbc-4af3-9e1f-dc414ef83f90", - "Date" : "Tue, 24 May 2022 13:05:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130503Z:10b081d8-6cbc-4af3-9e1f-dc414ef83f90", - "Expires" : "-1", - "x-ms-request-id" : "27604650-7add-4996-a913-e85a85510bc4", - "Body" : "[]", - "x-ms-client-request-id" : "e8909b95-e63a-46bb-b6fe-ba7f0e8fbee7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "313926ba-8375-414c-8501-8083b9b99741", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "775", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e0bbc63-30ce-458c-bd7a-0c254803021e", - "Date" : "Tue, 24 May 2022 13:05:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9997,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:0e0bbc63-30ce-458c-bd7a-0c254803021e", - "Expires" : "-1", - "x-ms-request-id" : "34e0c962-f19d-410b-a2e8-491fe76bea30", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "313926ba-8375-414c-8501-8083b9b99741", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d9ae23a-11ae-48da-bd9f-9068b9704c85", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1438", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11704", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e71f7b3-262e-43aa-89aa-f15561abdb9b", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:7e71f7b3-262e-43aa-89aa-f15561abdb9b", - "Expires" : "-1", - "x-ms-request-id" : "d5a428f1-3ddc-4da5-aee1-ffc0438a5208", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2022.04.08\"\r\n }\r\n]", - "x-ms-client-request-id" : "8d9ae23a-11ae-48da-bd9f-9068b9704c85", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9aec502-0688-4d36-91f7-0e69c20ebeaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11702", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a168930-1d0d-4f23-a104-4338621e5445", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:7a168930-1d0d-4f23-a104-4338621e5445", - "Expires" : "-1", - "x-ms-request-id" : "da8eb9b2-e9be-4503-9a4d-6e1745101b98", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "f9aec502-0688-4d36-91f7-0e69c20ebeaa", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen1/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88349c97-524d-4ab6-9695-cf2904fb6cc6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11730", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6f3414d9-c222-46c8-86df-24cb0a019202", - "Date" : "Tue, 24 May 2022 13:05:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:6f3414d9-c222-46c8-86df-24cb0a019202", - "Expires" : "-1", - "x-ms-request-id" : "32160473-6ef6-4a5d-838a-b30d96267d14", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "88349c97-524d-4ab6-9695-cf2904fb6cc6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen1/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3f3e173-1492-46c6-a0ae-fa862210f997", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6a366f6-452b-40d5-af2d-8add891e4646", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:c6a366f6-452b-40d5-af2d-8add891e4646", - "Expires" : "-1", - "x-ms-request-id" : "118544d8-6168-4166-b4fc-cef295c43838", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "c3f3e173-1492-46c6-a0ae-fa862210f997", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen1/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acb22307-fd38-41dc-8a40-5a602dd3a977", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c39b9929-4c97-4fc6-9c80-4fe44bfd13f7", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:c39b9929-4c97-4fc6-9c80-4fe44bfd13f7", - "Expires" : "-1", - "x-ms-request-id" : "b1fd5457-9133-4c4b-b0f3-dfa6d89b79f2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "acb22307-fd38-41dc-8a40-5a602dd3a977", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92710f39-bf60-40d6-9c33-e28462ac15e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "878", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11702", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a12e86c7-07c9-4f19-a6c5-b54e4924b50e", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130504Z:a12e86c7-07c9-4f19-a6c5-b54e4924b50e", - "Expires" : "-1", - "x-ms-request-id" : "e239898d-deb4-4e03-b22a-ab080d6b491a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "92710f39-bf60-40d6-9c33-e28462ac15e6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aba8ec5c-1840-4847-9d47-2992f894e4d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1438", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92fbf65d-0eea-40bd-ae26-fc7cf3a1e895", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:92fbf65d-0eea-40bd-ae26-fc7cf3a1e895", - "Expires" : "-1", - "x-ms-request-id" : "b06c6951-c560-4257-88d4-6cc1050f0f96", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2022.04.08\"\r\n }\r\n]", - "x-ms-client-request-id" : "aba8ec5c-1840-4847-9d47-2992f894e4d5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7cc23d2-f3b5-433a-bfd8-6e60a0aabd3d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11729", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76199ef6-76a3-461b-b71e-ea44e25e3af2", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:76199ef6-76a3-461b-b71e-ea44e25e3af2", - "Expires" : "-1", - "x-ms-request-id" : "0f5cdc46-4c09-4ceb-8856-1e5c64bd9f4d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "f7cc23d2-f3b5-433a-bfd8-6e60a0aabd3d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen2/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0a8c646-88f9-47d3-a3cd-3c4bc7adbd89", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0046900f-0f4e-4281-ab46-ab3b3f40903d", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:0046900f-0f4e-4281-ab46-ab3b3f40903d", - "Expires" : "-1", - "x-ms-request-id" : "2b1740fe-48d7-47d1-9597-0cce444b92f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "f0a8c646-88f9-47d3-a3cd-3c4bc7adbd89", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen2/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0d85a48-1cae-45f2-9b0a-36e159ade294", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f186456-08f7-4d7b-acbe-a3726cebaf82", - "Date" : "Tue, 24 May 2022 13:05:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:7f186456-08f7-4d7b-acbe-a3726cebaf82", - "Expires" : "-1", - "x-ms-request-id" : "446da193-03da-4c33-a653-f9e1b3676237", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "e0d85a48-1cae-45f2-9b0a-36e159ade294", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e952b30c-ee13-496b-9f1b-126a6d81a1e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dc7f85e3-1a0f-4ec4-8315-ed375262f8a3", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:dc7f85e3-1a0f-4ec4-8315-ed375262f8a3", - "Expires" : "-1", - "x-ms-request-id" : "5c9353d2-ae2f-4980-b0c4-e2274961bc99", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "e952b30c-ee13-496b-9f1b-126a6d81a1e9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-1-byos/skus/gen2/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26e18782-4fd1-478b-9197-68919537565b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c09b1eeb-fb95-4a8b-ac36-faf50ea1c51e", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:c09b1eeb-fb95-4a8b-ac36-faf50ea1c51e", - "Expires" : "-1", - "x-ms-request-id" : "559c5a47-0c5d-4d60-9a9a-69e658655209", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-1-byos/Skus/gen2/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "26e18782-4fd1-478b-9197-68919537565b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d749595-3493-4c43-9d11-84d5de753c44", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "775", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64cdc9ff-0ba2-4177-8687-b3c9b8b9eeca", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9996,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130505Z:64cdc9ff-0ba2-4177-8687-b3c9b8b9eeca", - "Expires" : "-1", - "x-ms-request-id" : "fc3e4f7f-43d6-49bb-8197-dfe0d630b2e5", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "5d749595-3493-4c43-9d11-84d5de753c44", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cbc7a24-a1d6-4a06-8615-701c560c49e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1725", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b0f0f5fc-0fd4-4f6e-8e8d-d49fe219545a", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:b0f0f5fc-0fd4-4f6e-8e8d-d49fe219545a", - "Expires" : "-1", - "x-ms-request-id" : "4179c537-917b-4547-802d-d60b3c351fde", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.05.12\"\r\n }\r\n]", - "x-ms-client-request-id" : "5cbc7a24-a1d6-4a06-8615-701c560c49e9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5191a89-cb2c-46ae-bb0f-5c83bf82ccf4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f959fe2e-c23f-42c1-aeea-69b19aa803b2", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:f959fe2e-c23f-42c1-aeea-69b19aa803b2", - "Expires" : "-1", - "x-ms-request-id" : "a346549f-3e85-48eb-a1b9-788c1740af02", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "a5191a89-cb2c-46ae-bb0f-5c83bf82ccf4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42e30dff-af19-4c8e-836b-764663bac326", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef4d75d3-1fdc-4628-9591-c805c34fe130", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:ef4d75d3-1fdc-4628-9591-c805c34fe130", - "Expires" : "-1", - "x-ms-request-id" : "9f46a399-de77-4a19-90e5-fbfefc33e86f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "42e30dff-af19-4c8e-836b-764663bac326", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b708fc4b-123e-4721-b531-0a2202281e32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa26218f-9423-4390-bdda-07c446e3b0bd", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12983,Microsoft.Compute/GetVMImageFromLocation30Min;73983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:aa26218f-9423-4390-bdda-07c446e3b0bd", - "Expires" : "-1", - "x-ms-request-id" : "d25dea58-1485-4e7f-bcbc-1298ff07d9f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "b708fc4b-123e-4721-b531-0a2202281e32", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3385d81-d6a5-456b-a400-b54afae57259", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b434dcb2-9c73-4000-953d-e3485c948154", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12982,Microsoft.Compute/GetVMImageFromLocation30Min;73982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:b434dcb2-9c73-4000-953d-e3485c948154", - "Expires" : "-1", - "x-ms-request-id" : "50639238-fac6-4e54-aa95-1c8e6f2f4f48", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "d3385d81-d6a5-456b-a400-b54afae57259", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11500e18-d945-4b24-bfc4-72caee5c006e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d722611e-8fdb-48c3-956a-e292fbe91a61", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:d722611e-8fdb-48c3-956a-e292fbe91a61", - "Expires" : "-1", - "x-ms-request-id" : "1e95b1af-16fc-4c72-b7a8-5b89b1ee7d87", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "11500e18-d945-4b24-bfc4-72caee5c006e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen1/versions/2022.05.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0649a7eb-58e1-420c-ac83-94c6d8fab6a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33583318-7755-49f8-ba3b-486c4200d1cd", - "Date" : "Tue, 24 May 2022 13:05:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12984,Microsoft.Compute/GetVMImageFromLocation30Min;73984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:33583318-7755-49f8-ba3b-486c4200d1cd", - "Expires" : "-1", - "x-ms-request-id" : "5c7606d1-5835-42f6-bee7-ca3757762022", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen1/Versions/2022.05.12\"\r\n}", - "x-ms-client-request-id" : "0649a7eb-58e1-420c-ac83-94c6d8fab6a6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "976c4e6c-3606-4e14-9ac6-dc4eb7b577c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1725", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e289637e-9ad2-4ebb-a72b-42a89e4f0245", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:e289637e-9ad2-4ebb-a72b-42a89e4f0245", - "Expires" : "-1", - "x-ms-request-id" : "fc59ae12-57cd-4b0e-8557-1640c6e45ac0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.05.12\"\r\n }\r\n]", - "x-ms-client-request-id" : "976c4e6c-3606-4e14-9ac6-dc4eb7b577c6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74eeaa6c-7c18-4f95-ba81-2c0f729c2cc3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d96bc098-4133-411d-9679-0e3f55af56d4", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12981,Microsoft.Compute/GetVMImageFromLocation30Min;73981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:d96bc098-4133-411d-9679-0e3f55af56d4", - "Expires" : "-1", - "x-ms-request-id" : "7e35ccd0-3b5d-45ac-93df-388a9b9d10b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "74eeaa6c-7c18-4f95-ba81-2c0f729c2cc3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af82e825-3b1c-43df-8aac-506f67f3317b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a02563d-1e8b-42c1-a079-77106547b9c9", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12980,Microsoft.Compute/GetVMImageFromLocation30Min;73980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:8a02563d-1e8b-42c1-a079-77106547b9c9", - "Expires" : "-1", - "x-ms-request-id" : "0d37e0c3-6db2-48b6-bdb7-4bb72f102d0e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "af82e825-3b1c-43df-8aac-506f67f3317b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a026232-a3b3-4ffb-8b0b-46bb7973db15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c038488-9b5b-4416-8b92-90a40fd745df", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12978,Microsoft.Compute/GetVMImageFromLocation30Min;73978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:9c038488-9b5b-4416-8b92-90a40fd745df", - "Expires" : "-1", - "x-ms-request-id" : "9d2c3cc0-22a8-4a99-aaed-622ac3136816", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "5a026232-a3b3-4ffb-8b0b-46bb7973db15", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9fc3ae9-5694-4ac9-a532-28ab88bb1aa5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "00926d3e-f56b-46c6-a552-0fb066255f7d", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12979,Microsoft.Compute/GetVMImageFromLocation30Min;73979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130506Z:00926d3e-f56b-46c6-a552-0fb066255f7d", - "Expires" : "-1", - "x-ms-request-id" : "9be053cb-dcea-4d6a-bf50-3eb8de695d58", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "f9fc3ae9-5694-4ac9-a532-28ab88bb1aa5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "91d90bbb-73ad-4eea-b621-c46f42e9e970", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bced7563-c402-4e6c-ab98-080f1f354d53", - "Date" : "Tue, 24 May 2022 13:05:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12977,Microsoft.Compute/GetVMImageFromLocation30Min;73977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130507Z:bced7563-c402-4e6c-ab98-080f1f354d53", - "Expires" : "-1", - "x-ms-request-id" : "b76aaf0c-fa59-4b20-9d8e-b6bd9b6fbd4c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "91d90bbb-73ad-4eea-b621-c46f42e9e970", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-2-byos/skus/gen2/versions/2022.05.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "55a95170-4141-4985-8f21-f70e61520fc8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7789faec-d51b-4545-9258-9a92279e28b5", - "Date" : "Tue, 24 May 2022 13:05:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12976,Microsoft.Compute/GetVMImageFromLocation30Min;73976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130507Z:7789faec-d51b-4545-9258-9a92279e28b5", - "Expires" : "-1", - "x-ms-request-id" : "dc4c81c3-60ec-4716-a2ec-a4b744068407", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-2-byos/Skus/gen2/Versions/2022.05.12\"\r\n}", - "x-ms-client-request-id" : "55a95170-4141-4985-8f21-f70e61520fc8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "042669a5-0dcf-47ea-8789-bcd627ce4440", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7eaed6a-fa64-408a-9092-0a12503ece85", - "Date" : "Tue, 24 May 2022 13:05:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9995,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130507Z:a7eaed6a-fa64-408a-9092-0a12503ece85", - "Expires" : "-1", - "x-ms-request-id" : "f8bb672a-01a3-4966-a071-4d69078c5f35", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "042669a5-0dcf-47ea-8789-bcd627ce4440", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce53e79f-e7de-495f-8940-689046f30527", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11728", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57692e39-401b-4230-b53f-c075dfae319b", - "Date" : "Tue, 24 May 2022 13:05:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130508Z:57692e39-401b-4230-b53f-c075dfae319b", - "Expires" : "-1", - "x-ms-request-id" : "d4c1fa4c-a8f6-4d23-a6b8-1739aa4440a4", - "Body" : "[]", - "x-ms-client-request-id" : "ce53e79f-e7de-495f-8940-689046f30527", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5740719-f102-42ea-addc-10ad0ac731d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15e05c9a-42f6-4ced-b62e-883b4b645100", - "Date" : "Tue, 24 May 2022 13:05:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130508Z:15e05c9a-42f6-4ced-b62e-883b4b645100", - "Expires" : "-1", - "x-ms-request-id" : "97b2d227-f9db-479a-8278-4c5288daabe7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-byos/Skus/gen2/Versions/2021.03.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "c5740719-f102-42ea-addc-10ad0ac731d5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-proxy-4-byos/skus/gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e3220d1-9b20-4ca5-baa4-bd80d2461fa3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7404d25d-3711-4a43-9c5e-fb7df4eb9bb6", - "Date" : "Tue, 24 May 2022 13:05:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12975,Microsoft.Compute/GetVMImageFromLocation30Min;73975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130508Z:7404d25d-3711-4a43-9c5e-fb7df4eb9bb6", - "Expires" : "-1", - "x-ms-request-id" : "e4c787fc-8004-479f-9f0e-b876d197b393", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-proxy-4-byos/Skus/gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "0e3220d1-9b20-4ca5-baa4-bd80d2461fa3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92f2817c-0371-4716-9b9c-6d857a7ce35f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "649e7114-0786-4427-983d-ac6d8014ebd3", - "Date" : "Tue, 24 May 2022 13:05:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9994,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130508Z:649e7114-0786-4427-983d-ac6d8014ebd3", - "Expires" : "-1", - "x-ms-request-id" : "063f08f3-98c2-4463-aec6-4f18b6855417", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "92f2817c-0371-4716-9b9c-6d857a7ce35f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce08ef3f-1c9d-4fce-b98a-830b808ceb2c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1443", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "01e2bfe1-43b1-49d2-a08b-b2cfc1c42f54", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:01e2bfe1-43b1-49d2-a08b-b2cfc1c42f54", - "Expires" : "-1", - "x-ms-request-id" : "bea9dcc9-45c1-4cb6-9457-2770cb02344f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2022.03.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2022.04.08\"\r\n }\r\n]", - "x-ms-client-request-id" : "ce08ef3f-1c9d-4fce-b98a-830b808ceb2c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen1/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bb242d1-ecff-440e-8b6a-be15a60d7e41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "879", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f47f3717-0983-4bc7-b431-5dd28e8b1737", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12974,Microsoft.Compute/GetVMImageFromLocation30Min;73974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:f47f3717-0983-4bc7-b431-5dd28e8b1737", - "Expires" : "-1", - "x-ms-request-id" : "ed9f2db8-bf16-4f1a-8831-489cdd8fa6a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "7bb242d1-ecff-440e-8b6a-be15a60d7e41", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen1/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "630b4a7d-6391-4ac9-a5b9-c3820cd7fd20", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "879", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3945b72a-d06a-4d8b-9692-4c0a7766d8c6", - "Date" : "Tue, 24 May 2022 13:05:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12973,Microsoft.Compute/GetVMImageFromLocation30Min;73973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:3945b72a-d06a-4d8b-9692-4c0a7766d8c6", - "Expires" : "-1", - "x-ms-request-id" : "6fc97558-9731-4fcc-9704-adf7a03220ba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "630b4a7d-6391-4ac9-a5b9-c3820cd7fd20", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen1/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e1a2830-f71f-4887-af57-4eaedef9a388", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "879", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9bb5b597-9aa1-4936-b625-fb1ed6b45429", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12970,Microsoft.Compute/GetVMImageFromLocation30Min;73970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:9bb5b597-9aa1-4936-b625-fb1ed6b45429", - "Expires" : "-1", - "x-ms-request-id" : "66f3ef1d-bcd8-4014-bd5a-1ce621de055f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "9e1a2830-f71f-4887-af57-4eaedef9a388", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen1/versions/2022.03.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84fc0aea-5d0b-4910-84ef-9d9851f553b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "879", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d8b5623-9305-45d6-8cfc-3f440312c438", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12971,Microsoft.Compute/GetVMImageFromLocation30Min;73971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:1d8b5623-9305-45d6-8cfc-3f440312c438", - "Expires" : "-1", - "x-ms-request-id" : "d4e4f0a8-7bce-4f86-9cdc-21678d5fea0c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2022.03.10\"\r\n}", - "x-ms-client-request-id" : "84fc0aea-5d0b-4910-84ef-9d9851f553b1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8f667b8-eed6-4e95-8696-5d98774dece9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "879", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bd0e127-aeab-4b90-96c6-58f66c6d67b8", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12972,Microsoft.Compute/GetVMImageFromLocation30Min;73972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:5bd0e127-aeab-4b90-96c6-58f66c6d67b8", - "Expires" : "-1", - "x-ms-request-id" : "c3e24ea1-915e-4b08-a315-d932a7160a92", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "c8f667b8-eed6-4e95-8696-5d98774dece9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d2851fd-64f4-478c-90bc-3e9c2c7d5af4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1443", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4f7860f-9f58-4e09-bd97-1e768d2e235a", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130509Z:d4f7860f-9f58-4e09-bd97-1e768d2e235a", - "Expires" : "-1", - "x-ms-request-id" : "a3526eac-e3b1-4c3d-a8d4-2e94eea51f93", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2022.03.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2022.04.08\"\r\n }\r\n]", - "x-ms-client-request-id" : "5d2851fd-64f4-478c-90bc-3e9c2c7d5af4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86d1bd9e-14a9-4bfb-b460-bf2bff414800", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "70ccbe44-a366-4636-ad61-7549ddb1ab08", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12968,Microsoft.Compute/GetVMImageFromLocation30Min;73968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:70ccbe44-a366-4636-ad61-7549ddb1ab08", - "Expires" : "-1", - "x-ms-request-id" : "b7237c76-27c2-4beb-9958-361dfaaafc55", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "86d1bd9e-14a9-4bfb-b460-bf2bff414800", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen2/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c0cfce5-973d-4b17-b463-26531998d32f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cec483e0-2bab-4997-877e-d1984c26b4f5", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12967,Microsoft.Compute/GetVMImageFromLocation30Min;73967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:cec483e0-2bab-4997-877e-d1984c26b4f5", - "Expires" : "-1", - "x-ms-request-id" : "b03cfdea-f3b2-4437-90a8-ccba4267c2ca", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "4c0cfce5-973d-4b17-b463-26531998d32f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen2/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d1ec834-0a7c-4b75-98b2-84608ef3d3f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3e53831b-8d5c-4b78-9d36-47d608119496", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12969,Microsoft.Compute/GetVMImageFromLocation30Min;73969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:3e53831b-8d5c-4b78-9d36-47d608119496", - "Expires" : "-1", - "x-ms-request-id" : "1ad6c29f-56e0-4a18-97e6-e206eb4930b0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "5d1ec834-0a7c-4b75-98b2-84608ef3d3f4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen2/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f2bb02c-3e44-4160-aab1-6c33da127d12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11701", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ab06edc-dbbc-4a1e-8f86-d43672aa1025", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12965,Microsoft.Compute/GetVMImageFromLocation30Min;73965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:6ab06edc-dbbc-4a1e-8f86-d43672aa1025", - "Expires" : "-1", - "x-ms-request-id" : "5024bc27-a8d3-438b-9a42-ae605f24e1f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "5f2bb02c-3e44-4160-aab1-6c33da127d12", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-1-byos/skus/gen2/versions/2022.03.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f89a8aed-332e-4201-ad49-08f25b320bf3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b46d6412-cc3f-4a02-a1c1-a6c9b70d4b7a", - "Date" : "Tue, 24 May 2022 13:05:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12966,Microsoft.Compute/GetVMImageFromLocation30Min;73966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:b46d6412-cc3f-4a02-a1c1-a6c9b70d4b7a", - "Expires" : "-1", - "x-ms-request-id" : "882c8deb-c40b-4da4-83b7-0a032dd1ec79", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-1-byos/Skus/gen2/Versions/2022.03.10\"\r\n}", - "x-ms-client-request-id" : "f89a8aed-332e-4201-ad49-08f25b320bf3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73e3d012-1842-460f-ae8c-705ec65710c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "777", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11700", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d9ef79a-a0f6-4526-b266-b278e6819cf2", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9993,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:4d9ef79a-a0f6-4526-b266-b278e6819cf2", - "Expires" : "-1", - "x-ms-request-id" : "5ccd5a8d-acd6-472b-bf87-43cf58a08e74", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "73e3d012-1842-460f-ae8c-705ec65710c1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f82589eb-5c7f-4f03-99ae-05cc2c254bee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1731", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67229bb0-4656-4936-ac17-f33abc027ab5", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:67229bb0-4656-4936-ac17-f33abc027ab5", - "Expires" : "-1", - "x-ms-request-id" : "9994d668-95c7-4ca0-98ff-fc6061492f8f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.03.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.05.12\"\r\n }\r\n]", - "x-ms-client-request-id" : "f82589eb-5c7f-4f03-99ae-05cc2c254bee", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions/2022.03.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b213076b-6fb7-4466-8111-1f07b0039dfc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1049", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "534693a6-d1ef-49b2-b582-63bfe741a439", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12964,Microsoft.Compute/GetVMImageFromLocation30Min;73964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:534693a6-d1ef-49b2-b582-63bfe741a439", - "Expires" : "-1", - "x-ms-request-id" : "4b38162b-1cab-4463-af4d-f87fe97fd723", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.03.10\"\r\n}", - "x-ms-client-request-id" : "b213076b-6fb7-4466-8111-1f07b0039dfc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c540ca55-0c36-4e50-8c6a-f09f03911662", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1049", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf54fb95-d08c-47b1-b668-a3b729f4bc6d", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12963,Microsoft.Compute/GetVMImageFromLocation30Min;73963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130510Z:bf54fb95-d08c-47b1-b668-a3b729f4bc6d", - "Expires" : "-1", - "x-ms-request-id" : "e6ee91ec-f12e-4ebd-9e3f-91b31d214786", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "c540ca55-0c36-4e50-8c6a-f09f03911662", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce58cede-4692-41e6-8db5-f3fcc2eed683", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1049", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1eeaab20-cb9e-4bb8-b988-2f7613dda750", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12962,Microsoft.Compute/GetVMImageFromLocation30Min;73962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130511Z:1eeaab20-cb9e-4bb8-b988-2f7613dda750", - "Expires" : "-1", - "x-ms-request-id" : "b35f6828-2fd8-4e51-8e01-d0e8951adcfe", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "ce58cede-4692-41e6-8db5-f3fcc2eed683", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9e604d0-8a23-4c48-b538-ce0f2820505a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1049", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1abe9280-fb15-4a51-907e-768aae3eeb22", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12961,Microsoft.Compute/GetVMImageFromLocation30Min;73961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130511Z:1abe9280-fb15-4a51-907e-768aae3eeb22", - "Expires" : "-1", - "x-ms-request-id" : "8e3acf6a-fa97-4be9-bcc7-c36c88b41508", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "e9e604d0-8a23-4c48-b538-ce0f2820505a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions/2022.05.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24a4025d-eff4-45ce-bdda-98a9ac306665", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1049", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "58c30b28-f5ce-4aa7-a427-349cb1c01441", - "Date" : "Tue, 24 May 2022 13:05:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12960,Microsoft.Compute/GetVMImageFromLocation30Min;73960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130511Z:58c30b28-f5ce-4aa7-a427-349cb1c01441", - "Expires" : "-1", - "x-ms-request-id" : "9fa29821-19f1-4676-9d31-9210b329882f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.05.12\"\r\n}", - "x-ms-client-request-id" : "24a4025d-eff4-45ce-bdda-98a9ac306665", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32e4aa41-873a-4406-9da4-be4b882e28c8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1049", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11828", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a87a8d0-5c61-4067-aa41-c62049a26680", - "Date" : "Tue, 24 May 2022 13:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12959,Microsoft.Compute/GetVMImageFromLocation30Min;73959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130511Z:2a87a8d0-5c61-4067-aa41-c62049a26680", - "Expires" : "-1", - "x-ms-request-id" : "26ea486d-41e8-487e-9a29-dcf0d7e12b35", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "32e4aa41-873a-4406-9da4-be4b882e28c8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "156a13ab-5b3d-4e3d-9323-230415d41f52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1731", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b18ce58-666e-4369-9c6e-d49e6cf4c7c6", - "Date" : "Tue, 24 May 2022 13:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15987,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:3b18ce58-666e-4369-9c6e-d49e6cf4c7c6", - "Expires" : "-1", - "x-ms-request-id" : "46171596-cf45-44ea-bffe-81e38324237f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.03.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.05.12\"\r\n }\r\n]", - "x-ms-client-request-id" : "156a13ab-5b3d-4e3d-9323-230415d41f52", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db2dce30-b1fe-4c10-a0bf-302e4cfa6054", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6fedb72-581f-44f2-87ac-57ca363ef359", - "Date" : "Tue, 24 May 2022 13:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12958,Microsoft.Compute/GetVMImageFromLocation30Min;73958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:b6fedb72-581f-44f2-87ac-57ca363ef359", - "Expires" : "-1", - "x-ms-request-id" : "53ab74f0-59c3-41ed-b0af-1baa8af39d5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "db2dce30-b1fe-4c10-a0bf-302e4cfa6054", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions/2022.05.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a2cd570-0713-4dff-bd7e-c2f06088f0de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d91fa8b5-e8b6-42af-9871-eb20f79fe695", - "Date" : "Tue, 24 May 2022 13:05:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12956,Microsoft.Compute/GetVMImageFromLocation30Min;73956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:d91fa8b5-e8b6-42af-9871-eb20f79fe695", - "Expires" : "-1", - "x-ms-request-id" : "34bfd7b9-8ed4-4585-bad1-8e1d31a43666", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.05.12\"\r\n}", - "x-ms-client-request-id" : "1a2cd570-0713-4dff-bd7e-c2f06088f0de", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e8d899e-95b9-4f4e-aafd-f381f1a3823b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "196df51b-1367-4802-a85f-dda586586f35", - "Date" : "Tue, 24 May 2022 13:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12957,Microsoft.Compute/GetVMImageFromLocation30Min;73957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:196df51b-1367-4802-a85f-dda586586f35", - "Expires" : "-1", - "x-ms-request-id" : "b3cf63d5-fd98-4ee8-abc3-192f38251334", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "2e8d899e-95b9-4f4e-aafd-f381f1a3823b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe6b46b8-36ff-4ffd-971e-3a737fb784fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "859f359a-54ae-4e1f-b46c-178a6fe0200a", - "Date" : "Tue, 24 May 2022 13:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12955,Microsoft.Compute/GetVMImageFromLocation30Min;73955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:859f359a-54ae-4e1f-b46c-178a6fe0200a", - "Expires" : "-1", - "x-ms-request-id" : "b7333f23-e895-449a-9c6f-c5d48ea8f020", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "fe6b46b8-36ff-4ffd-971e-3a737fb784fa", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions/2022.03.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b0a2886-edb2-4656-a68c-f07e3d49ba7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11727", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2814922a-9a52-4bc9-a43d-bc5e473c909c", - "Date" : "Tue, 24 May 2022 13:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12954,Microsoft.Compute/GetVMImageFromLocation30Min;73954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:2814922a-9a52-4bc9-a43d-bc5e473c909c", - "Expires" : "-1", - "x-ms-request-id" : "2c9a6c61-e842-4e7d-b3af-c0f563a85474", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2022.03.10\"\r\n}", - "x-ms-client-request-id" : "7b0a2886-edb2-4656-a68c-f07e3d49ba7d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-2-byos/skus/gen2/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac7aade0-8540-4d57-adff-d1a1309df8b9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "15973f40-9253-4c56-ab33-9251ea24cda0", - "Date" : "Tue, 24 May 2022 13:05:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12953,Microsoft.Compute/GetVMImageFromLocation30Min;73953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130512Z:15973f40-9253-4c56-ab33-9251ea24cda0", - "Expires" : "-1", - "x-ms-request-id" : "51ae98c5-b373-4ff7-a2f7-308dd6c5883e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-2-byos/Skus/gen2/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "ac7aade0-8540-4d57-adff-d1a1309df8b9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b687cb3-00c1-4fb8-a81d-a8122d950baf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "773", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c13c7031-1f9d-4247-bb04-a6c3afc26285", - "Date" : "Tue, 24 May 2022 13:05:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9992,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130513Z:c13c7031-1f9d-4247-bb04-a6c3afc26285", - "Expires" : "-1", - "x-ms-request-id" : "86e99f72-725f-4db0-aa21-e9779dbe81de", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "9b687cb3-00c1-4fb8-a81d-a8122d950baf", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d4f21e0-7845-4c2e-9918-4e307fec9e1a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d76dd27-bd6e-46e3-b873-1d0c386046b4", - "Date" : "Tue, 24 May 2022 13:05:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15986,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130513Z:1d76dd27-bd6e-46e3-b873-1d0c386046b4", - "Expires" : "-1", - "x-ms-request-id" : "353cee0c-16e3-4be5-8f85-afb79a125f72", - "Body" : "[]", - "x-ms-client-request-id" : "5d4f21e0-7845-4c2e-9918-4e307fec9e1a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b64a5707-6419-4e04-bbf1-178c530b851e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "289", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11809", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0df1f553-e541-4bfa-8368-50ea23c7cd6e", - "Date" : "Tue, 24 May 2022 13:05:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130513Z:0df1f553-e541-4bfa-8368-50ea23c7cd6e", - "Expires" : "-1", - "x-ms-request-id" : "c516b423-a7ce-4fe6-bc61-676b7aab0dfa", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-byos/Skus/gen2/Versions/2021.03.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "b64a5707-6419-4e04-bbf1-178c530b851e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/manager-server-4-byos/skus/gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31eff0b4-e90d-41e2-9cbf-bbe8af1a0a9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "750", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca6fcda7-66cb-4a0d-bc87-f780cef123c2", - "Date" : "Tue, 24 May 2022 13:05:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12952,Microsoft.Compute/GetVMImageFromLocation30Min;73952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130514Z:ca6fcda7-66cb-4a0d-bc87-f780cef123c2", - "Expires" : "-1", - "x-ms-request-id" : "b988e76a-1b03-4703-ac95-f20281767ca4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/manager-server-4-byos/Skus/gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "31eff0b4-e90d-41e2-9cbf-bbe8af1a0a9c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "63e79ba1-bb52-4ca4-820d-fe45fd3687ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40cd7623-4ff4-4040-bac3-ab4e0d814f2e", - "Date" : "Tue, 24 May 2022 13:05:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9991,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130514Z:40cd7623-4ff4-4040-bac3-ab4e0d814f2e", - "Expires" : "-1", - "x-ms-request-id" : "a7eae17f-b49e-4907-9f06-68f3d00b86d5", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15-2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/15-2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15-2-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/15-2-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "63e79ba1-bb52-4ca4-820d-fe45fd3687ca", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/15-2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "065639f7-b13b-4148-96a8-9d86a58b0c56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18445a61-fcee-4daa-8926-480b43640c68", - "Date" : "Tue, 24 May 2022 13:05:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130514Z:18445a61-fcee-4daa-8926-480b43640c68", - "Expires" : "-1", - "x-ms-request-id" : "11bbc0b5-1bdb-432c-b72c-3e6b5336cadd", - "Body" : "[]", - "x-ms-client-request-id" : "065639f7-b13b-4148-96a8-9d86a58b0c56", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/15-2-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b0810c0-7042-48ce-b363-17b346e3d2e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "286", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "44425ade-9608-4f45-b866-3f4c92f9c362", - "Date" : "Tue, 24 May 2022 13:05:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15983,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130514Z:44425ade-9608-4f45-b866-3f4c92f9c362", - "Expires" : "-1", - "x-ms-request-id" : "cc36dd1c-c962-467d-8ced-2273936f834f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.07.02\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/15-2-gen2/Versions/2020.07.02\"\r\n }\r\n]", - "x-ms-client-request-id" : "4b0810c0-7042-48ce-b363-17b346e3d2e7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/15-2-gen2/versions/2020.07.02?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ead8690-2104-4ee3-ad58-7e4a11d85a9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee2c7e8f-2ea0-4395-914c-b65709502968", - "Date" : "Tue, 24 May 2022 13:05:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12951,Microsoft.Compute/GetVMImageFromLocation30Min;73951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130515Z:ee2c7e8f-2ea0-4395-914c-b65709502968", - "Expires" : "-1", - "x-ms-request-id" : "3debf57d-8293-4f33-916c-cd3f6434b213", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.07.02\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/15-2-gen2/Versions/2020.07.02\"\r\n}", - "x-ms-client-request-id" : "0ead8690-2104-4ee3-ad58-7e4a11d85a9d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea9cb0e5-0428-4c12-8607-f8e0bd408159", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11699", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dfc5f10b-c657-43b8-8e45-8ef6650bbaf2", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9990,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130515Z:dfc5f10b-c657-43b8-8e45-8ef6650bbaf2", - "Expires" : "-1", - "x-ms-request-id" : "39e96385-22a2-4e1f-8fd9-ecfaee4c8195", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "ea9cb0e5-0428-4c12-8607-f8e0bd408159", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ce07e2e-0469-4524-81a0-d73ba7c81207", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1135", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "995d1651-5110-45ce-a08c-8e077699cd88", - "Date" : "Tue, 24 May 2022 13:05:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130515Z:995d1651-5110-45ce-a08c-8e077699cd88", - "Expires" : "-1", - "x-ms-request-id" : "cb1fd5ed-0ac7-4f06-9c3d-5606d695581a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2021.10.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2022.01.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.29\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2022.04.29\"\r\n }\r\n]", - "x-ms-client-request-id" : "7ce07e2e-0469-4524-81a0-d73ba7c81207", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ddfae38-68f0-4e7a-9c1b-4e986aa39998", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c017a07c-c05a-4059-94cb-1c05dc8ee6ac", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12950,Microsoft.Compute/GetVMImageFromLocation30Min;73950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:c017a07c-c05a-4059-94cb-1c05dc8ee6ac", - "Expires" : "-1", - "x-ms-request-id" : "1fad2136-6437-4e3a-b3bd-784ecda1c861", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "0ddfae38-68f0-4e7a-9c1b-4e986aa39998", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen1/versions/2021.10.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e06c09b5-d323-4ab5-854d-3b2294bd1845", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c58f7ce2-d96b-4fde-82d3-13d3bdac073d", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12949,Microsoft.Compute/GetVMImageFromLocation30Min;73949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:c58f7ce2-d96b-4fde-82d3-13d3bdac073d", - "Expires" : "-1", - "x-ms-request-id" : "b8f74bbe-9ee9-41ef-88b9-48d7c18dbaef", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2021.10.12\"\r\n}", - "x-ms-client-request-id" : "e06c09b5-d323-4ab5-854d-3b2294bd1845", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen1/versions/2022.04.29?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c21a2e2-98df-4e19-be46-adab9add389e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7cd5d91c-12ac-4328-a98d-52bf25d018d8", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12947,Microsoft.Compute/GetVMImageFromLocation30Min;73947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:7cd5d91c-12ac-4328-a98d-52bf25d018d8", - "Expires" : "-1", - "x-ms-request-id" : "9e0cfcc5-2e2f-4b71-8f7a-0c481c680d5c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.29\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2022.04.29\"\r\n}", - "x-ms-client-request-id" : "9c21a2e2-98df-4e19-be46-adab9add389e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen1/versions/2022.01.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1de9d16-a84a-4898-bdb1-cfa4955e41d5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "384b10aa-a0a5-412a-8893-30016bdb48b5", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12948,Microsoft.Compute/GetVMImageFromLocation30Min;73948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:384b10aa-a0a5-412a-8893-30016bdb48b5", - "Expires" : "-1", - "x-ms-request-id" : "0e7e563b-8cfd-4e6a-8297-56fbf42d8327", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen1/Versions/2022.01.13\"\r\n}", - "x-ms-client-request-id" : "e1de9d16-a84a-4898-bdb1-cfa4955e41d5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "05913418-aa13-4171-a7df-a68a17ce3ab1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1135", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6e65596-b6cb-468f-bb76-1aa7b69528ed", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:d6e65596-b6cb-468f-bb76-1aa7b69528ed", - "Expires" : "-1", - "x-ms-request-id" : "15e9c60c-6e9c-4656-b100-d49be7325c36", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2021.10.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2022.01.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.29\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2022.04.29\"\r\n }\r\n]", - "x-ms-client-request-id" : "05913418-aa13-4171-a7df-a68a17ce3ab1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen2/versions/2022.04.29?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d06a14e-f50d-45fb-8985-e1dc0f215de9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c81b3982-abea-47b4-871f-a60b89e01807", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12946,Microsoft.Compute/GetVMImageFromLocation30Min;73946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:c81b3982-abea-47b4-871f-a60b89e01807", - "Expires" : "-1", - "x-ms-request-id" : "647c4574-67ae-44c8-a1a7-a971ff046056", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.29\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2022.04.29\"\r\n}", - "x-ms-client-request-id" : "8d06a14e-f50d-45fb-8985-e1dc0f215de9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen2/versions/2021.10.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "072eacd7-dee9-4a65-8aac-0f0d7d1698e2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee0e05af-b1a9-4406-ac13-686463150f50", - "Date" : "Tue, 24 May 2022 13:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12945,Microsoft.Compute/GetVMImageFromLocation30Min;73945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:ee0e05af-b1a9-4406-ac13-686463150f50", - "Expires" : "-1", - "x-ms-request-id" : "6321d96c-8313-4595-80c5-37259e980d4e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2021.10.12\"\r\n}", - "x-ms-client-request-id" : "072eacd7-dee9-4a65-8aac-0f0d7d1698e2", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen2/versions/2022.01.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8d6e04b-7e73-4031-a634-7c41602d025f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c2f58d6-a4d0-4e39-9135-d8e42177dd7a", - "Date" : "Tue, 24 May 2022 13:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12944,Microsoft.Compute/GetVMImageFromLocation30Min;73944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:1c2f58d6-a4d0-4e39-9135-d8e42177dd7a", - "Expires" : "-1", - "x-ms-request-id" : "1e2aff9b-66c0-4945-90da-39fd95ba67d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2022.01.13\"\r\n}", - "x-ms-client-request-id" : "c8d6e04b-7e73-4031-a634-7c41602d025f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/opensuse-leap-15-3/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7989277-0f4c-4985-9f34-62b2ea4262a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11726", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c0fd610-6c66-4232-a148-2308b13de148", - "Date" : "Tue, 24 May 2022 13:05:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12943,Microsoft.Compute/GetVMImageFromLocation30Min;73943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130516Z:8c0fd610-6c66-4232-a148-2308b13de148", - "Expires" : "-1", - "x-ms-request-id" : "aa9b3852-9e73-47fb-a14e-36b8f768c84b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/opensuse-leap-15-3/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "e7989277-0f4c-4985-9f34-62b2ea4262a9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e21b9210-2b93-4ad1-b241-a32a3cb0b6e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0fd2785d-f349-46ae-b24e-13af89c284d1", - "Date" : "Tue, 24 May 2022 13:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9989,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130517Z:0fd2785d-f349-46ae-b24e-13af89c284d1", - "Expires" : "-1", - "x-ms-request-id" : "5a82d378-19d6-4615-85ea-c74142f645f0", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "e21b9210-2b93-4ad1-b241-a32a3cb0b6e0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc5712a6-7442-4065-98a8-9cec4d5c7c52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "852", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36fe855c-7586-4619-9e0f-a629e6e07859", - "Date" : "Tue, 24 May 2022 13:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130517Z:36fe855c-7586-4619-9e0f-a629e6e07859", - "Expires" : "-1", - "x-ms-request-id" : "2a7bd333-4c36-4e3f-af38-51923acaa3e3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1/Versions/2022.02.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1/Versions/2022.05.19\"\r\n }\r\n]", - "x-ms-client-request-id" : "fc5712a6-7442-4065-98a8-9cec4d5c7c52", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0ebe68e-26dc-430c-9281-767f6f0171b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3e15b7f-c643-4b88-bb53-848f1b3b4d20", - "Date" : "Tue, 24 May 2022 13:05:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12942,Microsoft.Compute/GetVMImageFromLocation30Min;73942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130517Z:a3e15b7f-c643-4b88-bb53-848f1b3b4d20", - "Expires" : "-1", - "x-ms-request-id" : "78c3d240-c9b2-4bcf-a990-9befbfe8cb32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "a0ebe68e-26dc-430c-9281-767f6f0171b6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen1/versions/2022.05.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd9c41f0-65b7-4a41-9bd4-e0125a8c0a56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "92593c98-f7d0-4a85-b3b4-cecf2c541933", - "Date" : "Tue, 24 May 2022 13:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12941,Microsoft.Compute/GetVMImageFromLocation30Min;73941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130517Z:92593c98-f7d0-4a85-b3b4-cecf2c541933", - "Expires" : "-1", - "x-ms-request-id" : "13ab3ae9-11e6-4572-9d8b-25d6db815b6a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1/Versions/2022.05.19\"\r\n}", - "x-ms-client-request-id" : "cd9c41f0-65b7-4a41-9bd4-e0125a8c0a56", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen1/versions/2022.02.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d313160b-9aff-479c-b623-1553b8ed2805", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11725", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35db1d20-7a7b-485c-abf7-2903f7315964", - "Date" : "Tue, 24 May 2022 13:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12940,Microsoft.Compute/GetVMImageFromLocation30Min;73940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130517Z:35db1d20-7a7b-485c-abf7-2903f7315964", - "Expires" : "-1", - "x-ms-request-id" : "64fc37aa-ec6a-413a-bf8f-f06d3dd1089d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen1/Versions/2022.02.15\"\r\n}", - "x-ms-client-request-id" : "d313160b-9aff-479c-b623-1553b8ed2805", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b11044d-bd36-4dd6-9b44-4a0f6a16e8c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "852", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11698", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24d3cd91-cced-4b17-833a-5c989b104934", - "Date" : "Tue, 24 May 2022 13:05:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130517Z:24d3cd91-cced-4b17-833a-5c989b104934", - "Expires" : "-1", - "x-ms-request-id" : "cc3aa07c-caad-47d8-9648-52d5edb8245e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2/Versions/2022.02.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2/Versions/2022.05.19\"\r\n }\r\n]", - "x-ms-client-request-id" : "5b11044d-bd36-4dd6-9b44-4a0f6a16e8c7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen2/versions/2022.05.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82c8f0d7-cd45-4dd9-a1a7-2b3142d11ac4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "88edfbf8-98e1-48bb-867d-0c890dc5f6e4", - "Date" : "Tue, 24 May 2022 13:05:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12938,Microsoft.Compute/GetVMImageFromLocation30Min;73938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130518Z:88edfbf8-98e1-48bb-867d-0c890dc5f6e4", - "Expires" : "-1", - "x-ms-request-id" : "43e064df-683d-4c99-85f6-c84d02aff71d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2/Versions/2022.05.19\"\r\n}", - "x-ms-client-request-id" : "82c8f0d7-cd45-4dd9-a1a7-2b3142d11ac4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen2/versions/2022.02.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac8e3f71-a187-4df3-93ab-0d0072ba2398", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d196fa2e-f61b-4609-899f-6f3d3813f12b", - "Date" : "Tue, 24 May 2022 13:05:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12939,Microsoft.Compute/GetVMImageFromLocation30Min;73939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130518Z:d196fa2e-f61b-4609-899f-6f3d3813f12b", - "Expires" : "-1", - "x-ms-request-id" : "b45ee96a-617c-49fc-8b9c-c0ba2bfdb906", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2/Versions/2022.02.15\"\r\n}", - "x-ms-client-request-id" : "ac8e3f71-a187-4df3-93ab-0d0072ba2398", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-1-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ace9410d-4f34-4adc-90ce-68817fd87c92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6d1e093-7275-435b-ab00-4d18026c5364", - "Date" : "Tue, 24 May 2022 13:05:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12937,Microsoft.Compute/GetVMImageFromLocation30Min;73937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130518Z:b6d1e093-7275-435b-ab00-4d18026c5364", - "Expires" : "-1", - "x-ms-request-id" : "c621e37b-960b-43e6-9a75-59a9dea2f094", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-1-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "ace9410d-4f34-4adc-90ce-68817fd87c92", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-2-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "126f898c-293c-4523-9ce4-b1ac3375abd3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17ab388a-c2a9-4639-956d-20cbc80d1c23", - "Date" : "Tue, 24 May 2022 13:05:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9988,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130518Z:17ab388a-c2a9-4639-956d-20cbc80d1c23", - "Expires" : "-1", - "x-ms-request-id" : "3f842e1e-23d2-40cd-bf8f-3f9a302d6b37", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "126f898c-293c-4523-9ce4-b1ac3375abd3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-2-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "637ad6b7-75f6-4edf-b9ab-660833c74aee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "286", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0f276bf-d87e-4ee4-a02d-e06c53a208ef", - "Date" : "Tue, 24 May 2022 13:05:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15978,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130518Z:a0f276bf-d87e-4ee4-a02d-e06c53a208ef", - "Expires" : "-1", - "x-ms-request-id" : "39331304-19b0-49de-b210-7cb4bc67ff5b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos/Skus/gen1/Versions/2022.05.19\"\r\n }\r\n]", - "x-ms-client-request-id" : "637ad6b7-75f6-4edf-b9ab-660833c74aee", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-2-byos/skus/gen1/versions/2022.05.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9a3985c-af54-4718-a485-c49d2318bde4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1044", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3969ea5b-3dfc-4580-b122-ed2a79494a01", - "Date" : "Tue, 24 May 2022 13:05:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12936,Microsoft.Compute/GetVMImageFromLocation30Min;73936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130519Z:3969ea5b-3dfc-4580-b122-ed2a79494a01", - "Expires" : "-1", - "x-ms-request-id" : "52f89292-b9b0-4957-ab10-20247d1d1248", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos/Skus/gen1/Versions/2022.05.19\"\r\n}", - "x-ms-client-request-id" : "f9a3985c-af54-4718-a485-c49d2318bde4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-2-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3cdd5ef-8e03-4b21-80ed-4c6be13273f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "286", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54cc40eb-2e9e-4bc6-8bf1-46913fadd649", - "Date" : "Tue, 24 May 2022 13:05:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15977,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130519Z:54cc40eb-2e9e-4bc6-8bf1-46913fadd649", - "Expires" : "-1", - "x-ms-request-id" : "2d1b4ba0-767e-4b14-bb02-3a13b4bb0d63", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos/Skus/gen2/Versions/2022.05.19\"\r\n }\r\n]", - "x-ms-client-request-id" : "c3cdd5ef-8e03-4b21-80ed-4c6be13273f4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sle-micro-5-2-byos/skus/gen2/versions/2022.05.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c35bbb2-a64a-438c-8e40-ce6e8758b1e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2c424403-0077-46e8-ae36-a6b445a97c69", - "Date" : "Tue, 24 May 2022 13:05:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12935,Microsoft.Compute/GetVMImageFromLocation30Min;73935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130520Z:2c424403-0077-46e8-ae36-a6b445a97c69", - "Expires" : "-1", - "x-ms-request-id" : "852ea758-f8ab-459c-a222-5fd796b6c82e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sle-micro-5-2-byos/Skus/gen2/Versions/2022.05.19\"\r\n}", - "x-ms-client-request-id" : "1c35bbb2-a64a-438c-8e40-ce6e8758b1e6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44326698-17b4-4bae-94f4-78dbb218df23", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "385", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34089288-7ab8-4174-bf52-b7dd2c2aecbb", - "Date" : "Tue, 24 May 2022 13:05:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9987,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130520Z:34089288-7ab8-4174-bf52-b7dd2c2aecbb", - "Expires" : "-1", - "x-ms-request-id" : "b42fe286-fdc3-45ac-b0d0-0dcf97dde379", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-sp4-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-sp4-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "44326698-17b4-4bae-94f4-78dbb218df23", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-sp4-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "66806a6f-6771-4366-be9e-4c00f79c0c99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "555", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6f9e133-7b99-4cf5-99c0-90b824867374", - "Date" : "Tue, 24 May 2022 13:05:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15976,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130521Z:c6f9e133-7b99-4cf5-99c0-90b824867374", - "Expires" : "-1", - "x-ms-request-id" : "e64fd873-d483-43bc-a1f7-f8e0512d189f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.08.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-sp4-gen2/Versions/2019.08.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.11.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-sp4-gen2/Versions/2019.11.13\"\r\n }\r\n]", - "x-ms-client-request-id" : "66806a6f-6771-4366-be9e-4c00f79c0c99", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-sp4-gen2/versions/2019.08.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a589e23-85df-40d3-aeca-bf9910f8892a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "778d8c59-a616-4e6b-9bd3-dc4257ec0ba5", - "Date" : "Tue, 24 May 2022 13:05:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12933,Microsoft.Compute/GetVMImageFromLocation30Min;73933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130521Z:778d8c59-a616-4e6b-9bd3-dc4257ec0ba5", - "Expires" : "-1", - "x-ms-request-id" : "9a322d27-37fc-4d70-bbba-e4ae1432b6f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.08.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-sp4-gen2/Versions/2019.08.26\"\r\n}", - "x-ms-client-request-id" : "6a589e23-85df-40d3-aeca-bf9910f8892a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-sp4-gen2/versions/2019.11.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c256c6db-0654-4ca7-abef-7674b46c97c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4cd9928d-e861-4344-bc4c-f1d7fbd21002", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12934,Microsoft.Compute/GetVMImageFromLocation30Min;73934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130521Z:4cd9928d-e861-4344-bc4c-f1d7fbd21002", - "Expires" : "-1", - "x-ms-request-id" : "52f0496c-dbc0-4fbb-b36e-9e5f681ec28a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.11.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-sp4-gen2/Versions/2019.11.13\"\r\n}", - "x-ms-client-request-id" : "c256c6db-0654-4ca7-abef-7674b46c97c9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "882cb2fa-a1a9-4ce0-80ae-27a25808411b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2b2de39-b00e-4e99-8130-6e1a428df783", - "Date" : "Tue, 24 May 2022 13:05:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9986,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130521Z:f2b2de39-b00e-4e99-8130-6e1a428df783", - "Expires" : "-1", - "x-ms-request-id" : "a46fe53a-a67f-47ad-a5ea-0bf4223c21d1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "882cb2fa-a1a9-4ce0-80ae-27a25808411b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e97fda4e-0059-4ced-861a-828aab7eed75", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a544a545-6f61-4c08-b269-93ce870f7efe", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15975,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130521Z:a544a545-6f61-4c08-b269-93ce870f7efe", - "Expires" : "-1", - "x-ms-request-id" : "a26ac057-6348-4b2b-a0ab-d750e5345a26", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "e97fda4e-0059-4ced-861a-828aab7eed75", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2eab12b-559f-41ce-bbd7-e483a6484959", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "189cfc81-972a-45fc-a2c8-c5de230a0768", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12929,Microsoft.Compute/GetVMImageFromLocation30Min;73929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:189cfc81-972a-45fc-a2c8-c5de230a0768", - "Expires" : "-1", - "x-ms-request-id" : "d32d06a2-3d53-4b30-ab92-485a109bb54a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "b2eab12b-559f-41ce-bbd7-e483a6484959", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen1/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9f79edb-8a2d-4434-aadb-c0c20ebd40a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f29b23ca-08e5-4e94-9951-80c3d16a9b04", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12931,Microsoft.Compute/GetVMImageFromLocation30Min;73931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:f29b23ca-08e5-4e94-9951-80c3d16a9b04", - "Expires" : "-1", - "x-ms-request-id" : "5971a67a-70c0-46e4-92c7-79455ab35e68", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "e9f79edb-8a2d-4434-aadb-c0c20ebd40a1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29a6ac28-aed2-4bd8-ac8e-5a36a52c3910", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "de0b8f06-c42e-452a-8f11-020fd3471e56", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12930,Microsoft.Compute/GetVMImageFromLocation30Min;73930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:de0b8f06-c42e-452a-8f11-020fd3471e56", - "Expires" : "-1", - "x-ms-request-id" : "99db4559-ff29-44f4-a9f7-80b7a74b247a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "29a6ac28-aed2-4bd8-ac8e-5a36a52c3910", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen1/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0abb17e-701b-46cb-9327-d7dfc1cf390a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d3ac987-0bb7-4a92-b339-dc121091bb62", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12932,Microsoft.Compute/GetVMImageFromLocation30Min;73932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:4d3ac987-0bb7-4a92-b339-dc121091bb62", - "Expires" : "-1", - "x-ms-request-id" : "4212bc69-a63d-4066-ab5e-be64898a0a15", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen1/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "d0abb17e-701b-46cb-9327-d7dfc1cf390a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e908a52a-dbb8-4f4d-97d1-8fb505e372ce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dd462b3f-14fc-42a8-991f-8704aa235f33", - "Date" : "Tue, 24 May 2022 13:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15974,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:dd462b3f-14fc-42a8-991f-8704aa235f33", - "Expires" : "-1", - "x-ms-request-id" : "30395686-8d92-48e1-acc0-b20d9ebfffff", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "e908a52a-dbb8-4f4d-97d1-8fb505e372ce", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen2/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb2e1076-e349-4ece-afe5-c4a95421a927", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "860", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "573d80c5-672c-48f5-a4bf-bf6e075677e6", - "Date" : "Tue, 24 May 2022 13:05:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12927,Microsoft.Compute/GetVMImageFromLocation30Min;73927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:573d80c5-672c-48f5-a4bf-bf6e075677e6", - "Expires" : "-1", - "x-ms-request-id" : "a7c802d7-dc0a-4f12-a02b-b8a831c294a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "fb2e1076-e349-4ece-afe5-c4a95421a927", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen2/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df625fc5-30f6-4d7f-8380-104e4b14e1d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "860", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11724", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c6c0628a-2520-436c-a882-cb918d1e6485", - "Date" : "Tue, 24 May 2022 13:05:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12928,Microsoft.Compute/GetVMImageFromLocation30Min;73928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:c6c0628a-2520-436c-a882-cb918d1e6485", - "Expires" : "-1", - "x-ms-request-id" : "2c3ece2b-95eb-4f2c-87fc-9e14e45c1474", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "df625fc5-30f6-4d7f-8380-104e4b14e1d4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d536b4e-1b8f-4e02-9452-35e17eeb4d1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "860", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9e149f1-5358-4fac-be4c-7965ec0a3d53", - "Date" : "Tue, 24 May 2022 13:05:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12926,Microsoft.Compute/GetVMImageFromLocation30Min;73926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130522Z:d9e149f1-5358-4fac-be4c-7965ec0a3d53", - "Expires" : "-1", - "x-ms-request-id" : "df9ed3ce-eed0-423d-9cef-47cb06b800c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "3d536b4e-1b8f-4e02-9452-35e17eeb4d1f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c49ab2c5-aaf8-4571-a1d4-4f422138ad52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "860", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "755eff23-4f71-443e-ba1d-0a7ec3d2af1e", - "Date" : "Tue, 24 May 2022 13:05:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12925,Microsoft.Compute/GetVMImageFromLocation30Min;73925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130523Z:755eff23-4f71-443e-ba1d-0a7ec3d2af1e", - "Expires" : "-1", - "x-ms-request-id" : "db3a6f10-d971-4ba4-a926-02bb17f439d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "c49ab2c5-aaf8-4571-a1d4-4f422138ad52", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7ad5f96-10e4-4150-a3ec-164400581238", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "765", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ccc557f-cfa2-4f82-a2e2-975b13d3d9b1", - "Date" : "Tue, 24 May 2022 13:05:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9985,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130523Z:5ccc557f-cfa2-4f82-a2e2-975b13d3d9b1", - "Expires" : "-1", - "x-ms-request-id" : "e1c499f1-57df-4c47-a839-d6ec4a457906", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "f7ad5f96-10e4-4150-a3ec-164400581238", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5081d111-ac15-47e1-b7da-9ee4442c1a74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11697", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe9e884e-75bd-46c9-8bb2-94b6ccb3c14c", - "Date" : "Tue, 24 May 2022 13:05:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15973,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130523Z:fe9e884e-75bd-46c9-8bb2-94b6ccb3c14c", - "Expires" : "-1", - "x-ms-request-id" : "9c622933-f15e-4564-92d4-f465218c88a0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2022.04.28\"\r\n }\r\n]", - "x-ms-client-request-id" : "5081d111-ac15-47e1-b7da-9ee4442c1a74", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f04a562e-77bd-4ff6-9547-05bf8abb0cb8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0534cf8-37fa-4a12-b268-f4f8bd1f9962", - "Date" : "Tue, 24 May 2022 13:05:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12924,Microsoft.Compute/GetVMImageFromLocation30Min;73924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130524Z:c0534cf8-37fa-4a12-b268-f4f8bd1f9962", - "Expires" : "-1", - "x-ms-request-id" : "cf707974-71bd-4c53-842f-561e97ab19a1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "f04a562e-77bd-4ff6-9547-05bf8abb0cb8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen1/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67cb0350-bf40-4d5c-ae4b-4bc1df730400", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11723", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbba4a2e-dd4a-4f79-bafc-30ba306c543e", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12923,Microsoft.Compute/GetVMImageFromLocation30Min;73923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130524Z:fbba4a2e-dd4a-4f79-bafc-30ba306c543e", - "Expires" : "-1", - "x-ms-request-id" : "8d564bf4-2a50-4d34-a6a2-8dccf3236a3d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "67cb0350-bf40-4d5c-ae4b-4bc1df730400", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen1/versions/2022.04.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d14ff4bb-e800-427e-ada6-9cb4819f1434", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c3f7eb5-9c21-4516-87d4-aecd897d7b3c", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12922,Microsoft.Compute/GetVMImageFromLocation30Min;73922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130524Z:5c3f7eb5-9c21-4516-87d4-aecd897d7b3c", - "Expires" : "-1", - "x-ms-request-id" : "15472932-441a-44cc-80ae-8eec0f812a68", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2022.04.28\"\r\n}", - "x-ms-client-request-id" : "d14ff4bb-e800-427e-ada6-9cb4819f1434", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen1/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3f00ffc-c2d1-45e8-985a-fc05a9ccc0c9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "300ea720-8bb4-4f25-8b31-af0a4ae8f71b", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12921,Microsoft.Compute/GetVMImageFromLocation30Min;73921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130524Z:300ea720-8bb4-4f25-8b31-af0a4ae8f71b", - "Expires" : "-1", - "x-ms-request-id" : "6749d258-95e4-4111-918b-8fcc039ed171", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen1/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "d3f00ffc-c2d1-45e8-985a-fc05a9ccc0c9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e437f04-fa62-4ca2-b4b3-d9a4cfc4e0e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed2113a8-6da0-4eb0-815f-c9c81ab0cf71", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15972,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130525Z:ed2113a8-6da0-4eb0-815f-c9c81ab0cf71", - "Expires" : "-1", - "x-ms-request-id" : "7411565f-373b-483a-a506-1dc7bf40c733", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2022.04.28\"\r\n }\r\n]", - "x-ms-client-request-id" : "8e437f04-fa62-4ca2-b4b3-d9a4cfc4e0e8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen2/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcbf0194-c8c7-43c3-b880-f931920b6998", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa9c7e5b-e456-4d7e-a093-4dbd417da8f3", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12920,Microsoft.Compute/GetVMImageFromLocation30Min;73920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130525Z:fa9c7e5b-e456-4d7e-a093-4dbd417da8f3", - "Expires" : "-1", - "x-ms-request-id" : "275c8f6a-f2ee-4174-8ce5-a665e75cb6f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "bcbf0194-c8c7-43c3-b880-f931920b6998", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen2/versions/2022.04.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "17ac138e-dd91-4380-8611-407b570ab252", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c57263aa-d8f0-4a8e-a5ef-92e8d2fec4a4", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12919,Microsoft.Compute/GetVMImageFromLocation30Min;73919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130525Z:c57263aa-d8f0-4a8e-a5ef-92e8d2fec4a4", - "Expires" : "-1", - "x-ms-request-id" : "3ff96ef2-14eb-4615-a429-bc0f6fd5dcfc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2022.04.28\"\r\n}", - "x-ms-client-request-id" : "17ac138e-dd91-4380-8611-407b570ab252", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen2/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8823c903-585e-4280-bfbc-d9e0f248a7f2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cfca26d-1972-481d-870e-d28114720afa", - "Date" : "Tue, 24 May 2022 13:05:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12918,Microsoft.Compute/GetVMImageFromLocation30Min;73918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130525Z:6cfca26d-1972-481d-870e-d28114720afa", - "Expires" : "-1", - "x-ms-request-id" : "5fc29ae8-12c7-409b-8fa6-aa51f78d97aa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "8823c903-585e-4280-bfbc-d9e0f248a7f2", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-basic/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "763d9219-7e1e-4662-8cf1-588844814c27", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c406d2dd-e43d-4160-b19d-716e2c76531f", - "Date" : "Tue, 24 May 2022 13:05:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12917,Microsoft.Compute/GetVMImageFromLocation30Min;73917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130525Z:c406d2dd-e43d-4160-b19d-716e2c76531f", - "Expires" : "-1", - "x-ms-request-id" : "069de84d-86e5-4e80-85a3-bf49030182fc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-basic/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "763d9219-7e1e-4662-8cf1-588844814c27", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9112a285-ccf1-4f02-9900-40667d482729", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "763", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eea1ca97-c79e-4aa2-adb5-2a65b46254f5", - "Date" : "Tue, 24 May 2022 13:05:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9984,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130525Z:eea1ca97-c79e-4aa2-adb5-2a65b46254f5", - "Expires" : "-1", - "x-ms-request-id" : "e8ef98f1-5fbf-42f3-b6ab-2d88b402ace6", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "9112a285-ccf1-4f02-9900-40667d482729", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "129bd58d-1d87-4a57-bc29-ff75330caf69", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1689", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "36ee8d6f-a51c-4fda-8c6f-6fbf532d1186", - "Date" : "Tue, 24 May 2022 13:05:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15971,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:36ee8d6f-a51c-4fda-8c6f-6fbf532d1186", - "Expires" : "-1", - "x-ms-request-id" : "3d06f4d8-be1e-48f1-9f4f-e0f720ad63c1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "129bd58d-1d87-4a57-bc29-ff75330caf69", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2825dc81-9f80-4534-883e-9967df6a6fca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11696", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da44d03e-84bf-416b-afa8-a8ca8403b708", - "Date" : "Tue, 24 May 2022 13:05:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12913,Microsoft.Compute/GetVMImageFromLocation30Min;73913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:da44d03e-84bf-416b-afa8-a8ca8403b708", - "Expires" : "-1", - "x-ms-request-id" : "d1d90ca4-b2de-4e02-ab03-d6dcade12e54", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "2825dc81-9f80-4534-883e-9967df6a6fca", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1f77e61-0e32-4556-aef2-dc07a70c4d64", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c00e88ae-7489-490f-8fa7-3f4075e08342", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12916,Microsoft.Compute/GetVMImageFromLocation30Min;73916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:c00e88ae-7489-490f-8fa7-3f4075e08342", - "Expires" : "-1", - "x-ms-request-id" : "e99f09c2-f61d-43a8-8dd8-8999d6661723", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "f1f77e61-0e32-4556-aef2-dc07a70c4d64", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42f6ff11-ac38-4ff2-b1cb-7768020718ac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6afd747-3086-49da-815c-2ca3055346e9", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12915,Microsoft.Compute/GetVMImageFromLocation30Min;73915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:b6afd747-3086-49da-815c-2ca3055346e9", - "Expires" : "-1", - "x-ms-request-id" : "7729d1ef-bb45-4286-b555-ce78f63563bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "42f6ff11-ac38-4ff2-b1cb-7768020718ac", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b76d81fa-bd83-4cde-a8b5-ed253f4d999a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08c313ab-44be-480f-93a1-65c21173147e", - "Date" : "Tue, 24 May 2022 13:05:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12912,Microsoft.Compute/GetVMImageFromLocation30Min;73912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:08c313ab-44be-480f-93a1-65c21173147e", - "Expires" : "-1", - "x-ms-request-id" : "599618bd-f7ad-46a5-a679-f4ddfbc9af97", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "b76d81fa-bd83-4cde-a8b5-ed253f4d999a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "017e8915-3974-4aba-8ebb-9ff74fbe706f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98abd84a-2c02-4744-b24c-d4c2b9504256", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12914,Microsoft.Compute/GetVMImageFromLocation30Min;73914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:98abd84a-2c02-4744-b24c-d4c2b9504256", - "Expires" : "-1", - "x-ms-request-id" : "29760d74-14c6-4c10-894f-cf83f27e0889", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "017e8915-3974-4aba-8ebb-9ff74fbe706f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen1/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eafcaec4-9fb0-44e1-8180-a3e5341ef849", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c461b01a-7a4b-4022-8772-472dfba64b5f", - "Date" : "Tue, 24 May 2022 13:05:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12911,Microsoft.Compute/GetVMImageFromLocation30Min;73911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:c461b01a-7a4b-4022-8772-472dfba64b5f", - "Expires" : "-1", - "x-ms-request-id" : "cc045cc3-c97e-4a97-bb4d-e2a5a67e2599", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen1/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "eafcaec4-9fb0-44e1-8180-a3e5341ef849", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b2937c7-e747-4921-9cd5-87b827dff02d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1689", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11695", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b90b7fa5-8717-4326-8b7c-6ddbc24d4d73", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15970,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:b90b7fa5-8717-4326-8b7c-6ddbc24d4d73", - "Expires" : "-1", - "x-ms-request-id" : "bc542241-753b-4dce-813c-03429b9610bc", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "9b2937c7-e747-4921-9cd5-87b827dff02d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ade24b8c-a2e6-4b4c-9b24-3435d5ce64bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5016d27e-a7f0-4486-b6d8-9c05a612b20e", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12910,Microsoft.Compute/GetVMImageFromLocation30Min;73910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:5016d27e-a7f0-4486-b6d8-9c05a612b20e", - "Expires" : "-1", - "x-ms-request-id" : "b65e4712-40b1-4555-a70c-a49f29cebc40", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "ade24b8c-a2e6-4b4c-9b24-3435d5ce64bf", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "307a69b1-743d-4b27-81ed-cc33ac54c77a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7b3d008-4307-472a-aacc-45e46545553d", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12909,Microsoft.Compute/GetVMImageFromLocation30Min;73909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:f7b3d008-4307-472a-aacc-45e46545553d", - "Expires" : "-1", - "x-ms-request-id" : "56bcd331-4957-46cd-9168-e02e76d60346", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "307a69b1-743d-4b27-81ed-cc33ac54c77a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fee3ed32-27c2-4300-be49-e47bd5db9511", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11694", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45f2b4e1-b559-4122-b67b-e9829a309bb8", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12908,Microsoft.Compute/GetVMImageFromLocation30Min;73908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:45f2b4e1-b559-4122-b67b-e9829a309bb8", - "Expires" : "-1", - "x-ms-request-id" : "31c0257a-5b2a-4711-a6ba-3981fd00b157", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "fee3ed32-27c2-4300-be49-e47bd5db9511", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "604e9a07-25f9-41ef-ba95-f60c3761ac29", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11721", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "146b93f4-d880-4fdb-a6ac-f87cc3ab9c03", - "Date" : "Tue, 24 May 2022 13:05:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12907,Microsoft.Compute/GetVMImageFromLocation30Min;73907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130526Z:146b93f4-d880-4fdb-a6ac-f87cc3ab9c03", - "Expires" : "-1", - "x-ms-request-id" : "e835169b-e9b2-4162-8a58-c1b7441258ff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "604e9a07-25f9-41ef-ba95-f60c3761ac29", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d616ddc4-b266-49ac-9568-ab8441ebbbe6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11721", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d16d6054-1d62-49c3-b358-f49ca4354eb7", - "Date" : "Tue, 24 May 2022 13:05:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12906,Microsoft.Compute/GetVMImageFromLocation30Min;73906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130527Z:d16d6054-1d62-49c3-b358-f49ca4354eb7", - "Expires" : "-1", - "x-ms-request-id" : "d8c656a2-e25d-4e3c-97a4-2e4a1f2db953", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "d616ddc4-b266-49ac-9568-ab8441ebbbe6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5f75509-b6f7-4cba-9b0a-a6e59e7dc348", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c428c155-26a6-44da-af28-e58e639e01ea", - "Date" : "Tue, 24 May 2022 13:05:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12905,Microsoft.Compute/GetVMImageFromLocation30Min;73905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130527Z:c428c155-26a6-44da-af28-e58e639e01ea", - "Expires" : "-1", - "x-ms-request-id" : "50f89196-1a4e-4d86-a0e2-54daa01af502", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "d5f75509-b6f7-4cba-9b0a-a6e59e7dc348", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3235da61-027f-4540-84b2-ebe94811c40e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "439d8f9a-9449-467a-a93d-7718fc5632cf", - "Date" : "Tue, 24 May 2022 13:05:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9983,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130527Z:439d8f9a-9449-467a-a93d-7718fc5632cf", - "Expires" : "-1", - "x-ms-request-id" : "e7aea90c-f9fa-4ba3-b06b-cf78393cdf6d", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "3235da61-027f-4540-84b2-ebe94811c40e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c2cb56a-17d1-4441-a0a2-ec836c4a28e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f22eed0-57f7-4a92-a779-77af99ed4cfe", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15969,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130528Z:9f22eed0-57f7-4a92-a779-77af99ed4cfe", - "Expires" : "-1", - "x-ms-request-id" : "55ae6fd4-505d-4cc5-8798-265e4a1c57d4", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "7c2cb56a-17d1-4441-a0a2-ec836c4a28e6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen1/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "062e186b-6f7c-431c-ab36-e1492a03de8c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76d1bc81-a3b4-4b6a-8884-4b1274cb0e22", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12904,Microsoft.Compute/GetVMImageFromLocation30Min;73904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130528Z:76d1bc81-a3b4-4b6a-8884-4b1274cb0e22", - "Expires" : "-1", - "x-ms-request-id" : "ba487e2c-0c36-41e2-9a46-1c362ab387a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "062e186b-6f7c-431c-ab36-e1492a03de8c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f41b8ed-1df4-473d-8aba-ca98f5df60b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30d56c46-e2bc-493b-9106-a1ac490db946", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12902,Microsoft.Compute/GetVMImageFromLocation30Min;73902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130528Z:30d56c46-e2bc-493b-9106-a1ac490db946", - "Expires" : "-1", - "x-ms-request-id" : "ddd986ac-f413-48b4-a951-539453a2c9a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "8f41b8ed-1df4-473d-8aba-ca98f5df60b6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen1/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f62c849-e66c-4652-bce5-f9c46feed2e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6ff6c8f-3a0d-4ea2-b361-19a14c566380", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12903,Microsoft.Compute/GetVMImageFromLocation30Min;73903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130528Z:d6ff6c8f-3a0d-4ea2-b361-19a14c566380", - "Expires" : "-1", - "x-ms-request-id" : "c167cac3-a236-43ef-913b-d714a7e6db23", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "0f62c849-e66c-4652-bce5-f9c46feed2e8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2103dfc2-e1e3-447c-b29f-f4595187dfe4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b7a6c95-9a04-45cd-8682-dcd77a707d70", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12901,Microsoft.Compute/GetVMImageFromLocation30Min;73901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130528Z:1b7a6c95-9a04-45cd-8682-dcd77a707d70", - "Expires" : "-1", - "x-ms-request-id" : "53d9856b-f31f-414a-8c5f-a7a0a12a9166", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "2103dfc2-e1e3-447c-b29f-f4595187dfe4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "555a406b-a12c-4356-9932-6e4ba4753ab8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11929", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b81a56c-2483-4b75-a0fa-0aa2e2b2f644", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15968,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130529Z:0b81a56c-2483-4b75-a0fa-0aa2e2b2f644", - "Expires" : "-1", - "x-ms-request-id" : "49a03a53-1c98-4679-99e5-d407c015ffed", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "555a406b-a12c-4356-9932-6e4ba4753ab8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen2/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5902a19-6267-48ba-953f-25bbd9d79f52", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfedaa03-0f26-4e86-8fbd-def25aebe061", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12900,Microsoft.Compute/GetVMImageFromLocation30Min;73900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130529Z:cfedaa03-0f26-4e86-8fbd-def25aebe061", - "Expires" : "-1", - "x-ms-request-id" : "d9c6a3c6-1d9a-49ff-8d3c-15c94a0dceb0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "f5902a19-6267-48ba-953f-25bbd9d79f52", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85bfc4b7-0470-4e8e-a0ff-209434f4705a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c734b929-46f5-46e8-91b5-506d1f47ef42", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12899,Microsoft.Compute/GetVMImageFromLocation30Min;73899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130529Z:c734b929-46f5-46e8-91b5-506d1f47ef42", - "Expires" : "-1", - "x-ms-request-id" : "0064571e-c95b-4e22-b330-168b029750dc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "85bfc4b7-0470-4e8e-a0ff-209434f4705a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen2/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2250bd95-44b4-4e81-9c63-223fc2629322", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0250d5cc-d6b6-40ba-af73-6e0c597c3efd", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12897,Microsoft.Compute/GetVMImageFromLocation30Min;73897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130529Z:0250d5cc-d6b6-40ba-af73-6e0c597c3efd", - "Expires" : "-1", - "x-ms-request-id" : "03817ee5-84d2-4927-a1af-5a403d2b1705", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "2250bd95-44b4-4e81-9c63-223fc2629322", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8f703c2-66b5-4dd8-8f03-20d6d22664f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13832927-d1e1-4685-8be4-5e06baa439a6", - "Date" : "Tue, 24 May 2022 13:05:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12898,Microsoft.Compute/GetVMImageFromLocation30Min;73898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130529Z:13832927-d1e1-4685-8be4-5e06baa439a6", - "Expires" : "-1", - "x-ms-request-id" : "c0c9b51b-1a43-41a5-8bfd-86b6b8f373b6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "f8f703c2-66b5-4dd8-8f03-20d6d22664f7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b905673-f4b3-4bd1-92b9-fd37b131f002", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94b4b474-b09c-41f0-ab13-3dfeecf853dd", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9982,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130529Z:94b4b474-b09c-41f0-ab13-3dfeecf853dd", - "Expires" : "-1", - "x-ms-request-id" : "c5d9706b-ed25-4864-ab25-453e58f6a1c6", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "9b905673-f4b3-4bd1-92b9-fd37b131f002", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "16b16601-de87-4de6-ad21-4fca3cca47b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fdf2686-3d01-41ba-a826-58c20eef9d72", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15967,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:2fdf2686-3d01-41ba-a826-58c20eef9d72", - "Expires" : "-1", - "x-ms-request-id" : "c890304d-fef5-4abb-b714-3f89dccfeed0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "16b16601-de87-4de6-ad21-4fca3cca47b4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b05ef640-88aa-4867-8c18-4247417fcdd4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfed268a-7a73-4c05-bde3-7d4513350577", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12896,Microsoft.Compute/GetVMImageFromLocation30Min;73896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:cfed268a-7a73-4c05-bde3-7d4513350577", - "Expires" : "-1", - "x-ms-request-id" : "f2a70ccd-518d-4516-b28a-1693e5cfe375", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "b05ef640-88aa-4867-8c18-4247417fcdd4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "871f3d21-2506-4404-b135-9e88f8c7edb5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "95bdd5e9-5edd-406f-a41d-89b1f4402705", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12894,Microsoft.Compute/GetVMImageFromLocation30Min;73894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:95bdd5e9-5edd-406f-a41d-89b1f4402705", - "Expires" : "-1", - "x-ms-request-id" : "26085f63-c5f6-4c3c-b11a-b42808a16b78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "871f3d21-2506-4404-b135-9e88f8c7edb5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ddfd8ec6-c66b-4e1f-bab3-a248473f8664", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2106fa55-2203-4865-a399-dd9f7d0ca51d", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12893,Microsoft.Compute/GetVMImageFromLocation30Min;73893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:2106fa55-2203-4865-a399-dd9f7d0ca51d", - "Expires" : "-1", - "x-ms-request-id" : "dff3d8a5-e821-4135-b24b-07065ea73e70", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "ddfd8ec6-c66b-4e1f-bab3-a248473f8664", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca64ac17-e11f-4a78-98bf-7fb2284644a8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11782", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e48afc2-a6cc-4286-b2f2-e157384a918a", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12892,Microsoft.Compute/GetVMImageFromLocation30Min;73892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:4e48afc2-a6cc-4286-b2f2-e157384a918a", - "Expires" : "-1", - "x-ms-request-id" : "5042ace0-c85d-41de-b1d2-c672dfc54c80", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "ca64ac17-e11f-4a78-98bf-7fb2284644a8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ba363f0-92b4-4c0d-a6d1-17e19ce77d32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11782", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d8a8edf-e310-4191-8339-aba066bcf061", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12891,Microsoft.Compute/GetVMImageFromLocation30Min;73891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:5d8a8edf-e310-4191-8339-aba066bcf061", - "Expires" : "-1", - "x-ms-request-id" : "db39d4f3-6dda-4bfa-821c-d8e2a7e21ac6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "1ba363f0-92b4-4c0d-a6d1-17e19ce77d32", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen1/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28491bce-77d8-4509-b373-cc3cf75eca91", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "876", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f99e555-5c4f-42c6-aa0d-e7d677761451", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12895,Microsoft.Compute/GetVMImageFromLocation30Min;73895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:7f99e555-5c4f-42c6-aa0d-e7d677761451", - "Expires" : "-1", - "x-ms-request-id" : "6e2c98e3-501d-493f-b29f-fe74fa7379a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen1/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "28491bce-77d8-4509-b373-cc3cf75eca91", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afa514d9-e768-4d72-b426-93dd742ae1fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8426450d-a85a-494c-b3a2-52f2f01b5e6b", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15966,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:8426450d-a85a-494c-b3a2-52f2f01b5e6b", - "Expires" : "-1", - "x-ms-request-id" : "35ebef77-baac-43ed-bb55-6c0c7a7904e3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "afa514d9-e768-4d72-b426-93dd742ae1fe", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f451af5-3757-4806-bd28-29a165993e84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fc51ec42-63e6-4c81-be45-e8e134575178", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12890,Microsoft.Compute/GetVMImageFromLocation30Min;73890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:fc51ec42-63e6-4c81-be45-e8e134575178", - "Expires" : "-1", - "x-ms-request-id" : "0fe3d594-dcb1-4c73-a542-fcd419f02f94", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "8f451af5-3757-4806-bd28-29a165993e84", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b1b4afd5-6d43-4b1d-b2aa-f044090e60e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e35233c4-46a8-4b08-b7b1-b7e728d8c3c2", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12888,Microsoft.Compute/GetVMImageFromLocation30Min;73888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:e35233c4-46a8-4b08-b7b1-b7e728d8c3c2", - "Expires" : "-1", - "x-ms-request-id" : "793c0db5-da7f-4827-9498-0a4e61cd6a4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "b1b4afd5-6d43-4b1d-b2aa-f044090e60e0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f70c52c3-a9a5-4fb0-ba3a-6c7765a81532", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "115b6065-a271-4ec5-9674-3ded9ca3d937", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12889,Microsoft.Compute/GetVMImageFromLocation30Min;73889", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:115b6065-a271-4ec5-9674-3ded9ca3d937", - "Expires" : "-1", - "x-ms-request-id" : "d46cb1a7-f051-4326-8282-ae0c5a7ee1f9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "f70c52c3-a9a5-4fb0-ba3a-6c7765a81532", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dff78f3a-ce71-4145-9694-948f42eaf480", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "445758d9-6b08-468d-8986-d671ddf796af", - "Date" : "Tue, 24 May 2022 13:05:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12887,Microsoft.Compute/GetVMImageFromLocation30Min;73887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:445758d9-6b08-468d-8986-d671ddf796af", - "Expires" : "-1", - "x-ms-request-id" : "5ecb1bb6-3646-4fc3-9494-cb412bfc38b6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "dff78f3a-ce71-4145-9694-948f42eaf480", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e36900d-c5e5-4584-9286-f35b8b7e36b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11720", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77e86d09-8cea-46ae-8b2e-aa511fd56239", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12886,Microsoft.Compute/GetVMImageFromLocation30Min;73886", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130530Z:77e86d09-8cea-46ae-8b2e-aa511fd56239", - "Expires" : "-1", - "x-ms-request-id" : "1faac5b1-f7c6-4361-96ea-f4cafdf2b3df", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "7e36900d-c5e5-4584-9286-f35b8b7e36b0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-12-sp5-hpc-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "67a50002-b4a6-4854-8120-323a7a402dfc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "869", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11812", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "274fcfa0-bd58-4efc-b928-11cc88b0b879", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12885,Microsoft.Compute/GetVMImageFromLocation30Min;73885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130531Z:274fcfa0-bd58-4efc-b928-11cc88b0b879", - "Expires" : "-1", - "x-ms-request-id" : "479f872a-c5a7-46ea-bb33-923e568af276", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-12-sp5-hpc-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "67a50002-b4a6-4854-8120-323a7a402dfc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44df8799-3659-486e-ad25-d4532ec879b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "378", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66d49615-e2f8-485c-97cb-bdfdfd9429e1", - "Date" : "Tue, 24 May 2022 13:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9981,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130531Z:66d49615-e2f8-485c-97cb-bdfdfd9429e1", - "Expires" : "-1", - "x-ms-request-id" : "999d430e-24c3-42f4-9982-75a6b01915c2", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "44df8799-3659-486e-ad25-d4532ec879b8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7a14905-af5d-45c9-8ec7-d3a979ffa019", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "279", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8681cc6f-8271-458f-a22b-d59d0cc63218", - "Date" : "Tue, 24 May 2022 13:05:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15965,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130531Z:8681cc6f-8271-458f-a22b-d59d0cc63218", - "Expires" : "-1", - "x-ms-request-id" : "878e15ad-c73f-44f4-b91e-b54b8d5ef8a0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.06.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1/Skus/gen2/Versions/2020.06.10\"\r\n }\r\n]", - "x-ms-client-request-id" : "b7a14905-af5d-45c9-8ec7-d3a979ffa019", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1/skus/gen2/versions/2020.06.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b19f9cbb-b4aa-4a5f-a810-8a19141c03fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11806", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "911fe497-f22f-40ff-a2d0-dca5f0a17dcd", - "Date" : "Tue, 24 May 2022 13:05:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12884,Microsoft.Compute/GetVMImageFromLocation30Min;73884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130531Z:911fe497-f22f-40ff-a2d0-dca5f0a17dcd", - "Expires" : "-1", - "x-ms-request-id" : "616956ad-876c-46b2-b298-220dbd2dee74", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.06.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1/Skus/gen2/Versions/2020.06.10\"\r\n}", - "x-ms-client-request-id" : "b19f9cbb-b4aa-4a5f-a810-8a19141c03fe", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3f3c3da-c1ab-4667-bd3c-19a3f49991b6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "763", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c51dbcc8-8637-4d07-a844-422647ba5a94", - "Date" : "Tue, 24 May 2022 13:05:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9980,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:c51dbcc8-8637-4d07-a844-422647ba5a94", - "Expires" : "-1", - "x-ms-request-id" : "36a6ed04-2c57-470c-b0b2-ef554dc6930c", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "e3f3c3da-c1ab-4667-bd3c-19a3f49991b6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca51640c-150d-4ea9-8a8e-ca208a97d96d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "130ce251-049f-424f-9a03-b17762d4975b", - "Date" : "Tue, 24 May 2022 13:05:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15964,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:130ce251-049f-424f-9a03-b17762d4975b", - "Expires" : "-1", - "x-ms-request-id" : "a1a2d99b-cc4d-4db2-8cc0-6882dada48d2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "ca51640c-150d-4ea9-8a8e-ca208a97d96d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a12bbbb-11eb-4e87-882a-c422fb8310a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11693", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a467044-a14e-4ce1-9aaa-fb6277b06ff1", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12882,Microsoft.Compute/GetVMImageFromLocation30Min;73882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:4a467044-a14e-4ce1-9aaa-fb6277b06ff1", - "Expires" : "-1", - "x-ms-request-id" : "1e1672ae-06fe-482a-81d2-0e973b117888", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "3a12bbbb-11eb-4e87-882a-c422fb8310a4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen1/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9eade12-4959-41d6-afdb-53bc3a2b9653", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d23b6a5a-e2ff-4df4-b9ba-f7bfde8a6f6e", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12883,Microsoft.Compute/GetVMImageFromLocation30Min;73883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:d23b6a5a-e2ff-4df4-b9ba-f7bfde8a6f6e", - "Expires" : "-1", - "x-ms-request-id" : "830f4e5b-2407-42f3-9aec-a6e2659d1c3e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "f9eade12-4959-41d6-afdb-53bc3a2b9653", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen1/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9350df6b-631a-4fd7-9076-ae41af8c6c6d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b308b6e0-4993-43c1-b548-8380501487f3", - "Date" : "Tue, 24 May 2022 13:05:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12881,Microsoft.Compute/GetVMImageFromLocation30Min;73881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:b308b6e0-4993-43c1-b548-8380501487f3", - "Expires" : "-1", - "x-ms-request-id" : "2db49e33-f0d7-454d-94cc-0e83d46ed4bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "9350df6b-631a-4fd7-9076-ae41af8c6c6d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9be5dd92-771b-4d97-83dc-72fa57d2d4e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a6a67d1b-1ff3-4c65-a074-1902216a221e", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12879,Microsoft.Compute/GetVMImageFromLocation30Min;73879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:a6a67d1b-1ff3-4c65-a074-1902216a221e", - "Expires" : "-1", - "x-ms-request-id" : "8ea96072-4b57-446a-8c15-6a5bc40230c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "9be5dd92-771b-4d97-83dc-72fa57d2d4e1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8418ce7d-f122-4491-b0d6-c88ff9c2eda7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5730d212-2d14-482b-a948-1d03d01ac999", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12880,Microsoft.Compute/GetVMImageFromLocation30Min;73880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130532Z:5730d212-2d14-482b-a948-1d03d01ac999", - "Expires" : "-1", - "x-ms-request-id" : "52d2681e-7cff-4eb0-bf21-0c21c0a87b79", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "8418ce7d-f122-4491-b0d6-c88ff9c2eda7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aec7c507-d8ad-4be8-8581-e6b4a1163afa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11692", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b555ee5-be4e-44e0-9394-37247b331bce", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15963,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:8b555ee5-be4e-44e0-9394-37247b331bce", - "Expires" : "-1", - "x-ms-request-id" : "7e6ee00f-7b54-4223-a8bd-4b3a33ed91fd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "aec7c507-d8ad-4be8-8581-e6b4a1163afa", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "caa4b50b-52da-4545-a334-926bcea446da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b2ea0de-6bc0-4491-8a55-1ac69218026a", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12878,Microsoft.Compute/GetVMImageFromLocation30Min;73878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:5b2ea0de-6bc0-4491-8a55-1ac69218026a", - "Expires" : "-1", - "x-ms-request-id" : "f894e50c-ee05-4876-913b-25dea5cc095b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "caa4b50b-52da-4545-a334-926bcea446da", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1932a6e1-aac2-4905-857e-c65ab7eb26c7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54fcf647-5cbb-4621-863d-d67386e01902", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12877,Microsoft.Compute/GetVMImageFromLocation30Min;73877", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:54fcf647-5cbb-4621-863d-d67386e01902", - "Expires" : "-1", - "x-ms-request-id" : "f8fe45ae-41fb-4be0-bf54-554036e18c79", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "1932a6e1-aac2-4905-857e-c65ab7eb26c7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "334278bd-fec6-4ec0-9e25-5d44e3e25564", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7549fd9f-cf07-44c0-bb44-25cc9a22207e", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12876,Microsoft.Compute/GetVMImageFromLocation30Min;73876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:7549fd9f-cf07-44c0-bb44-25cc9a22207e", - "Expires" : "-1", - "x-ms-request-id" : "90576154-dfa0-4c69-8321-75ea9300c32e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "334278bd-fec6-4ec0-9e25-5d44e3e25564", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31ddcd7b-94a1-4f13-9f9e-42b4d26adfc7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1dc60b70-6a7e-445c-93f3-4a2650c075f6", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12875,Microsoft.Compute/GetVMImageFromLocation30Min;73875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:1dc60b70-6a7e-445c-93f3-4a2650c075f6", - "Expires" : "-1", - "x-ms-request-id" : "0e4cea6b-b632-4e6b-8179-13835d00c477", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "31ddcd7b-94a1-4f13-9f9e-42b4d26adfc7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-byos/skus/gen2/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c28a3a37-52e6-417a-a718-582a44b4021e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60acbdfe-3ceb-4d1c-a052-b8cc20060f6a", - "Date" : "Tue, 24 May 2022 13:05:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12874,Microsoft.Compute/GetVMImageFromLocation30Min;73874", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:60acbdfe-3ceb-4d1c-a052-b8cc20060f6a", - "Expires" : "-1", - "x-ms-request-id" : "eacd53a8-2069-4590-98be-70cfca06e48b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-byos/Skus/gen2/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "c28a3a37-52e6-417a-a718-582a44b4021e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34131cbd-e297-4462-b3e1-ca304accf3fc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "775", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3bec0af8-60de-4b26-a5f2-63e74f629937", - "Date" : "Tue, 24 May 2022 13:05:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9979,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:3bec0af8-60de-4b26-a5f2-63e74f629937", - "Expires" : "-1", - "x-ms-request-id" : "befa8d6c-d263-42ec-a255-8bbd0b74877d", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "34131cbd-e297-4462-b3e1-ca304accf3fc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea00b4e1-d4b2-49c5-8b9b-9300fec1173d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "577", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11821", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "274985bd-8441-43c3-b79c-20544ab8bbf1", - "Date" : "Tue, 24 May 2022 13:05:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15962,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130533Z:274985bd-8441-43c3-b79c-20544ab8bbf1", - "Expires" : "-1", - "x-ms-request-id" : "5cb7ece8-1784-4af3-9aca-a0dc881c5020", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen1/Versions/2021.03.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen1/Versions/2022.01.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "ea00b4e1-d4b2-49c5-8b9b-9300fec1173d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba756c12-ba82-4071-9a11-603b0d6222bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "108e52db-7c1e-4e50-9573-beb3943eed43", - "Date" : "Tue, 24 May 2022 13:05:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12873,Microsoft.Compute/GetVMImageFromLocation30Min;73873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130534Z:108e52db-7c1e-4e50-9573-beb3943eed43", - "Expires" : "-1", - "x-ms-request-id" : "4cbe8129-c198-425c-9267-f0c16af8411f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "ba756c12-ba82-4071-9a11-603b0d6222bf", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus/gen1/versions/2021.03.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fecbbb5b-de13-4054-916a-5cb70abc1cbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e556e2c8-f9e7-4874-bbfa-9e1c87c4f6cc", - "Date" : "Tue, 24 May 2022 13:05:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12872,Microsoft.Compute/GetVMImageFromLocation30Min;73872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130534Z:e556e2c8-f9e7-4874-bbfa-9e1c87c4f6cc", - "Expires" : "-1", - "x-ms-request-id" : "88dc8bfa-63a2-4428-8212-06cea7584438", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen1/Versions/2021.03.04\"\r\n}", - "x-ms-client-request-id" : "fecbbb5b-de13-4054-916a-5cb70abc1cbb", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81f31641-0c21-428a-aa66-76331b404067", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "577", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6b022ee-cd0c-4a64-98a1-194e9f2b1763", - "Date" : "Tue, 24 May 2022 13:05:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15961,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130534Z:e6b022ee-cd0c-4a64-98a1-194e9f2b1763", - "Expires" : "-1", - "x-ms-request-id" : "a12d8050-4338-4aac-8977-be50220860e7", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen2/Versions/2021.03.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen2/Versions/2022.01.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "81f31641-0c21-428a-aa66-76331b404067", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1d7a3b6-97fd-4c3e-8903-5e4559ac522a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35c715dc-ae7a-4f30-aef7-404686bc6109", - "Date" : "Tue, 24 May 2022 13:05:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12870,Microsoft.Compute/GetVMImageFromLocation30Min;73870", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130535Z:35c715dc-ae7a-4f30-aef7-404686bc6109", - "Expires" : "-1", - "x-ms-request-id" : "c732f934-9036-48c9-a0b6-098e2fbf9f09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "a1d7a3b6-97fd-4c3e-8903-5e4559ac522a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-chost-byos/skus/gen2/versions/2021.03.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2d00154-ad98-40b6-ba87-2a3644c4ba22", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "08a32c3d-2625-4e1c-b307-e1396212a2b0", - "Date" : "Tue, 24 May 2022 13:05:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12871,Microsoft.Compute/GetVMImageFromLocation30Min;73871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130535Z:08a32c3d-2625-4e1c-b307-e1396212a2b0", - "Expires" : "-1", - "x-ms-request-id" : "6754d617-a3d6-4908-913a-466e3dcf3b20", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-chost-byos/Skus/gen2/Versions/2021.03.04\"\r\n}", - "x-ms-client-request-id" : "b2d00154-ad98-40b6-ba87-2a3644c4ba22", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73229b09-d767-4ce5-8734-125371a6eaf9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "382", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11719", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dfb5d940-f456-47c0-a43b-cf1da1a25f65", - "Date" : "Tue, 24 May 2022 13:05:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9978,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130535Z:dfb5d940-f456-47c0-a43b-cf1da1a25f65", - "Expires" : "-1", - "x-ms-request-id" : "6172252d-edfe-4ceb-a99c-bbc05ab05881", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "73229b09-d767-4ce5-8734-125371a6eaf9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "299ea270-274c-4132-9d77-e0ddf5eb8439", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "283", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0fdb2ef-36c8-4af8-86bc-41e81770337e", - "Date" : "Tue, 24 May 2022 13:05:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15960,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130535Z:c0fdb2ef-36c8-4af8-86bc-41e81770337e", - "Expires" : "-1", - "x-ms-request-id" : "ffd5ee13-6c62-4bbc-b96d-8c5c688cb0e8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.06.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc/Skus/gen2/Versions/2020.06.10\"\r\n }\r\n]", - "x-ms-client-request-id" : "299ea270-274c-4132-9d77-e0ddf5eb8439", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc/skus/gen2/versions/2020.06.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c22bdaa3-0df6-4121-b335-f8a1249bea36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fea9452b-4e6f-496d-ab40-7e7182682a4f", - "Date" : "Tue, 24 May 2022 13:05:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12869,Microsoft.Compute/GetVMImageFromLocation30Min;73869", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130536Z:fea9452b-4e6f-496d-ab40-7e7182682a4f", - "Expires" : "-1", - "x-ms-request-id" : "41d71a6e-1d41-47b9-948b-f2080e3ef6fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.06.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc/Skus/gen2/Versions/2020.06.10\"\r\n}", - "x-ms-client-request-id" : "c22bdaa3-0df6-4121-b335-f8a1249bea36", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5f22414-6720-498d-9026-73f444e50139", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73b45c8d-d35c-4eae-8e2a-13e83fca24a5", - "Date" : "Tue, 24 May 2022 13:05:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9977,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:73b45c8d-d35c-4eae-8e2a-13e83fca24a5", - "Expires" : "-1", - "x-ms-request-id" : "0d56ac60-336e-4bc2-b5a0-5b63c317e01d", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "d5f22414-6720-498d-9026-73f444e50139", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95099e96-9cbc-41ec-9dff-b2bbb3de3321", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4aea6b8-9dac-4d7d-8aca-420f0e7f6016", - "Date" : "Tue, 24 May 2022 13:05:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15959,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:d4aea6b8-9dac-4d7d-8aca-420f0e7f6016", - "Expires" : "-1", - "x-ms-request-id" : "6fafae2b-d634-4237-b907-87bdc08a63ff", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "95099e96-9cbc-41ec-9dff-b2bbb3de3321", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "897ac00f-27d1-470a-a7c5-00c84e63bf41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4eb3eec4-962d-476a-92d0-486c01d446d7", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12868,Microsoft.Compute/GetVMImageFromLocation30Min;73868", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:4eb3eec4-962d-476a-92d0-486c01d446d7", - "Expires" : "-1", - "x-ms-request-id" : "1e6629ae-2514-46ff-ab98-3e36f34b29f4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "897ac00f-27d1-470a-a7c5-00c84e63bf41", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9c35b9f-a2b2-480b-ac18-1dc1ccfa2a73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfe4145c-4f79-45f4-a641-e44bd6378f56", - "Date" : "Tue, 24 May 2022 13:05:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12867,Microsoft.Compute/GetVMImageFromLocation30Min;73867", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:cfe4145c-4f79-45f4-a641-e44bd6378f56", - "Expires" : "-1", - "x-ms-request-id" : "4cb5e0a8-dab3-45ce-80da-0582d318a442", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "f9c35b9f-a2b2-480b-ac18-1dc1ccfa2a73", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fe50b21-25d2-438b-b247-67b6f7f07576", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5aebff1-505d-40d8-a34a-154fdb6a1b9e", - "Date" : "Tue, 24 May 2022 13:05:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12865,Microsoft.Compute/GetVMImageFromLocation30Min;73865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:b5aebff1-505d-40d8-a34a-154fdb6a1b9e", - "Expires" : "-1", - "x-ms-request-id" : "43230d0c-b897-44e1-8e24-8e8ecf7e9be8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "3fe50b21-25d2-438b-b247-67b6f7f07576", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfd2cabe-5999-4fe8-ac45-19332e53861f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cd8e3af-2ef8-44d0-a8dd-d9d7082c1bd2", - "Date" : "Tue, 24 May 2022 13:05:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12864,Microsoft.Compute/GetVMImageFromLocation30Min;73864", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:5cd8e3af-2ef8-44d0-a8dd-d9d7082c1bd2", - "Expires" : "-1", - "x-ms-request-id" : "57c214cd-a6a1-4258-87d6-10c7061c4731", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "dfd2cabe-5999-4fe8-ac45-19332e53861f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen1/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "78b2e7ef-7b44-4c22-a642-54c323f57e97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "223da28a-74c6-4762-8d0d-77b2d681aaca", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12866,Microsoft.Compute/GetVMImageFromLocation30Min;73866", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:223da28a-74c6-4762-8d0d-77b2d681aaca", - "Expires" : "-1", - "x-ms-request-id" : "3bd56fcc-ce55-4054-9708-573d01863abd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen1/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "78b2e7ef-7b44-4c22-a642-54c323f57e97", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd097807-e35e-4620-8938-32690be079e8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11691", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56c1d145-64be-46c3-8b0f-5849287a4f65", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15958,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130537Z:56c1d145-64be-46c3-8b0f-5849287a4f65", - "Expires" : "-1", - "x-ms-request-id" : "f4d36e67-f66b-46bd-a5a0-8dc34b81e0af", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "bd097807-e35e-4620-8938-32690be079e8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b6b8c3b-8d38-4046-9c42-70772c8df464", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c95c5f24-ff24-4906-8cce-924efd4edf24", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12863,Microsoft.Compute/GetVMImageFromLocation30Min;73863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130538Z:c95c5f24-ff24-4906-8cce-924efd4edf24", - "Expires" : "-1", - "x-ms-request-id" : "8cf78725-0f2d-4921-944e-c683d36a4402", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "3b6b8c3b-8d38-4046-9c42-70772c8df464", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a468646a-d21e-4675-adbe-0f472fcb58bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c2da2be-e483-46cc-b99c-122864dfd75b", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12862,Microsoft.Compute/GetVMImageFromLocation30Min;73862", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130538Z:6c2da2be-e483-46cc-b99c-122864dfd75b", - "Expires" : "-1", - "x-ms-request-id" : "81188a38-3e20-4912-895e-c3c5204cb026", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "a468646a-d21e-4675-adbe-0f472fcb58bf", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a579745d-0dfb-4973-bc30-45bb5afb0e7d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cac4f47a-bcc1-4d0f-8d46-6d238713d78a", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12861,Microsoft.Compute/GetVMImageFromLocation30Min;73861", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130538Z:cac4f47a-bcc1-4d0f-8d46-6d238713d78a", - "Expires" : "-1", - "x-ms-request-id" : "8bb49499-c157-43c8-bd93-8d7bb2d3a9e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "a579745d-0dfb-4973-bc30-45bb5afb0e7d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb1228eb-6a77-474a-9fb8-9d9c62688dbb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09605bd1-0379-4dbd-8c87-30668ff75509", - "Date" : "Tue, 24 May 2022 13:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12860,Microsoft.Compute/GetVMImageFromLocation30Min;73860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130538Z:09605bd1-0379-4dbd-8c87-30668ff75509", - "Expires" : "-1", - "x-ms-request-id" : "8df61b6a-5129-4179-8095-88fca75f362a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "cb1228eb-6a77-474a-9fb8-9d9c62688dbb", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-hpc-byos/skus/gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "560b37c9-f64e-4cd4-a021-457d39d93366", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9a09071b-f21b-4696-9ec5-c09c63dc0c2c", - "Date" : "Tue, 24 May 2022 13:05:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12859,Microsoft.Compute/GetVMImageFromLocation30Min;73859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130538Z:9a09071b-f21b-4696-9ec5-c09c63dc0c2c", - "Expires" : "-1", - "x-ms-request-id" : "22e9c921-db39-48d0-b005-cc6fa89c2d17", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-hpc-byos/Skus/gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "560b37c9-f64e-4cd4-a021-457d39d93366", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3701be37-9ae4-4eef-af56-449a92ed2f60", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "466b7363-bfae-4b10-882d-5dfbfee525a4", - "Date" : "Tue, 24 May 2022 13:05:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9976,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:466b7363-bfae-4b10-882d-5dfbfee525a4", - "Expires" : "-1", - "x-ms-request-id" : "41692185-61d0-4db1-bd24-642667bd661a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "3701be37-9ae4-4eef-af56-449a92ed2f60", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1de50ace-9d99-4502-a9ef-4972af0dc72c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1984", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9bddd22c-4e18-42bb-b431-ca3d6d33b8c8", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15957,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:9bddd22c-4e18-42bb-b431-ca3d6d33b8c8", - "Expires" : "-1", - "x-ms-request-id" : "edf31f4c-371f-48f3-a45f-d008ff66e7d0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.07.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2020.07.23\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2020.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.10.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2020.10.23\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2021.01.14\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2021.02.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2022.01.28\"\r\n }\r\n]", - "x-ms-client-request-id" : "1de50ace-9d99-4502-a9ef-4972af0dc72c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2020.10.23?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d609708b-8e5f-4ed5-8e41-ca3f5a0fbff9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11718", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "018cae6f-c919-4406-9b3d-a65e511df529", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12856,Microsoft.Compute/GetVMImageFromLocation30Min;73856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:018cae6f-c919-4406-9b3d-a65e511df529", - "Expires" : "-1", - "x-ms-request-id" : "221a4b9f-7e9a-49e7-b881-63b86ef99fcb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.10.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2020.10.23\"\r\n}", - "x-ms-client-request-id" : "d609708b-8e5f-4ed5-8e41-ca3f5a0fbff9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2021.02.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1dc3eee-cc4c-4284-aefc-0e729203dd1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f02491e-8c0c-48c8-9443-2a44ad1e41e4", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12857,Microsoft.Compute/GetVMImageFromLocation30Min;73857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:8f02491e-8c0c-48c8-9443-2a44ad1e41e4", - "Expires" : "-1", - "x-ms-request-id" : "89f91333-9660-403d-a9d7-203ed33249ea", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2021.02.10\"\r\n}", - "x-ms-client-request-id" : "f1dc3eee-cc4c-4284-aefc-0e729203dd1f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2020.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14c98475-1949-476c-a0ff-5c3d37b8145d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9339df3-505e-408b-8715-762445a5c5f9", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12858,Microsoft.Compute/GetVMImageFromLocation30Min;73858", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:e9339df3-505e-408b-8715-762445a5c5f9", - "Expires" : "-1", - "x-ms-request-id" : "3e51bf37-4633-4a08-bc4e-1ae5c69f83b1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2020.09.24\"\r\n}", - "x-ms-client-request-id" : "14c98475-1949-476c-a0ff-5c3d37b8145d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2020.07.23?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a22905c1-1e91-4d23-9f12-02a0c0caa55a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "368568a9-6321-4d50-b1ff-ab619a337ed2", - "Date" : "Tue, 24 May 2022 13:05:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12855,Microsoft.Compute/GetVMImageFromLocation30Min;73855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:368568a9-6321-4d50-b1ff-ab619a337ed2", - "Expires" : "-1", - "x-ms-request-id" : "b50e124a-e9b6-4c81-95fc-f4d0565afdbf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.07.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2020.07.23\"\r\n}", - "x-ms-client-request-id" : "a22905c1-1e91-4d23-9f12-02a0c0caa55a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e004d1b8-cc05-4a8c-a605-81cd6bc1fc21", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b36b43de-9432-4a38-b0da-8e2f78fa1b79", - "Date" : "Tue, 24 May 2022 13:05:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12853,Microsoft.Compute/GetVMImageFromLocation30Min;73853", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:b36b43de-9432-4a38-b0da-8e2f78fa1b79", - "Expires" : "-1", - "x-ms-request-id" : "9bf5ab24-bff5-431d-8440-d57bf407bb88", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "e004d1b8-cc05-4a8c-a605-81cd6bc1fc21", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d132869e-ca7e-4592-9f22-460bbceb74f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "42a368ab-54aa-43df-80c5-f4e4e04d279f", - "Date" : "Tue, 24 May 2022 13:05:38 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12854,Microsoft.Compute/GetVMImageFromLocation30Min;73854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:42a368ab-54aa-43df-80c5-f4e4e04d279f", - "Expires" : "-1", - "x-ms-request-id" : "03e56a5d-a303-446b-b474-426bb5b1fece", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "d132869e-ca7e-4592-9f22-460bbceb74f4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen1/versions/2021.01.14?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "be43f2f3-3a95-4e40-bc5d-ccac848b1498", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "754", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "034fc6a3-da1f-4238-9050-c2786a798c9c", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12852,Microsoft.Compute/GetVMImageFromLocation30Min;73852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:034fc6a3-da1f-4238-9050-c2786a798c9c", - "Expires" : "-1", - "x-ms-request-id" : "de0d53de-92d9-4df0-97d7-7419ffc71a4b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen1/Versions/2021.01.14\"\r\n}", - "x-ms-client-request-id" : "be43f2f3-3a95-4e40-bc5d-ccac848b1498", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4a82618-1db5-49f5-b614-52b342a8dd12", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1984", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11717", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a60a8c5c-cb9b-4936-a4de-a6fd7f29f8c4", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15956,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130539Z:a60a8c5c-cb9b-4936-a4de-a6fd7f29f8c4", - "Expires" : "-1", - "x-ms-request-id" : "a61d0d0b-2b99-4d21-863f-4ed8b66cb41b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.07.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2020.07.23\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2020.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.10.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2020.10.23\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2021.01.14\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2021.02.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2022.01.28\"\r\n }\r\n]", - "x-ms-client-request-id" : "d4a82618-1db5-49f5-b614-52b342a8dd12", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2020.07.23?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e791bff-274e-417f-bc57-b86398a166e1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11690", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b34f24eb-f14e-49b4-93e0-02a83454be25", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12851,Microsoft.Compute/GetVMImageFromLocation30Min;73851", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:b34f24eb-f14e-49b4-93e0-02a83454be25", - "Expires" : "-1", - "x-ms-request-id" : "99c36a10-31e7-449d-8077-0d12e8f37136", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.07.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2020.07.23\"\r\n}", - "x-ms-client-request-id" : "8e791bff-274e-417f-bc57-b86398a166e1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2020.10.23?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5362f52f-14ae-4b28-9824-14bad2d03071", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a92cf21c-3b55-4117-8716-c2420acaa1e3", - "Date" : "Tue, 24 May 2022 13:05:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12849,Microsoft.Compute/GetVMImageFromLocation30Min;73849", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:a92cf21c-3b55-4117-8716-c2420acaa1e3", - "Expires" : "-1", - "x-ms-request-id" : "bdc029fc-6283-4acf-b097-c6ed272935a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.10.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2020.10.23\"\r\n}", - "x-ms-client-request-id" : "5362f52f-14ae-4b28-9824-14bad2d03071", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2020.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69c235e3-0370-4ca3-96ca-368ab760a673", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "56640f58-ea17-49c3-a6be-b1d68a99c4a1", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12850,Microsoft.Compute/GetVMImageFromLocation30Min;73850", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:56640f58-ea17-49c3-a6be-b1d68a99c4a1", - "Expires" : "-1", - "x-ms-request-id" : "27b304f7-7c2b-464e-8fd1-ee26f830de7a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2020.09.24\"\r\n}", - "x-ms-client-request-id" : "69c235e3-0370-4ca3-96ca-368ab760a673", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3158b83-aa82-455e-b9e0-27e7fdab580a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9950484e-99e7-43df-9333-d2bec4011da5", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12848,Microsoft.Compute/GetVMImageFromLocation30Min;73848", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:9950484e-99e7-43df-9333-d2bec4011da5", - "Expires" : "-1", - "x-ms-request-id" : "c1c73320-b66b-434f-8efa-c0dee91f429b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "a3158b83-aa82-455e-b9e0-27e7fdab580a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2021.02.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6cc5e85-213a-46e3-ba37-ac612cd79e15", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77337b64-8c59-4667-b038-0100b20982bd", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12847,Microsoft.Compute/GetVMImageFromLocation30Min;73847", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:77337b64-8c59-4667-b038-0100b20982bd", - "Expires" : "-1", - "x-ms-request-id" : "135df9da-5287-406a-a8cc-dfe58aa2bfa7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2021.02.10\"\r\n}", - "x-ms-client-request-id" : "c6cc5e85-213a-46e3-ba37-ac612cd79e15", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f6245a6-91f5-41c2-b404-405840d7bad8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ee747df2-431d-48f4-b28a-bce3b5c89080", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12846,Microsoft.Compute/GetVMImageFromLocation30Min;73846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:ee747df2-431d-48f4-b28a-bce3b5c89080", - "Expires" : "-1", - "x-ms-request-id" : "d6be2e8f-e2c0-499d-9d4e-021fb1835d36", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "6f6245a6-91f5-41c2-b404-405840d7bad8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp1-sapcal/skus/gen2/versions/2021.01.14?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e2f15de-b40d-4276-8dbe-93bda34b93ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "747", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da75a552-1bed-4fc3-98ad-142086b9ee74", - "Date" : "Tue, 24 May 2022 13:05:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12845,Microsoft.Compute/GetVMImageFromLocation30Min;73845", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:da75a552-1bed-4fc3-98ad-142086b9ee74", - "Expires" : "-1", - "x-ms-request-id" : "015d6364-7b86-44fa-b29e-d5d3804be6f8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp1-sapcal/Skus/gen2/Versions/2021.01.14\"\r\n}", - "x-ms-client-request-id" : "8e2f15de-b40d-4276-8dbe-93bda34b93ff", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f7237c2-ef91-4f00-ab0a-5ee46e2becaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ecee8eb6-84fb-41d1-a6cc-572feba228ff", - "Date" : "Tue, 24 May 2022 13:05:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9975,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:ecee8eb6-84fb-41d1-a6cc-572feba228ff", - "Expires" : "-1", - "x-ms-request-id" : "1306d874-7483-4c0f-8bd6-e63d5b1e61a2", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "2f7237c2-ef91-4f00-ab0a-5ee46e2becaa", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aac0d373-9400-441f-97b1-bd2076ffe514", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7064ce21-80a3-4c2a-9ef1-945380963e89", - "Date" : "Tue, 24 May 2022 13:05:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15955,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130540Z:7064ce21-80a3-4c2a-9ef1-945380963e89", - "Expires" : "-1", - "x-ms-request-id" : "923af9da-e118-47df-ab8c-d1813586cf8d", - "Body" : "[]", - "x-ms-client-request-id" : "aac0d373-9400-441f-97b1-bd2076ffe514", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d09371f6-667a-4055-8ffe-f5a05fff97dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "279", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e450754-2b18-4d60-aac9-add93a4e1656", - "Date" : "Tue, 24 May 2022 13:05:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15954,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130541Z:8e450754-2b18-4d60-aac9-add93a4e1656", - "Expires" : "-1", - "x-ms-request-id" : "30756aaa-859c-4707-9730-61c8e3bc7b6b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2/Skus/gen2/Versions/2021.06.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "d09371f6-667a-4055-8ffe-f5a05fff97dc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8647cb6e-fcea-4355-99ca-7307025c4ef5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "861", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17993902-6fe7-421f-857a-f0c0de99ce00", - "Date" : "Tue, 24 May 2022 13:05:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12844,Microsoft.Compute/GetVMImageFromLocation30Min;73844", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130541Z:17993902-6fe7-421f-857a-f0c0de99ce00", - "Expires" : "-1", - "x-ms-request-id" : "6cee3c33-a029-4707-bb6b-ff8be2fb6328", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "8647cb6e-fcea-4355-99ca-7307025c4ef5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-basic/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b5ddd41-4226-4952-97b2-8bf00e6f836c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "765", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "53f62291-6d53-4369-ab42-77d9e223b1b9", - "Date" : "Tue, 24 May 2022 13:05:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9974,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130541Z:53f62291-6d53-4369-ab42-77d9e223b1b9", - "Expires" : "-1", - "x-ms-request-id" : "650f80c1-2db2-408e-aad1-eb3e4afd7576", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-basic/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-basic/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "1b5ddd41-4226-4952-97b2-8bf00e6f836c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-basic/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df354576-efa5-48f8-b37a-679e8daba33c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fbbfbbc2-e1b3-48ea-8bea-4ac09d22fc31", - "Date" : "Tue, 24 May 2022 13:05:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15953,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130541Z:fbbfbbc2-e1b3-48ea-8bea-4ac09d22fc31", - "Expires" : "-1", - "x-ms-request-id" : "0d34bc96-40d6-4ecc-bc18-38375c0460cd", - "Body" : "[]", - "x-ms-client-request-id" : "df354576-efa5-48f8-b37a-679e8daba33c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-basic/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "257051b7-258a-405b-bc3c-04e744a1150e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "285", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35e7986a-5dbb-4c7f-93be-29857cd96538", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15952,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130542Z:35e7986a-5dbb-4c7f-93be-29857cd96538", - "Expires" : "-1", - "x-ms-request-id" : "a9e2e393-c09e-4cdd-bfbb-5abc03a1e7b8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-basic/Skus/gen2/Versions/2021.06.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "257051b7-258a-405b-bc3c-04e744a1150e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-basic/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b416349-d27c-4253-9f3b-286483dd7291", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a35276a-236b-42ba-ad1e-98f0f1f99c23", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12843,Microsoft.Compute/GetVMImageFromLocation30Min;73843", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130542Z:8a35276a-236b-42ba-ad1e-98f0f1f99c23", - "Expires" : "-1", - "x-ms-request-id" : "f5cddc5e-d49c-4505-ba52-8194ed18bf1a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-basic/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "1b416349-d27c-4253-9f3b-286483dd7291", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46e499b8-417f-4b77-9d80-cd85753b9610", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "763", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11882", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ffedb49a-8e75-4a85-b7a7-f137421d50b0", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9973,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130542Z:ffedb49a-8e75-4a85-b7a7-f137421d50b0", - "Expires" : "-1", - "x-ms-request-id" : "c742eccf-463b-4127-98d6-46b490738024", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "46e499b8-417f-4b77-9d80-cd85753b9610", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62b22531-f7e7-4638-8022-0675f5c1d0bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4df7377-4e5f-4473-b7cd-1fb507e01f3e", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15951,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:d4df7377-4e5f-4473-b7cd-1fb507e01f3e", - "Expires" : "-1", - "x-ms-request-id" : "f8ac584f-a0ca-4fb5-b5a5-c5c30d440771", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.04.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "62b22531-f7e7-4638-8022-0675f5c1d0bc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen1/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "afc95c7d-6db5-4634-9ae9-2be07c690be1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39614d1a-c3b9-4ffe-940f-4beee7603507", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12841,Microsoft.Compute/GetVMImageFromLocation30Min;73841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:39614d1a-c3b9-4ffe-940f-4beee7603507", - "Expires" : "-1", - "x-ms-request-id" : "4c5d2781-395b-4d54-9ec0-780be9b79aa0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "afc95c7d-6db5-4634-9ae9-2be07c690be1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen1/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e22da641-7df5-4d2c-b16a-de9fbf27dad2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64ea7818-2a56-47f1-b055-3418cc441984", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12842,Microsoft.Compute/GetVMImageFromLocation30Min;73842", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:64ea7818-2a56-47f1-b055-3418cc441984", - "Expires" : "-1", - "x-ms-request-id" : "1fba680e-4005-422c-b855-86620e195c8a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "e22da641-7df5-4d2c-b16a-de9fbf27dad2", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00d26496-fe0a-4b5c-8a55-6ae1ed6fd1ff", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11716", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c4a909c-b79f-4e32-852e-52b76841ce59", - "Date" : "Tue, 24 May 2022 13:05:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12839,Microsoft.Compute/GetVMImageFromLocation30Min;73839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:6c4a909c-b79f-4e32-852e-52b76841ce59", - "Expires" : "-1", - "x-ms-request-id" : "430b2110-7b9b-43dc-866c-8d5e8f08bebc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "00d26496-fe0a-4b5c-8a55-6ae1ed6fd1ff", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aa3b98f-ff55-4e44-83a6-0c1a866f0456", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11809", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9be1ecbc-b7f2-4353-bacc-ffd57cf0d4de", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12840,Microsoft.Compute/GetVMImageFromLocation30Min;73840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:9be1ecbc-b7f2-4353-bacc-ffd57cf0d4de", - "Expires" : "-1", - "x-ms-request-id" : "bc13eb4d-68fe-4116-80dd-cafe7535c774", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "6aa3b98f-ff55-4e44-83a6-0c1a866f0456", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c17e5587-bc68-467c-ae6f-012c8749d808", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1042", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "164ceba1-a44b-4284-a1c7-fa29cf719275", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12838,Microsoft.Compute/GetVMImageFromLocation30Min;73838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:164ceba1-a44b-4284-a1c7-fa29cf719275", - "Expires" : "-1", - "x-ms-request-id" : "6df24aa6-24b7-4c75-aff1-aa9e5820b286", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "c17e5587-bc68-467c-ae6f-012c8749d808", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24567ddd-1986-48a3-8006-1c27edfc4fac", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "885e140e-c88f-46ad-aaae-fa1b05724373", - "Date" : "Tue, 24 May 2022 13:05:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15950,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130543Z:885e140e-c88f-46ad-aaae-fa1b05724373", - "Expires" : "-1", - "x-ms-request-id" : "3b809f69-ef57-4986-a965-390494310a0f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.04.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "24567ddd-1986-48a3-8006-1c27edfc4fac", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46118d11-4332-4142-9973-697d9e88fb00", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9c8ce8e-31b8-4a57-bb20-df8ccd1700e1", - "Date" : "Tue, 24 May 2022 13:05:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12837,Microsoft.Compute/GetVMImageFromLocation30Min;73837", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:e9c8ce8e-31b8-4a57-bb20-df8ccd1700e1", - "Expires" : "-1", - "x-ms-request-id" : "d01d16f2-9ae1-42e6-887b-9eb78df2d814", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "46118d11-4332-4142-9973-697d9e88fb00", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen2/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbde4e5a-8265-4efa-b441-849c19bda710", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99b1bb4e-79cd-4e74-8d77-d79a98e3b006", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12835,Microsoft.Compute/GetVMImageFromLocation30Min;73835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:99b1bb4e-79cd-4e74-8d77-d79a98e3b006", - "Expires" : "-1", - "x-ms-request-id" : "43ca76c3-82f2-4000-8453-953a32c23140", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "cbde4e5a-8265-4efa-b441-849c19bda710", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cdab04c-a5be-4ba5-87d5-50a2479cd296", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33e9b260-7ae5-402c-a9fc-867dd8e0089b", - "Date" : "Tue, 24 May 2022 13:05:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12836,Microsoft.Compute/GetVMImageFromLocation30Min;73836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:33e9b260-7ae5-402c-a9fc-867dd8e0089b", - "Expires" : "-1", - "x-ms-request-id" : "e851596c-7be2-499a-b752-140907117fb2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "3cdab04c-a5be-4ba5-87d5-50a2479cd296", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0de40458-7e7c-4f5f-8c07-fd97d906bbc9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11715", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66108157-c74f-4f36-9c0e-27a999a1977d", - "Date" : "Tue, 24 May 2022 13:05:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12834,Microsoft.Compute/GetVMImageFromLocation30Min;73834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:66108157-c74f-4f36-9c0e-27a999a1977d", - "Expires" : "-1", - "x-ms-request-id" : "b53fd000-05da-4c06-b0cb-e34d8f819a66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "0de40458-7e7c-4f5f-8c07-fd97d906bbc9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca0c17aa-79c9-48ff-83d7-2391d1f8515f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11689", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c07454f6-4ec8-44a9-8c0c-30ef98775a52", - "Date" : "Tue, 24 May 2022 13:05:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12833,Microsoft.Compute/GetVMImageFromLocation30Min;73833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:c07454f6-4ec8-44a9-8c0c-30ef98775a52", - "Expires" : "-1", - "x-ms-request-id" : "43f098dc-bfde-4ed5-a766-7ec201645065", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "ca0c17aa-79c9-48ff-83d7-2391d1f8515f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "edee162e-7e8a-4ab1-a154-74e0bbf03ffd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "775", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d15b0437-e765-47e5-93bf-391eff01eb58", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9972,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:d15b0437-e765-47e5-93bf-391eff01eb58", - "Expires" : "-1", - "x-ms-request-id" : "d09d1ecb-a63c-484e-a60a-952cae3094d8", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "edee162e-7e8a-4ab1-a154-74e0bbf03ffd", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3155577e-588f-41d1-bb7a-58128816f15b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b06381e1-0ef9-4a63-8c04-f0b273a36976", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15949,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:b06381e1-0ef9-4a63-8c04-f0b273a36976", - "Expires" : "-1", - "x-ms-request-id" : "4c542807-2f11-4434-b5e2-6bc2bda6a27d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.04.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1/Versions/2021.04.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.25\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1/Versions/2021.10.25\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1/Versions/2022.01.26\"\r\n }\r\n]", - "x-ms-client-request-id" : "3155577e-588f-41d1-bb7a-58128816f15b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen1/versions/2021.04.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fec2f817-de22-4f68-a265-ff10ec05eb5a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2211a994-5407-45ae-9376-6d4fb02fe66a", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12832,Microsoft.Compute/GetVMImageFromLocation30Min;73832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:2211a994-5407-45ae-9376-6d4fb02fe66a", - "Expires" : "-1", - "x-ms-request-id" : "24117ec3-e797-40aa-8a98-1e362702727a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.04.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1/Versions/2021.04.05\"\r\n}", - "x-ms-client-request-id" : "fec2f817-de22-4f68-a265-ff10ec05eb5a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4700ccba-2937-4c8c-a9a1-20428222ea13", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "070c237f-7cca-45e3-b846-0d3d7ebb4e80", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12830,Microsoft.Compute/GetVMImageFromLocation30Min;73830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:070c237f-7cca-45e3-b846-0d3d7ebb4e80", - "Expires" : "-1", - "x-ms-request-id" : "bfdefbd5-db8e-4ac3-aa9a-58f0ab3b2973", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "4700ccba-2937-4c8c-a9a1-20428222ea13", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen1/versions/2021.10.25?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "239a88a9-93e6-4688-8416-106975579239", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8a7fbf7-698f-47db-a6e3-4c54d344b960", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12831,Microsoft.Compute/GetVMImageFromLocation30Min;73831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130544Z:a8a7fbf7-698f-47db-a6e3-4c54d344b960", - "Expires" : "-1", - "x-ms-request-id" : "e9d9817f-5306-4045-b926-24397922a5cc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.25\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen1/Versions/2021.10.25\"\r\n}", - "x-ms-client-request-id" : "239a88a9-93e6-4688-8416-106975579239", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88d2aa04-ba04-44e2-a7ff-70b568936e9c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24191fb1-7de9-4730-8d55-730feb5a1fe1", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15948,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130545Z:24191fb1-7de9-4730-8d55-730feb5a1fe1", - "Expires" : "-1", - "x-ms-request-id" : "b3dcbfbf-e2e7-46ce-afa6-24f476301706", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.04.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2/Versions/2021.04.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.25\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2/Versions/2021.10.25\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2/Versions/2022.01.26\"\r\n }\r\n]", - "x-ms-client-request-id" : "88d2aa04-ba04-44e2-a7ff-70b568936e9c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen2/versions/2021.10.25?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae04a13f-c3e5-4ea8-a56b-17582376c032", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c03e92d-00b5-4916-90ac-4b1d4384c839", - "Date" : "Tue, 24 May 2022 13:05:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12828,Microsoft.Compute/GetVMImageFromLocation30Min;73828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130545Z:6c03e92d-00b5-4916-90ac-4b1d4384c839", - "Expires" : "-1", - "x-ms-request-id" : "f2021f3b-d504-41a1-a729-5dfc9d6c3829", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.10.25\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2/Versions/2021.10.25\"\r\n}", - "x-ms-client-request-id" : "ae04a13f-c3e5-4ea8-a56b-17582376c032", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen2/versions/2021.04.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c820e44c-b1cc-4367-a135-87ab3e1f387e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbe42aa0-be0a-4f81-bf66-fd9ec60f20a4", - "Date" : "Tue, 24 May 2022 13:05:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12829,Microsoft.Compute/GetVMImageFromLocation30Min;73829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130545Z:cbe42aa0-be0a-4f81-bf66-fd9ec60f20a4", - "Expires" : "-1", - "x-ms-request-id" : "f4d588cf-6e3b-4833-b684-231b4033f4a9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.04.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2/Versions/2021.04.05\"\r\n}", - "x-ms-client-request-id" : "c820e44c-b1cc-4367-a135-87ab3e1f387e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-chost-byos/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d78c0b2-f0ad-4c2c-9dd6-d84616d44586", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11863", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1064ffe6-c66c-4c2a-a442-6d4e90c51bff", - "Date" : "Tue, 24 May 2022 13:05:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12827,Microsoft.Compute/GetVMImageFromLocation30Min;73827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130545Z:1064ffe6-c66c-4c2a-a442-6d4e90c51bff", - "Expires" : "-1", - "x-ms-request-id" : "2b781347-b600-4f13-9bbb-61ae986666f2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-chost-byos/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "4d78c0b2-f0ad-4c2c-9dd6-d84616d44586", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74fc7341-2f84-4733-b633-292ce658c069", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11688", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b04d81c-f807-4e40-b659-bf788ea9f873", - "Date" : "Tue, 24 May 2022 13:05:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9971,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130545Z:7b04d81c-f807-4e40-b659-bf788ea9f873", - "Expires" : "-1", - "x-ms-request-id" : "467c994f-7eed-47a4-998a-04ae1596e20b", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "74fc7341-2f84-4733-b633-292ce658c069", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f349868-3b0c-4c49-9d0c-175ae792c022", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6489df2d-4560-4461-a410-e86e99a028c1", - "Date" : "Tue, 24 May 2022 13:05:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15947,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130546Z:6489df2d-4560-4461-a410-e86e99a028c1", - "Expires" : "-1", - "x-ms-request-id" : "6cd8fc01-3870-431b-93e7-1c64b5c9482e", - "Body" : "[]", - "x-ms-client-request-id" : "0f349868-3b0c-4c49-9d0c-175ae792c022", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2888407-4685-491c-9de9-985d1dd4e716", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "283", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11914", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1771147d-cb5f-4c82-894f-6c422a203c22", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15946,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130546Z:1771147d-cb5f-4c82-894f-6c422a203c22", - "Expires" : "-1", - "x-ms-request-id" : "3cde97d0-c28c-47c2-85c8-b24cc9390698", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc/Skus/gen2/Versions/2021.06.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "b2888407-4685-491c-9de9-985d1dd4e716", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a52485d2-3573-4168-a84e-ecb83e9d9d95", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c89255d1-0a0b-4a0f-9ff5-98f8e3cd5d01", - "Date" : "Tue, 24 May 2022 13:05:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12826,Microsoft.Compute/GetVMImageFromLocation30Min;73826", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130546Z:c89255d1-0a0b-4a0f-9ff5-98f8e3cd5d01", - "Expires" : "-1", - "x-ms-request-id" : "6f6cbbdb-38d6-4cad-958c-604a12f36218", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "a52485d2-3573-4168-a84e-ecb83e9d9d95", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfcbfdf2-e5d7-402c-bf64-330b7c654459", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ec1f546c-1ffc-4be7-b75c-c6b14726a9b9", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9970,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130546Z:ec1f546c-1ffc-4be7-b75c-c6b14726a9b9", - "Expires" : "-1", - "x-ms-request-id" : "7cae0337-b021-45c1-acd6-8fcd275098dd", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "bfcbfdf2-e5d7-402c-bf64-330b7c654459", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a0b229e-1cc3-4a45-89c1-73a542f8f575", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11892", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6db8a74-1491-4a34-bdc4-c5e91468dd8c", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15945,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:f6db8a74-1491-4a34-bdc4-c5e91468dd8c", - "Expires" : "-1", - "x-ms-request-id" : "c921943c-0c0b-4ddd-8215-09b34ec8e78c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.04.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "9a0b229e-1cc3-4a45-89c1-73a542f8f575", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen1/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c63b00fe-aa68-4d0b-ab13-1a3450e54302", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11686", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a86ea55-f82e-49b1-836d-091947ec19d8", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12825,Microsoft.Compute/GetVMImageFromLocation30Min;73825", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:4a86ea55-f82e-49b1-836d-091947ec19d8", - "Expires" : "-1", - "x-ms-request-id" : "972cfc5e-b23b-4a04-8f93-edbde652598a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "c63b00fe-aa68-4d0b-ab13-1a3450e54302", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen1/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a21f727e-61ad-4f49-8ffe-701de83c1736", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11686", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f48fee01-cc6f-469f-ab71-f1ace490ba90", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12824,Microsoft.Compute/GetVMImageFromLocation30Min;73824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:f48fee01-cc6f-469f-ab71-f1ace490ba90", - "Expires" : "-1", - "x-ms-request-id" : "93466773-73ef-475f-b398-a385d99d06d7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "a21f727e-61ad-4f49-8ffe-701de83c1736", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a10e6356-a88b-45b0-8160-dadbb6523ab5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11714", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1428510c-89ba-4cfa-9bc2-11cee7d93b95", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12823,Microsoft.Compute/GetVMImageFromLocation30Min;73823", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:1428510c-89ba-4cfa-9bc2-11cee7d93b95", - "Expires" : "-1", - "x-ms-request-id" : "de105267-4686-4647-a7a4-5731377a1478", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "a10e6356-a88b-45b0-8160-dadbb6523ab5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d281eb2a-286e-4a32-a661-8568747b6874", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6816b89b-9e0c-410f-90d5-747067df72ad", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12822,Microsoft.Compute/GetVMImageFromLocation30Min;73822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:6816b89b-9e0c-410f-90d5-747067df72ad", - "Expires" : "-1", - "x-ms-request-id" : "172c12f3-1bff-4589-a120-3790ed1403f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "d281eb2a-286e-4a32-a661-8568747b6874", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80e5f865-f7db-463e-8d23-ef15affa681e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af107e1f-e55e-43f8-8c48-4aa863e31fb3", - "Date" : "Tue, 24 May 2022 13:05:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12821,Microsoft.Compute/GetVMImageFromLocation30Min;73821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:af107e1f-e55e-43f8-8c48-4aa863e31fb3", - "Expires" : "-1", - "x-ms-request-id" : "dca8b3ec-f39e-4da2-93da-31f3eede6841", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "80e5f865-f7db-463e-8d23-ef15affa681e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74f74296-1621-4309-ad90-80dade00d7dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11713", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d780e946-d95f-438e-a3ee-60b1dd852600", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15944,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130547Z:d780e946-d95f-438e-a3ee-60b1dd852600", - "Expires" : "-1", - "x-ms-request-id" : "a34bc6eb-444d-4675-b0a3-e84a98b20bca", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.04.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "74f74296-1621-4309-ad90-80dade00d7dd", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d328e58-efdc-45e2-b4e5-ac40f30314fd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b9c1d2e6-9001-4e40-802c-81c258d37cec", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12820,Microsoft.Compute/GetVMImageFromLocation30Min;73820", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:b9c1d2e6-9001-4e40-802c-81c258d37cec", - "Expires" : "-1", - "x-ms-request-id" : "d09c264c-bdd8-4a1c-bde3-e745ad7f7921", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "4d328e58-efdc-45e2-b4e5-ac40f30314fd", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c0a6f51-9f19-4c49-aba5-ff81c3d1bc7b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5b914e0-07f3-4211-ae15-e612c4227dfc", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12819,Microsoft.Compute/GetVMImageFromLocation30Min;73819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:a5b914e0-07f3-4211-ae15-e612c4227dfc", - "Expires" : "-1", - "x-ms-request-id" : "239f59a5-6df2-4d52-b188-6461295fbe99", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "5c0a6f51-9f19-4c49-aba5-ff81c3d1bc7b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b28ac79b-15fa-404f-9d10-bbf5c29fa2f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "65054da4-370e-4922-9471-d70850d83891", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12818,Microsoft.Compute/GetVMImageFromLocation30Min;73818", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:65054da4-370e-4922-9471-d70850d83891", - "Expires" : "-1", - "x-ms-request-id" : "eff08aa5-d290-40c9-9ce1-c20edfb3e1c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "b28ac79b-15fa-404f-9d10-bbf5c29fa2f3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7b7ea9e-ee42-4c18-976a-361c2e546bd3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "141c8fbb-4575-4184-bb5b-857ee5e982f6", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12817,Microsoft.Compute/GetVMImageFromLocation30Min;73817", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:141c8fbb-4575-4184-bb5b-857ee5e982f6", - "Expires" : "-1", - "x-ms-request-id" : "4303d637-d1f5-43c9-8747-e2b852d9bf7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "e7b7ea9e-ee42-4c18-976a-361c2e546bd3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-hpc-byos/skus/gen2/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fa9bf3b-a43b-4eea-9d01-876f9890bad8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "144e2ba1-5099-453c-b81a-d44525fe305a", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12816,Microsoft.Compute/GetVMImageFromLocation30Min;73816", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:144e2ba1-5099-453c-b81a-d44525fe305a", - "Expires" : "-1", - "x-ms-request-id" : "2368db33-775f-4a56-b12a-dc2b7aad66ed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-hpc-byos/Skus/gen2/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "8fa9bf3b-a43b-4eea-9d01-876f9890bad8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-monitoring/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc10075a-76a0-48b2-ba20-8640c74bf000", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "775", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "06d02cfc-cd97-4a34-813a-f9165044dd56", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9969,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:06d02cfc-cd97-4a34-813a-f9165044dd56", - "Expires" : "-1", - "x-ms-request-id" : "4b4b4b54-d627-4f09-ba6d-0f4604074696", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "cc10075a-76a0-48b2-ba20-8640c74bf000", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-monitoring/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a13e3c5-29f9-4799-ab2b-d3352dccc5cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "290", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7566927-4ba9-4cc4-95e8-6a4611ddeedb", - "Date" : "Tue, 24 May 2022 13:05:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15943,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:a7566927-4ba9-4cc4-95e8-6a4611ddeedb", - "Expires" : "-1", - "x-ms-request-id" : "65530ed2-3854-443b-9820-10adb6212212", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring/Skus/gen1/Versions/2021.02.17\"\r\n }\r\n]", - "x-ms-client-request-id" : "4a13e3c5-29f9-4799-ab2b-d3352dccc5cf", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-monitoring/skus/gen1/versions/2021.02.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b07ff25e-4d6d-42a0-b66d-844ad7be4ed1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "758", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d7eb039-8b24-4c33-bdc2-64d3a2bea164", - "Date" : "Tue, 24 May 2022 13:05:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12815,Microsoft.Compute/GetVMImageFromLocation30Min;73815", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130548Z:8d7eb039-8b24-4c33-bdc2-64d3a2bea164", - "Expires" : "-1", - "x-ms-request-id" : "edafd8ef-c66c-4055-803e-56b754de0c46", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring/Skus/gen1/Versions/2021.02.17\"\r\n}", - "x-ms-client-request-id" : "b07ff25e-4d6d-42a0-b66d-844ad7be4ed1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-monitoring/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0af85cf2-e17f-4bc4-802e-6789ca5df852", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "290", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9eb6f68a-f7c4-4232-ad0c-46530fa55e90", - "Date" : "Tue, 24 May 2022 13:05:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15942,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130549Z:9eb6f68a-f7c4-4232-ad0c-46530fa55e90", - "Expires" : "-1", - "x-ms-request-id" : "9c7ffe21-2919-40bd-ab71-4d76ccabb02d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring/Skus/gen2/Versions/2021.02.17\"\r\n }\r\n]", - "x-ms-client-request-id" : "0af85cf2-e17f-4bc4-802e-6789ca5df852", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp2-monitoring/skus/gen2/versions/2021.02.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f45aef8-f7f0-49c2-88f3-8404df8d4691", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ca27cf1-325a-4139-b069-1ffa23164e06", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12814,Microsoft.Compute/GetVMImageFromLocation30Min;73814", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130549Z:1ca27cf1-325a-4139-b069-1ffa23164e06", - "Expires" : "-1", - "x-ms-request-id" : "1f552a6a-7819-4c69-acd9-c39e42ea7688", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp2-monitoring/Skus/gen2/Versions/2021.02.17\"\r\n}", - "x-ms-client-request-id" : "1f45aef8-f7f0-49c2-88f3-8404df8d4691", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fb8d2fb-3fc8-49ea-9b3c-83fb58a5830a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "753", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c70c0008-53fc-4dd6-b965-896688545eed", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9968,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130549Z:c70c0008-53fc-4dd6-b965-896688545eed", - "Expires" : "-1", - "x-ms-request-id" : "2823d477-015a-4d4c-bdb9-8121b8b68784", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "2fb8d2fb-3fc8-49ea-9b3c-83fb58a5830a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "28238bff-573b-4a4b-98b8-a3bc2f65e78c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "430f33d6-b4d3-46ba-ad18-27d4fa006ae2", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15941,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:430f33d6-b4d3-46ba-ad18-27d4fa006ae2", - "Expires" : "-1", - "x-ms-request-id" : "e0bee2c6-613d-4f04-b2a4-1febc231cd41", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2021.12.19\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "28238bff-573b-4a4b-98b8-a3bc2f65e78c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52297247-f6c3-485e-ad06-3c5cbb01e697", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3db5d9b8-aa91-4b5a-9cba-4b853dfb4205", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12812,Microsoft.Compute/GetVMImageFromLocation30Min;73812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:3db5d9b8-aa91-4b5a-9cba-4b853dfb4205", - "Expires" : "-1", - "x-ms-request-id" : "1471fe3f-444f-4ca9-9543-5dc3a2de4238", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "52297247-f6c3-485e-ad06-3c5cbb01e697", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen1/versions/2021.12.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "416eae6c-ea36-4234-85de-7e419e8ee230", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "51880944-42c3-4a59-874c-2e10dd445c55", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12813,Microsoft.Compute/GetVMImageFromLocation30Min;73813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:51880944-42c3-4a59-874c-2e10dd445c55", - "Expires" : "-1", - "x-ms-request-id" : "a67490a7-61be-4dd9-a97d-6df6f9ab7516", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2021.12.19\"\r\n}", - "x-ms-client-request-id" : "416eae6c-ea36-4234-85de-7e419e8ee230", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8f49df1-0bdd-415b-b608-434e72e5ff18", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1b28346-5b3d-40c7-8996-809484640a54", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12811,Microsoft.Compute/GetVMImageFromLocation30Min;73811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:a1b28346-5b3d-40c7-8996-809484640a54", - "Expires" : "-1", - "x-ms-request-id" : "d7f8f9e3-29e7-4580-b0f5-2f8e900529cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "c8f49df1-0bdd-415b-b608-434e72e5ff18", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af10c31b-4653-4e81-a0b1-13ecd9d81179", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6c16b0e3-0d1a-4dbf-bc76-54f89228f8b1", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12810,Microsoft.Compute/GetVMImageFromLocation30Min;73810", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:6c16b0e3-0d1a-4dbf-bc76-54f89228f8b1", - "Expires" : "-1", - "x-ms-request-id" : "0824261b-dec5-4ecf-867b-3c2ca7a0360d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "af10c31b-4653-4e81-a0b1-13ecd9d81179", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "49274f8d-d529-40f7-a0a5-e433416a369f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11818", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fae0878e-ef1a-4856-9959-24272cb8f6d9", - "Date" : "Tue, 24 May 2022 13:05:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15940,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:fae0878e-ef1a-4856-9959-24272cb8f6d9", - "Expires" : "-1", - "x-ms-request-id" : "a378a66e-96f3-46b1-bc8f-feedbdfe5af1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2021.12.19\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "49274f8d-d529-40f7-a0a5-e433416a369f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen2/versions/2021.12.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2620ae3d-d45f-48eb-b201-fc2b5e750cd1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "955", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11780", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "67443b86-3d4a-4439-9d59-b16b4233b3d9", - "Date" : "Tue, 24 May 2022 13:05:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12808,Microsoft.Compute/GetVMImageFromLocation30Min;73808", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:67443b86-3d4a-4439-9d59-b16b4233b3d9", - "Expires" : "-1", - "x-ms-request-id" : "1a4b729c-6a02-4e79-a191-6d041168afb0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2021.12.19\"\r\n}", - "x-ms-client-request-id" : "2620ae3d-d45f-48eb-b201-fc2b5e750cd1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "63d66e16-913a-45d5-938f-e5782a69936c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "955", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11795", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ab02ae5-31fe-4b96-93a1-f58a7f283b4e", - "Date" : "Tue, 24 May 2022 13:05:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12809,Microsoft.Compute/GetVMImageFromLocation30Min;73809", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:5ab02ae5-31fe-4b96-93a1-f58a7f283b4e", - "Expires" : "-1", - "x-ms-request-id" : "7a62d682-c22b-4c46-b7dd-41338a33bfbd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "63d66e16-913a-45d5-938f-e5782a69936c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d8a3fea-bb73-463b-ae06-fa0fdad69135", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "955", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "37614454-eca9-43f0-8bd9-7fda73cdc65c", - "Date" : "Tue, 24 May 2022 13:05:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12806,Microsoft.Compute/GetVMImageFromLocation30Min;73806", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:37614454-eca9-43f0-8bd9-7fda73cdc65c", - "Expires" : "-1", - "x-ms-request-id" : "5eaa9345-0ccb-4b7f-a2c0-aa892672ee50", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "9d8a3fea-bb73-463b-ae06-fa0fdad69135", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69350c9b-e001-41bc-a3c1-e6339908ff9d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "955", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11780", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "64dcbfee-8828-4f16-9fd2-6425862c61cf", - "Date" : "Tue, 24 May 2022 13:05:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12807,Microsoft.Compute/GetVMImageFromLocation30Min;73807", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130550Z:64dcbfee-8828-4f16-9fd2-6425862c61cf", - "Expires" : "-1", - "x-ms-request-id" : "6a338439-4c3e-491e-ae9c-7b3953c691e0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"SecurityType\",\r\n \"value\": \"TrustedLaunchSupported\"\r\n },\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "69350c9b-e001-41bc-a3c1-e6339908ff9d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1c01e4d-5fa4-4760-b0be-20f6bea3a6b7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "765", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d770dec1-c583-48eb-b5c3-17e7c82239a4", - "Date" : "Tue, 24 May 2022 13:05:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9967,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130551Z:d770dec1-c583-48eb-b5c3-17e7c82239a4", - "Expires" : "-1", - "x-ms-request-id" : "e022e3a4-422c-43b2-b315-edc50d203fe9", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "f1c01e4d-5fa4-4760-b0be-20f6bea3a6b7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fbc810c-2068-4ace-8795-f21d81270e9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d428752d-c731-47a3-ae8c-12c2c3dd1e70", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15939,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130551Z:d428752d-c731-47a3-ae8c-12c2c3dd1e70", - "Expires" : "-1", - "x-ms-request-id" : "2e9fdef1-0ecc-4755-968e-bffe2dfbba73", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "9fbc810c-2068-4ace-8795-f21d81270e9f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b82ae5a6-c502-4bc0-b802-61a497ada3e6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9c782973-93f7-4e5a-95af-1c3fb4a10ae6", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12805,Microsoft.Compute/GetVMImageFromLocation30Min;73805", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130551Z:9c782973-93f7-4e5a-95af-1c3fb4a10ae6", - "Expires" : "-1", - "x-ms-request-id" : "7e9c9b63-0a6b-4251-a6a4-0383049f6001", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "b82ae5a6-c502-4bc0-b802-61a497ada3e6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen1/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "424e6b2e-ed2a-4829-9ecf-510dae047345", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d5716c7-4a6a-4a42-9cf0-9eab8cbe0c98", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12804,Microsoft.Compute/GetVMImageFromLocation30Min;73804", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130551Z:6d5716c7-4a6a-4a42-9cf0-9eab8cbe0c98", - "Expires" : "-1", - "x-ms-request-id" : "88ba24a4-27b0-4e8b-b401-c0531d43b21a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "424e6b2e-ed2a-4829-9ecf-510dae047345", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98f8efa4-1d9f-436a-aa8c-7b715d6be452", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11712", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6c3bc72-339a-442a-916d-e04f5f056418", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12803,Microsoft.Compute/GetVMImageFromLocation30Min;73803", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130551Z:e6c3bc72-339a-442a-916d-e04f5f056418", - "Expires" : "-1", - "x-ms-request-id" : "657eadd1-10d6-46a1-9656-15e68d3d8297", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "98f8efa4-1d9f-436a-aa8c-7b715d6be452", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2753f1b4-19fb-4db2-9c0e-7f55881afdda", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "873", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11806", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7e61062a-1b8d-4ba7-89a9-a179bde301c9", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12802,Microsoft.Compute/GetVMImageFromLocation30Min;73802", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130551Z:7e61062a-1b8d-4ba7-89a9-a179bde301c9", - "Expires" : "-1", - "x-ms-request-id" : "4790333f-1cff-4992-8377-1222f3c442b6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "2753f1b4-19fb-4db2-9c0e-7f55881afdda", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32963b17-3be6-4e93-a252-27cc3d7f3735", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1131", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "10dc77a9-ffc2-41a4-b968-217996f53479", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15938,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:10dc77a9-ffc2-41a4-b968-217996f53479", - "Expires" : "-1", - "x-ms-request-id" : "8f9df5b5-72cb-4456-9db3-e190757c5492", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "32963b17-3be6-4e93-a252-27cc3d7f3735", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2b06e7a-7cce-40b5-b9ab-da974a9d809b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "991379f6-6a5b-40f8-98e0-aa7b11119994", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12801,Microsoft.Compute/GetVMImageFromLocation30Min;73801", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:991379f6-6a5b-40f8-98e0-aa7b11119994", - "Expires" : "-1", - "x-ms-request-id" : "074a0d68-e99b-4e12-b843-2c7fe6e6d18f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "f2b06e7a-7cce-40b5-b9ab-da974a9d809b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfb5c28d-9823-4a22-94eb-1376aced02d7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d465782-b8e7-4aeb-93ce-35ee07005c16", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12798,Microsoft.Compute/GetVMImageFromLocation30Min;73798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:4d465782-b8e7-4aeb-93ce-35ee07005c16", - "Expires" : "-1", - "x-ms-request-id" : "3b545649-93b4-4a00-ac22-c327f7de3348", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "dfb5c28d-9823-4a22-94eb-1376aced02d7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a6d2a05-b280-4e17-9f02-45d9b27e95bc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d24147ed-67c1-439b-8e5a-cd5283d2c9a8", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12799,Microsoft.Compute/GetVMImageFromLocation30Min;73799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:d24147ed-67c1-439b-8e5a-cd5283d2c9a8", - "Expires" : "-1", - "x-ms-request-id" : "7054623c-892d-416a-a9c3-a3436f1831d5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "0a6d2a05-b280-4e17-9f02-45d9b27e95bc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-basic/skus/gen2/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "509a8f3c-5146-427c-9337-b23f9d64ae36", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "866", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4c6d9de4-a205-402f-902f-eb8ada55c0d6", - "Date" : "Tue, 24 May 2022 13:05:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12800,Microsoft.Compute/GetVMImageFromLocation30Min;73800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:4c6d9de4-a205-402f-902f-eb8ada55c0d6", - "Expires" : "-1", - "x-ms-request-id" : "396c7f80-bedc-4cc7-85d5-2637fed13ab2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-basic/Skus/gen2/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "509a8f3c-5146-427c-9337-b23f9d64ae36", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "001da7d4-3d33-4217-b630-4c2bf2ba9712", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "763", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11685", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "57957f2b-ee32-4de6-993e-eeaf92c8e330", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9966,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:57957f2b-ee32-4de6-993e-eeaf92c8e330", - "Expires" : "-1", - "x-ms-request-id" : "72f59d73-a151-4663-a533-9943f541d38a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "001da7d4-3d33-4217-b630-4c2bf2ba9712", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc763170-bb8e-4822-81d1-06fd4e3bd8dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1689", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ac20ff0-bf73-4c62-9ddf-a3136f415bd9", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15937,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130552Z:3ac20ff0-bf73-4c62-9ddf-a3136f415bd9", - "Expires" : "-1", - "x-ms-request-id" : "fcd97154-e4d9-4134-a946-0949c0c0c76e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "fc763170-bb8e-4822-81d1-06fd4e3bd8dd", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4a738b1-330c-4596-8f0b-092aa09021da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11684", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6abf5df0-788b-425f-88fe-9e1be1f87c8f", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12797,Microsoft.Compute/GetVMImageFromLocation30Min;73797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:6abf5df0-788b-425f-88fe-9e1be1f87c8f", - "Expires" : "-1", - "x-ms-request-id" : "5e5dc5b4-a5ce-42ec-9523-492b401a88d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "b4a738b1-330c-4596-8f0b-092aa09021da", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "350e0adc-cfa4-4f9c-bc94-336b16f37e24", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5b35f8dc-86ee-46a1-88f7-1ba401a2f8e2", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12795,Microsoft.Compute/GetVMImageFromLocation30Min;73795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:5b35f8dc-86ee-46a1-88f7-1ba401a2f8e2", - "Expires" : "-1", - "x-ms-request-id" : "32eda372-9e8f-4f68-a044-2a83a5b6072f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "350e0adc-cfa4-4f9c-bc94-336b16f37e24", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2183562a-1f26-4261-9ae9-0e8a520de87a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "40196584-6122-4b47-970f-94d0e6c9e0c2", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12794,Microsoft.Compute/GetVMImageFromLocation30Min;73794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:40196584-6122-4b47-970f-94d0e6c9e0c2", - "Expires" : "-1", - "x-ms-request-id" : "f97be55e-d93e-45a3-a700-3f16dc77e7d3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "2183562a-1f26-4261-9ae9-0e8a520de87a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "529e2bda-459a-4688-bed5-6a82a7ba701a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a84622c-bd5c-4ac1-81af-bc395dbd3e45", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12793,Microsoft.Compute/GetVMImageFromLocation30Min;73793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:3a84622c-bd5c-4ac1-81af-bc395dbd3e45", - "Expires" : "-1", - "x-ms-request-id" : "52658e2f-cc56-4174-8e61-bee18f7c43e5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "529e2bda-459a-4688-bed5-6a82a7ba701a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "651a41a6-2cef-4dbc-939b-f82f920b3882", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d7f8a6da-7668-4b3f-bf35-2a21fb49711d", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12796,Microsoft.Compute/GetVMImageFromLocation30Min;73796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:d7f8a6da-7668-4b3f-bf35-2a21fb49711d", - "Expires" : "-1", - "x-ms-request-id" : "9b0c3207-c39b-498e-ae27-c792bb29740e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "651a41a6-2cef-4dbc-939b-f82f920b3882", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen1/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b78712da-c46f-4021-b478-b9169d3e7638", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "872", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df693f69-1406-41d7-b5d3-df9d1320f236", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12792,Microsoft.Compute/GetVMImageFromLocation30Min;73792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:df693f69-1406-41d7-b5d3-df9d1320f236", - "Expires" : "-1", - "x-ms-request-id" : "a5ca6898-c0cc-4e6f-b8aa-0dc322e3bc94", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen1/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "b78712da-c46f-4021-b478-b9169d3e7638", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36c3b421-12d7-465c-ba46-512379068b1b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1689", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02f7c883-1f86-4dba-b910-80f869e3d9cc", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15936,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:02f7c883-1f86-4dba-b910-80f869e3d9cc", - "Expires" : "-1", - "x-ms-request-id" : "1b86467c-79c7-4c58-96a6-0d939859b073", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2021.12.17\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "36c3b421-12d7-465c-ba46-512379068b1b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions/2021.12.17?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f802e16f-0445-47cd-9720-819ecfd2c75e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9951bd69-4750-4702-813f-dc16f49ca912", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12790,Microsoft.Compute/GetVMImageFromLocation30Min;73790", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:9951bd69-4750-4702-813f-dc16f49ca912", - "Expires" : "-1", - "x-ms-request-id" : "9bc105d0-bb42-469b-aa82-3668564d5f84", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.17\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2021.12.17\"\r\n}", - "x-ms-client-request-id" : "f802e16f-0445-47cd-9720-819ecfd2c75e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ddd3530-cdff-491c-b373-f4fd0aecca95", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ac451dd-0c24-496c-a163-4e8c6e204b86", - "Date" : "Tue, 24 May 2022 13:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12791,Microsoft.Compute/GetVMImageFromLocation30Min;73791", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:7ac451dd-0c24-496c-a163-4e8c6e204b86", - "Expires" : "-1", - "x-ms-request-id" : "67384eba-b7c0-461e-a1b4-b8eb71baa0e1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "5ddd3530-cdff-491c-b373-f4fd0aecca95", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6f4270c-d173-416e-bef6-dddb7674363f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fe872e2a-b414-4c8c-8a46-7841547ddaf5", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12789,Microsoft.Compute/GetVMImageFromLocation30Min;73789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:fe872e2a-b414-4c8c-8a46-7841547ddaf5", - "Expires" : "-1", - "x-ms-request-id" : "c0a30338-493e-466e-91ec-1e60b5204f32", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "a6f4270c-d173-416e-bef6-dddb7674363f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "621828e7-5efc-483b-962b-ca84fe25fed0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a57eeb9-c249-4cc1-a8a4-914499b4c064", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12788,Microsoft.Compute/GetVMImageFromLocation30Min;73788", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:2a57eeb9-c249-4cc1-a8a4-914499b4c064", - "Expires" : "-1", - "x-ms-request-id" : "b9b1f358-fbb7-4f74-85e7-697c77fba3da", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "621828e7-5efc-483b-962b-ca84fe25fed0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "659e480c-c1ab-420b-96c8-0d5636ac9c69", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8850bba0-6933-4f9e-a552-871076b42aca", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12786,Microsoft.Compute/GetVMImageFromLocation30Min;73786", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:8850bba0-6933-4f9e-a552-871076b42aca", - "Expires" : "-1", - "x-ms-request-id" : "41cdf485-1fa2-474e-8e74-df11242224cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "659e480c-c1ab-420b-96c8-0d5636ac9c69", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "597833fc-3029-4bdc-a990-272e5be97525", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "865", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eab0f421-87dc-4424-aff8-5ef78a21fd1e", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12787,Microsoft.Compute/GetVMImageFromLocation30Min;73787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130553Z:eab0f421-87dc-4424-aff8-5ef78a21fd1e", - "Expires" : "-1", - "x-ms-request-id" : "6eedc9c6-abd5-4aed-991c-1128be584d8c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "597833fc-3029-4bdc-a990-272e5be97525", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e059eb5-b593-49d5-8e9c-4db8be5cc2fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "775", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f491c590-0ed4-4a14-87b4-a0dd7bcaea98", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9965,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:f491c590-0ed4-4a14-87b4-a0dd7bcaea98", - "Expires" : "-1", - "x-ms-request-id" : "5013c6bb-49be-4305-b61d-e423049eb6d0", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "8e059eb5-b593-49d5-8e9c-4db8be5cc2fa", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e7e0c3e-634b-4b10-936d-bfb6eb6fbf9e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89d610d9-6841-443b-a0a7-4bb944e81450", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15935,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:89d610d9-6841-443b-a0a7-4bb944e81450", - "Expires" : "-1", - "x-ms-request-id" : "c33d0b75-34c1-4797-9144-5a8e65678a87", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.11.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2021.11.01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.02\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2021.12.02\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.01.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.02.22\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.03.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.04.11\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.05.10\"\r\n }\r\n]", - "x-ms-client-request-id" : "0e7e0c3e-634b-4b10-936d-bfb6eb6fbf9e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2022.01.03?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e6aaa01-38dc-423e-a763-4ddcb3d7bdc7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9bddb6e6-514b-4796-ac96-c1443cebfada", - "Date" : "Tue, 24 May 2022 13:05:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12785,Microsoft.Compute/GetVMImageFromLocation30Min;73785", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:9bddb6e6-514b-4796-ac96-c1443cebfada", - "Expires" : "-1", - "x-ms-request-id" : "d0d213e4-c007-47e2-9788-e8c1b0fce2f5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.01.03\"\r\n}", - "x-ms-client-request-id" : "4e6aaa01-38dc-423e-a763-4ddcb3d7bdc7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2022.03.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f9fe65f-a6e9-4b19-99a3-eaead443999e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5fcd4c3-589e-4924-8e10-d6b6a38dcf3a", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12783,Microsoft.Compute/GetVMImageFromLocation30Min;73783", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:c5fcd4c3-589e-4924-8e10-d6b6a38dcf3a", - "Expires" : "-1", - "x-ms-request-id" : "e39697c6-72dc-45aa-aa1f-6619cfc6a731", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.03.10\"\r\n}", - "x-ms-client-request-id" : "2f9fe65f-a6e9-4b19-99a3-eaead443999e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2022.02.22?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84a099df-6eee-4051-b8cf-0a87ebc7aa45", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d144dc79-728c-4f0a-ae33-c6a973ac2f7f", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12784,Microsoft.Compute/GetVMImageFromLocation30Min;73784", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:d144dc79-728c-4f0a-ae33-c6a973ac2f7f", - "Expires" : "-1", - "x-ms-request-id" : "4a75e2ee-764d-402e-a1fe-0a17fb8c1d3a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.02.22\"\r\n}", - "x-ms-client-request-id" : "84a099df-6eee-4051-b8cf-0a87ebc7aa45", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2022.05.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a68b4b7-1607-41a1-b6c9-2e243214421c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11840", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed3b9afa-47eb-4333-8bb4-7cc08efd72ea", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12782,Microsoft.Compute/GetVMImageFromLocation30Min;73782", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:ed3b9afa-47eb-4333-8bb4-7cc08efd72ea", - "Expires" : "-1", - "x-ms-request-id" : "c57a57df-9132-4f47-9cc0-f663737d6930", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.05.10\"\r\n}", - "x-ms-client-request-id" : "1a68b4b7-1607-41a1-b6c9-2e243214421c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a0826eb-77a1-4589-821d-fbbc895603ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7109ba56-81c3-47a6-85be-dc8e998ebc95", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12780,Microsoft.Compute/GetVMImageFromLocation30Min;73780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:7109ba56-81c3-47a6-85be-dc8e998ebc95", - "Expires" : "-1", - "x-ms-request-id" : "4c5f0be6-2ef4-4e71-9776-277a068fcb2c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "3a0826eb-77a1-4589-821d-fbbc895603ae", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2022.04.11?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e9d2a01-207d-485d-8eff-65e228d93af3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5ca45d8-9812-400f-8e23-26aab0ae9f88", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12779,Microsoft.Compute/GetVMImageFromLocation30Min;73779", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:a5ca45d8-9812-400f-8e23-26aab0ae9f88", - "Expires" : "-1", - "x-ms-request-id" : "63b99493-bea3-445d-8df3-7cc17ba1dd09", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2022.04.11\"\r\n}", - "x-ms-client-request-id" : "3e9d2a01-207d-485d-8eff-65e228d93af3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2021.12.02?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fbbf40d4-ee74-41b5-bf2a-10ce6e78f830", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11711", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "989c14ce-0af8-4ea8-84bb-5fe9f3e63e20", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12781,Microsoft.Compute/GetVMImageFromLocation30Min;73781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130554Z:989c14ce-0af8-4ea8-84bb-5fe9f3e63e20", - "Expires" : "-1", - "x-ms-request-id" : "a7a56414-d224-4393-8f92-5d7b344c6de4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.02\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2021.12.02\"\r\n}", - "x-ms-client-request-id" : "fbbf40d4-ee74-41b5-bf2a-10ce6e78f830", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen1/versions/2021.11.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2c47752-0fa3-4610-aa69-c65c3ce2820d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1048", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "38e8c870-3f4a-4f06-98bc-f06cb7c08743", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12778,Microsoft.Compute/GetVMImageFromLocation30Min;73778", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:38e8c870-3f4a-4f06-98bc-f06cb7c08743", - "Expires" : "-1", - "x-ms-request-id" : "5e23342f-a202-49bc-a5aa-93ff665dba24", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.11.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen1/Versions/2021.11.01\"\r\n}", - "x-ms-client-request-id" : "b2c47752-0fa3-4610-aa69-c65c3ce2820d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5c828b0-ea5e-4ef1-aaec-b0dd6eec5e80", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2299", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "89e03d10-dec9-4e83-bcf2-fd5ee5239c1b", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15934,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:89e03d10-dec9-4e83-bcf2-fd5ee5239c1b", - "Expires" : "-1", - "x-ms-request-id" : "e33921f8-4a75-4941-8e6d-b5d7540104d3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.11.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2021.11.01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.02\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2021.12.02\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.01.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.02.22\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.03.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.04.11\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.05.10\"\r\n }\r\n]", - "x-ms-client-request-id" : "b5c828b0-ea5e-4ef1-aaec-b0dd6eec5e80", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2022.01.03?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4577718c-b35c-4277-b872-f998976b69b3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11683", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2c2c4af-e6af-4199-9b03-822c60a8c4d7", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12777,Microsoft.Compute/GetVMImageFromLocation30Min;73777", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:d2c2c4af-e6af-4199-9b03-822c60a8c4d7", - "Expires" : "-1", - "x-ms-request-id" : "3e1811e1-1d84-42e6-bd9e-88c99989c52f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.01.03\"\r\n}", - "x-ms-client-request-id" : "4577718c-b35c-4277-b872-f998976b69b3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2021.11.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fe7a3ea-1c01-42a1-88c2-ff28682a9395", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30f412c2-a355-4333-ac53-31da9e20391a", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12775,Microsoft.Compute/GetVMImageFromLocation30Min;73775", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:30f412c2-a355-4333-ac53-31da9e20391a", - "Expires" : "-1", - "x-ms-request-id" : "d03ad72e-e31b-4884-ba79-b789248f3804", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.11.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2021.11.01\"\r\n}", - "x-ms-client-request-id" : "2fe7a3ea-1c01-42a1-88c2-ff28682a9395", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2022.03.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b29fdc42-36e4-4c96-bded-103bbdb9fe68", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a373cbf8-d19c-46a5-af6c-c60c680398dd", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12776,Microsoft.Compute/GetVMImageFromLocation30Min;73776", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:a373cbf8-d19c-46a5-af6c-c60c680398dd", - "Expires" : "-1", - "x-ms-request-id" : "f1c4f312-7d14-4ce0-b8b6-f657cd01321f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.03.10\"\r\n}", - "x-ms-client-request-id" : "b29fdc42-36e4-4c96-bded-103bbdb9fe68", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2022.05.10?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "54e91089-010f-4eec-803a-e53d4375df56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34f0a3ad-bb2a-42c5-9f56-20634f76b051", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12774,Microsoft.Compute/GetVMImageFromLocation30Min;73774", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:34f0a3ad-bb2a-42c5-9f56-20634f76b051", - "Expires" : "-1", - "x-ms-request-id" : "1502b277-a529-4bcf-aa4d-a72f35820e9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.05.10\"\r\n}", - "x-ms-client-request-id" : "54e91089-010f-4eec-803a-e53d4375df56", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2022.02.22?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c20d6764-4c36-40a7-bf3a-c975a5913d79", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f85a8bfb-ff95-4646-aed8-0a61a5c91d17", - "Date" : "Tue, 24 May 2022 13:05:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12772,Microsoft.Compute/GetVMImageFromLocation30Min;73772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:f85a8bfb-ff95-4646-aed8-0a61a5c91d17", - "Expires" : "-1", - "x-ms-request-id" : "de009500-7e3a-496f-99c3-3d4fb9366c50", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.02.22\"\r\n}", - "x-ms-client-request-id" : "c20d6764-4c36-40a7-bf3a-c975a5913d79", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2022.04.11?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bac8086d-b758-42bd-bb2d-814bfa0b67b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11813", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5fa101fc-d798-41a4-99ed-fb737daf388b", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12771,Microsoft.Compute/GetVMImageFromLocation30Min;73771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:5fa101fc-d798-41a4-99ed-fb737daf388b", - "Expires" : "-1", - "x-ms-request-id" : "dd362c56-4730-4f04-ae4f-20e2d59acc7e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.04.11\"\r\n}", - "x-ms-client-request-id" : "bac8086d-b758-42bd-bb2d-814bfa0b67b4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2021.12.02?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2c6a074-7c63-4378-bbe0-a44546c3e2a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0cdc2585-aeda-4a60-8250-d9f65797f7e4", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12773,Microsoft.Compute/GetVMImageFromLocation30Min;73773", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130555Z:0cdc2585-aeda-4a60-8250-d9f65797f7e4", - "Expires" : "-1", - "x-ms-request-id" : "a5f3e1a4-5ae2-4c51-99df-365bb085c4af", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.02\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2021.12.02\"\r\n}", - "x-ms-client-request-id" : "b2c6a074-7c63-4378-bbe0-a44546c3e2a1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-chost-byos/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5c97a95-b895-4406-b6d4-ecfe67d1f76c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4807e00e-fed5-4685-a48a-059a4a7bd8cf", - "Date" : "Tue, 24 May 2022 13:05:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12770,Microsoft.Compute/GetVMImageFromLocation30Min;73770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130556Z:4807e00e-fed5-4685-a48a-059a4a7bd8cf", - "Expires" : "-1", - "x-ms-request-id" : "fbbe8ddc-2d16-4997-adea-bbae3f3ca135", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-chost-byos/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "d5c97a95-b895-4406-b6d4-ecfe67d1f76c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af3ebed2-58ac-4829-9021-7539587d077f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9ead20c-9cd5-42d3-83a0-59d61c5d3767", - "Date" : "Tue, 24 May 2022 13:05:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9964,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130556Z:a9ead20c-9cd5-42d3-83a0-59d61c5d3767", - "Expires" : "-1", - "x-ms-request-id" : "e808b2ab-dfd9-4a71-a7f0-2d149cb3659b", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "af3ebed2-58ac-4829-9021-7539587d077f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f74967a-068f-4713-86d4-ad84cf3949f7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7dbb31d7-0226-46dd-a73b-f21074f38b9b", - "Date" : "Tue, 24 May 2022 13:05:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15933,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43933", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130557Z:7dbb31d7-0226-46dd-a73b-f21074f38b9b", - "Expires" : "-1", - "x-ms-request-id" : "f8b8386d-1b3c-42b3-8e65-e7de158b9f17", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2021.12.22\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "1f74967a-068f-4713-86d4-ad84cf3949f7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae9f8efe-9187-4604-99ac-c7e4f10edb5b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11710", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6b0909c-e024-4340-bb16-7885be2c94c5", - "Date" : "Tue, 24 May 2022 13:05:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12768,Microsoft.Compute/GetVMImageFromLocation30Min;73768", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130557Z:e6b0909c-e024-4340-bb16-7885be2c94c5", - "Expires" : "-1", - "x-ms-request-id" : "a617172b-e506-4515-91f0-583ef2dd4309", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "ae9f8efe-9187-4604-99ac-c7e4f10edb5b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0e843ef-136d-42c1-9d7f-24de4f6d60c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07e46734-4bc7-4440-9eaa-00edb98435bd", - "Date" : "Tue, 24 May 2022 13:05:56 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12769,Microsoft.Compute/GetVMImageFromLocation30Min;73769", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130557Z:07e46734-4bc7-4440-9eaa-00edb98435bd", - "Expires" : "-1", - "x-ms-request-id" : "d6ab7e17-0e33-46fb-9a10-e1a871466ada", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "b0e843ef-136d-42c1-9d7f-24de4f6d60c6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "00f8ed10-428c-4b09-8933-99b687496bd7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c33acaeb-cf97-432f-9424-9adde58399fd", - "Date" : "Tue, 24 May 2022 13:05:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12767,Microsoft.Compute/GetVMImageFromLocation30Min;73767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130557Z:c33acaeb-cf97-432f-9424-9adde58399fd", - "Expires" : "-1", - "x-ms-request-id" : "6f99f7fe-9baa-4a5e-a2eb-f0f08063afa7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "00f8ed10-428c-4b09-8933-99b687496bd7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen1/versions/2021.12.22?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dde81e37-8f74-4cb3-84c0-2082fde6244d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb631390-a9d9-4598-9efa-45f7b749bf7e", - "Date" : "Tue, 24 May 2022 13:05:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12766,Microsoft.Compute/GetVMImageFromLocation30Min;73766", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130557Z:bb631390-a9d9-4598-9efa-45f7b749bf7e", - "Expires" : "-1", - "x-ms-request-id" : "eae55e9e-ce11-48af-94a7-3f7111f7ab9f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen1/Versions/2021.12.22\"\r\n}", - "x-ms-client-request-id" : "dde81e37-8f74-4cb3-84c0-2082fde6244d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df01dbdc-cbb5-4074-a87b-3dc18cd89225", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "827fd5aa-dd35-4077-aa6e-58845320fa82", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15932,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130558Z:827fd5aa-dd35-4077-aa6e-58845320fa82", - "Expires" : "-1", - "x-ms-request-id" : "70dde494-6eb1-4258-a1a6-a93893f5ca85", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2021.12.22\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "df01dbdc-cbb5-4074-a87b-3dc18cd89225", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0447f2f6-581d-4d9b-8856-77e3f0f4159c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7a3a9139-fd5e-4edd-ab4c-5ee80e6a9b7a", - "Date" : "Tue, 24 May 2022 13:05:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12765,Microsoft.Compute/GetVMImageFromLocation30Min;73765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130558Z:7a3a9139-fd5e-4edd-ab4c-5ee80e6a9b7a", - "Expires" : "-1", - "x-ms-request-id" : "fcea02db-1718-4ff2-971b-16bd47bb16e1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "0447f2f6-581d-4d9b-8856-77e3f0f4159c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "71c24b42-0a26-487a-ab3d-084968e69be2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11682", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "90a75750-fb7f-4c98-b17f-bda1631c3e73", - "Date" : "Tue, 24 May 2022 13:05:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12764,Microsoft.Compute/GetVMImageFromLocation30Min;73764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130558Z:90a75750-fb7f-4c98-b17f-bda1631c3e73", - "Expires" : "-1", - "x-ms-request-id" : "5ed3c80c-f56d-4ea6-937d-60967ae69a6b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "71c24b42-0a26-487a-ab3d-084968e69be2", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen2/versions/2021.12.22?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f149774-5190-4405-9e68-97a3c9316952", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b4b2c842-200e-4465-8f86-5ce23805a4bb", - "Date" : "Tue, 24 May 2022 13:05:57 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12763,Microsoft.Compute/GetVMImageFromLocation30Min;73763", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130558Z:b4b2c842-200e-4465-8f86-5ce23805a4bb", - "Expires" : "-1", - "x-ms-request-id" : "ef8a65a7-b779-4f43-b14c-eff02dfe6ad0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.22\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2021.12.22\"\r\n}", - "x-ms-client-request-id" : "2f149774-5190-4405-9e68-97a3c9316952", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e7133a8-fb69-4eb2-b73a-25d5fcbc2eb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11709", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "243fa5ef-2476-4a3d-a948-f3cd78d2d082", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12762,Microsoft.Compute/GetVMImageFromLocation30Min;73762", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130558Z:243fa5ef-2476-4a3d-a948-f3cd78d2d082", - "Expires" : "-1", - "x-ms-request-id" : "60318b15-33e2-4b43-8da1-24a3ba8dd64e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "0e7133a8-fb69-4eb2-b73a-25d5fcbc2eb6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "05d0ece0-72ed-4158-9a96-75c0c1c7ddaa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf5aebeb-065f-429e-9793-ce610ebeb9fc", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9963,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130558Z:cf5aebeb-065f-429e-9793-ce610ebeb9fc", - "Expires" : "-1", - "x-ms-request-id" : "f7f64cfc-fcec-432b-b53e-36f533dedb48", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "05d0ece0-72ed-4158-9a96-75c0c1c7ddaa", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93f72469-3384-489f-bd52-e9ac267b1d59", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d92ee9e-aad2-4d35-ab9a-6dce6eb13b8c", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15931,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:2d92ee9e-aad2-4d35-ab9a-6dce6eb13b8c", - "Expires" : "-1", - "x-ms-request-id" : "af4a2a94-3ce0-4230-b3f7-d666408e99c3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.01.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "93f72469-3384-489f-bd52-e9ac267b1d59", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "79e1d6e0-02eb-475f-844c-8fad4d3a8f71", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11795", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b833400b-6e83-433a-9d4c-8a375a0f1ab4", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12760,Microsoft.Compute/GetVMImageFromLocation30Min;73760", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:b833400b-6e83-433a-9d4c-8a375a0f1ab4", - "Expires" : "-1", - "x-ms-request-id" : "26017ec0-9495-47b6-855f-73666a42f8cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "79e1d6e0-02eb-475f-844c-8fad4d3a8f71", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f5cdd06-c5c8-4da6-80b1-9ef90cc75397", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11795", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "103223aa-1285-47d3-aef0-772abf73c8a7", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12761,Microsoft.Compute/GetVMImageFromLocation30Min;73761", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:103223aa-1285-47d3-aef0-772abf73c8a7", - "Expires" : "-1", - "x-ms-request-id" : "8f59dabd-0101-4a03-8f51-bed4484b954d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "1f5cdd06-c5c8-4da6-80b1-9ef90cc75397", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "240d95f6-caad-46d8-9195-9a0d1c5405f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d030430b-580f-4268-b30c-9e4f59149026", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12758,Microsoft.Compute/GetVMImageFromLocation30Min;73758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:d030430b-580f-4268-b30c-9e4f59149026", - "Expires" : "-1", - "x-ms-request-id" : "b08bb35d-7114-43c1-86d4-471c6eca1f8a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "240d95f6-caad-46d8-9195-9a0d1c5405f4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a1729e5-05b0-4076-b512-c077804af259", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2a555a6-8c08-47f3-8430-a7e4ba551940", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12759,Microsoft.Compute/GetVMImageFromLocation30Min;73759", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:a2a555a6-8c08-47f3-8430-a7e4ba551940", - "Expires" : "-1", - "x-ms-request-id" : "b2a4c877-fdaa-4b0a-ac52-da5f3280410a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "5a1729e5-05b0-4076-b512-c077804af259", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions/2022.01.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aaedddd3-dd33-425c-881c-38899bbf0cc5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa61c57d-4327-4671-a8cc-4e8e26cd79b7", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12756,Microsoft.Compute/GetVMImageFromLocation30Min;73756", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:aa61c57d-4327-4671-a8cc-4e8e26cd79b7", - "Expires" : "-1", - "x-ms-request-id" : "0b1086c3-7b1a-4baf-9e22-e098311872c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2022.01.04\"\r\n}", - "x-ms-client-request-id" : "aaedddd3-dd33-425c-881c-38899bbf0cc5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7edc7e0b-a49e-4a11-94c8-37fa2257dfbc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c461caa-25e4-43e2-ab5a-5ff1bd0a4d31", - "Date" : "Tue, 24 May 2022 13:05:58 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12757,Microsoft.Compute/GetVMImageFromLocation30Min;73757", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:7c461caa-25e4-43e2-ab5a-5ff1bd0a4d31", - "Expires" : "-1", - "x-ms-request-id" : "77f20afd-a132-48d3-b911-09666d36c2a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "7edc7e0b-a49e-4a11-94c8-37fa2257dfbc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "174a5e65-54dc-4081-8579-388528822cb2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ddbca38-bf6a-405f-a757-25733a2bda82", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15930,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:1ddbca38-bf6a-405f-a757-25733a2bda82", - "Expires" : "-1", - "x-ms-request-id" : "dc929150-8a43-4a84-993a-a092a2aaff81", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.01.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "174a5e65-54dc-4081-8579-388528822cb2", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions/2022.01.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44195d1a-71b6-45b8-928c-b29a81146836", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3dd3105c-0347-439b-a2ce-5ae51231b299", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12754,Microsoft.Compute/GetVMImageFromLocation30Min;73754", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:3dd3105c-0347-439b-a2ce-5ae51231b299", - "Expires" : "-1", - "x-ms-request-id" : "6cb9e3f9-c9db-49be-a971-ab8332d69c71", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.01.04\"\r\n}", - "x-ms-client-request-id" : "44195d1a-71b6-45b8-928c-b29a81146836", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "adbdbcb0-c95d-4d9f-b59b-cbb9af4e21da", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11804", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c25b2f36-090e-4dbb-ab13-3b3c63c6b18e", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12755,Microsoft.Compute/GetVMImageFromLocation30Min;73755", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:c25b2f36-090e-4dbb-ab13-3b3c63c6b18e", - "Expires" : "-1", - "x-ms-request-id" : "60a1ff62-0a5f-4790-b68a-e6a61062a4ad", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "adbdbcb0-c95d-4d9f-b59b-cbb9af4e21da", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8948653-23cc-486d-81c0-ba4c48fe38eb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f113d014-e1e9-4fe8-9f13-500e8d14dc10", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12752,Microsoft.Compute/GetVMImageFromLocation30Min;73752", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:f113d014-e1e9-4fe8-9f13-500e8d14dc10", - "Expires" : "-1", - "x-ms-request-id" : "e2fe2dbd-6d32-4179-86a3-27f985714635", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "f8948653-23cc-486d-81c0-ba4c48fe38eb", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20cfe8d2-0165-4fdd-859e-cdd6e8121514", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4487376-0efc-45f9-89d0-17ffe042ef9c", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12753,Microsoft.Compute/GetVMImageFromLocation30Min;73753", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130559Z:a4487376-0efc-45f9-89d0-17ffe042ef9c", - "Expires" : "-1", - "x-ms-request-id" : "f2d1de04-b65a-4dad-8849-79806c489f31", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "20cfe8d2-0165-4fdd-859e-cdd6e8121514", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48530ff6-cbec-4cc3-9187-8978d1bdbd57", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "903b70af-c101-4f9e-99a3-1b38c93e0331", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12751,Microsoft.Compute/GetVMImageFromLocation30Min;73751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130600Z:903b70af-c101-4f9e-99a3-1b38c93e0331", - "Expires" : "-1", - "x-ms-request-id" : "fd6d678c-4788-416d-ba33-6af1886230b4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "48530ff6-cbec-4cc3-9187-8978d1bdbd57", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-hpc-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "16339af3-509a-42a2-845e-f428e7bb5a16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5fd3f164-1344-42f3-8f11-71d83b732fb7", - "Date" : "Tue, 24 May 2022 13:06:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12750,Microsoft.Compute/GetVMImageFromLocation30Min;73750", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130600Z:5fd3f164-1344-42f3-8f11-71d83b732fb7", - "Expires" : "-1", - "x-ms-request-id" : "47d52784-3a0d-4bd9-884f-4f5d0c9a0a52", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-hpc-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "16339af3-509a-42a2-845e-f428e7bb5a16", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5eb5c98d-5c0b-4859-8a04-ccc6c0c2e59f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "767", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f046d8e5-6986-44bc-a95f-bb8ada373307", - "Date" : "Tue, 24 May 2022 13:05:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9962,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130600Z:f046d8e5-6986-44bc-a95f-bb8ada373307", - "Expires" : "-1", - "x-ms-request-id" : "b4453089-e8a1-496c-be82-36986d02c5fb", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "5eb5c98d-5c0b-4859-8a04-ccc6c0c2e59f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c595767-1ed9-4363-8891-956aacfd9fe1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1135", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33755588-6541-4d05-be1f-e828b3bba4af", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15929,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:33755588-6541-4d05-be1f-e828b3bba4af", - "Expires" : "-1", - "x-ms-request-id" : "69416795-29f8-431b-be67-3ad97723db0d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.07.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2021.07.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2022.01.20\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "5c595767-1ed9-4363-8891-956aacfd9fe1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen1/versions/2022.01.20?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb43f08b-080c-49df-87af-761a8902736c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11708", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "245cd6b4-c74d-47ca-846c-c5acd7007caf", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12749,Microsoft.Compute/GetVMImageFromLocation30Min;73749", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:245cd6b4-c74d-47ca-846c-c5acd7007caf", - "Expires" : "-1", - "x-ms-request-id" : "ba9c8c17-09fe-449e-baa2-c11a0034d867", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2022.01.20\"\r\n}", - "x-ms-client-request-id" : "fb43f08b-080c-49df-87af-761a8902736c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen1/versions/2021.07.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f8b48a3-64cc-4453-93ce-d98ec2012b45", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31c6455b-b5c5-499f-8768-6c67c1f0156f", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12748,Microsoft.Compute/GetVMImageFromLocation30Min;73748", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:31c6455b-b5c5-499f-8768-6c67c1f0156f", - "Expires" : "-1", - "x-ms-request-id" : "8ac2ba96-b865-4345-b043-f2fdb61be96e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.07.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2021.07.12\"\r\n}", - "x-ms-client-request-id" : "1f8b48a3-64cc-4453-93ce-d98ec2012b45", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7501da4c-1d36-4326-9d35-3bdba7a344e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c376491d-0e79-496a-8e15-d1f6f7c77bc6", - "Date" : "Tue, 24 May 2022 13:06:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12746,Microsoft.Compute/GetVMImageFromLocation30Min;73746", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:c376491d-0e79-496a-8e15-d1f6f7c77bc6", - "Expires" : "-1", - "x-ms-request-id" : "fc13918c-afa8-4816-a3b1-005402c533d1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "7501da4c-1d36-4326-9d35-3bdba7a344e4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "084aa6ab-8e7d-4cf7-a784-b7a3d5617195", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9b6c16b-8251-4c5f-a61c-bba4fc374a61", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12747,Microsoft.Compute/GetVMImageFromLocation30Min;73747", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:a9b6c16b-8251-4c5f-a61c-bba4fc374a61", - "Expires" : "-1", - "x-ms-request-id" : "bb4856f0-f987-44f4-a631-20aa4d3f6756", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "084aa6ab-8e7d-4cf7-a784-b7a3d5617195", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a140159-c707-4c53-8998-67aee224d7c6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1135", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6da790f6-f36b-488b-8422-d39618c9a45c", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15928,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:6da790f6-f36b-488b-8422-d39618c9a45c", - "Expires" : "-1", - "x-ms-request-id" : "8d6e82f1-51c1-4496-9c85-f93b2295ca3c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.07.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2021.07.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2022.01.20\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "3a140159-c707-4c53-8998-67aee224d7c6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen2/versions/2021.07.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acc222e9-5c97-432f-aa23-9a9fc5161f38", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2e9a02c-6637-42df-92be-1328dcb65674", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12745,Microsoft.Compute/GetVMImageFromLocation30Min;73745", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:f2e9a02c-6637-42df-92be-1328dcb65674", - "Expires" : "-1", - "x-ms-request-id" : "e351f491-4a1d-4e36-b60f-1518265238b3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.07.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2021.07.12\"\r\n}", - "x-ms-client-request-id" : "acc222e9-5c97-432f-aa23-9a9fc5161f38", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db718723-70bb-49c5-bc90-4d8e88ba20e4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6804ad75-88fc-4756-999e-0df2d5e65304", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12744,Microsoft.Compute/GetVMImageFromLocation30Min;73744", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:6804ad75-88fc-4756-999e-0df2d5e65304", - "Expires" : "-1", - "x-ms-request-id" : "1aed8672-c882-4baf-bc6f-0fe44d4e58a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "db718723-70bb-49c5-bc90-4d8e88ba20e4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5933c8a-4990-4cb0-bf1b-076ac40b8d65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11707", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db703f81-14e3-4052-9f27-fe9bfdb7ded9", - "Date" : "Tue, 24 May 2022 13:06:01 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12743,Microsoft.Compute/GetVMImageFromLocation30Min;73743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130601Z:db703f81-14e3-4052-9f27-fe9bfdb7ded9", - "Expires" : "-1", - "x-ms-request-id" : "e26e6b69-1ca7-4978-9e7a-6f3537247eaa", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "f5933c8a-4990-4cb0-bf1b-076ac40b8d65", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-15-sp3-sapcal/skus/gen2/versions/2022.01.20?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "deb7eb10-4505-4b6f-9b1c-912bdd286e30", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11837", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "98975e00-9704-4f6d-b368-869a38c061ac", - "Date" : "Tue, 24 May 2022 13:06:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12742,Microsoft.Compute/GetVMImageFromLocation30Min;73742", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130602Z:98975e00-9704-4f6d-b368-869a38c061ac", - "Expires" : "-1", - "x-ms-request-id" : "d30dff7c-a5f1-4029-8f68-aa84ef952e03", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-15-sp3-sapcal/Skus/gen2/Versions/2022.01.20\"\r\n}", - "x-ms-client-request-id" : "deb7eb10-4505-4b6f-9b1c-912bdd286e30", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24a52f9c-6269-4e14-8bed-8b3ff74df438", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2269", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11681", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d8e30937-4f59-46d5-8a88-b0c6310b80f5", - "Date" : "Tue, 24 May 2022 13:06:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9961,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130602Z:d8e30937-4f59-46d5-8a88-b0c6310b80f5", - "Expires" : "-1", - "x-ms-request-id" : "49055e97-4579-489a-8561-814445fa83d6", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/11-SP4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-sp4-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "24a52f9c-6269-4e14-8bed-8b3ff74df438", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/11-SP4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c6cd1ab-8f1f-4bb7-a37c-d9fef27966f9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "39bab38a-82fe-4c67-982a-871185011738", - "Date" : "Tue, 24 May 2022 13:06:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15927,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:39bab38a-82fe-4c67-982a-871185011738", - "Expires" : "-1", - "x-ms-request-id" : "60516343-7cf7-4736-a31d-6dc5c80d2630", - "Body" : "[]", - "x-ms-client-request-id" : "4c6cd1ab-8f1f-4bb7-a37c-d9fef27966f9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7801fb2-9db3-441f-bc2f-61faaad45fad", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "04c30eef-dbba-4891-960d-ebcb9b2a7144", - "Date" : "Tue, 24 May 2022 13:06:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15926,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:04c30eef-dbba-4891-960d-ebcb9b2a7144", - "Expires" : "-1", - "x-ms-request-id" : "79fdff2a-fbe2-4190-aee6-68475ef79f27", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2021.03.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2022.02.01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2022.03.07\"\r\n }\r\n]", - "x-ms-client-request-id" : "b7801fb2-9db3-441f-bc2f-61faaad45fad", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP3/versions/2022.03.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "da6c9dd7-b427-4a9a-9da3-f418f6c40be0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30fb20e0-ef43-445c-be3a-933960f46cae", - "Date" : "Tue, 24 May 2022 13:06:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12739,Microsoft.Compute/GetVMImageFromLocation30Min;73739", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:30fb20e0-ef43-445c-be3a-933960f46cae", - "Expires" : "-1", - "x-ms-request-id" : "824f9cfe-6638-4410-b6d3-028a31f082c3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2022.03.07\"\r\n}", - "x-ms-client-request-id" : "da6c9dd7-b427-4a9a-9da3-f418f6c40be0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP3/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2390f1f-6d5b-401c-a0ab-05e208a4b585", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3b3357e-4aa1-47c1-87e3-0856716dd486", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12741,Microsoft.Compute/GetVMImageFromLocation30Min;73741", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:a3b3357e-4aa1-47c1-87e3-0856716dd486", - "Expires" : "-1", - "x-ms-request-id" : "06a06e62-662b-483e-b3be-647ea2b1aa16", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "b2390f1f-6d5b-401c-a0ab-05e208a4b585", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP3/versions/2021.03.03?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6e8f5f6-bcb8-4dbc-8f96-d15da65a8c40", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1020f31-a505-48de-b2a5-f5ad821728ea", - "Date" : "Tue, 24 May 2022 13:06:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12740,Microsoft.Compute/GetVMImageFromLocation30Min;73740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:b1020f31-a505-48de-b2a5-f5ad821728ea", - "Expires" : "-1", - "x-ms-request-id" : "31c0f7bb-666d-4145-b00e-3ec33ffeca95", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2021.03.03\"\r\n}", - "x-ms-client-request-id" : "a6e8f5f6-bcb8-4dbc-8f96-d15da65a8c40", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP3/versions/2022.02.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bfe5e81-680e-4272-945c-1cec2f10d51a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "867", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5534c8d1-1dac-45b8-a14c-4866bf2fd496", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12738,Microsoft.Compute/GetVMImageFromLocation30Min;73738", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:5534c8d1-1dac-45b8-a14c-4866bf2fd496", - "Expires" : "-1", - "x-ms-request-id" : "38ffa657-85b3-42b4-9df7-0fd2ec2a32a4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP3/Versions/2022.02.01\"\r\n}", - "x-ms-client-request-id" : "3bfe5e81-680e-4272-945c-1cec2f10d51a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "690907a5-bf52-49fc-a517-8d7a9917c696", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1383", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d4f33bf-d80e-40f0-a2ab-4a6dddfe46c3", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15925,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43925", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130603Z:9d4f33bf-d80e-40f0-a2ab-4a6dddfe46c3", - "Expires" : "-1", - "x-ms-request-id" : "fe73fe37-59e7-43f7-bdff-6b558d0902fa", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2021.03.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "690907a5-bf52-49fc-a517-8d7a9917c696", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP4/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cb70233-7276-4108-8ac5-572334d733ca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b571a25-f8d2-4d02-bae1-7a974276d736", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12736,Microsoft.Compute/GetVMImageFromLocation30Min;73736", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:2b571a25-f8d2-4d02-bae1-7a974276d736", - "Expires" : "-1", - "x-ms-request-id" : "f04085d2-142e-4bae-8ccf-2faf93abf730", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "3cb70233-7276-4108-8ac5-572334d733ca", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP4/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e77d5896-2bf5-4fa0-b57a-1f44cfeb198f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11680", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "837714ac-c900-40ee-bcad-f9ae7021f413", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12734,Microsoft.Compute/GetVMImageFromLocation30Min;73734", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:837714ac-c900-40ee-bcad-f9ae7021f413", - "Expires" : "-1", - "x-ms-request-id" : "09e82e32-dff2-4cc8-821c-58d87ce30193", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "e77d5896-2bf5-4fa0-b57a-1f44cfeb198f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP4/versions/2021.03.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "145c387b-2d94-4139-a6b4-1055d723ea92", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b224a7b6-25e1-48ab-8c6f-b6a3c8479a88", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12737,Microsoft.Compute/GetVMImageFromLocation30Min;73737", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:b224a7b6-25e1-48ab-8c6f-b6a3c8479a88", - "Expires" : "-1", - "x-ms-request-id" : "90a6d123-15d7-4acd-bdea-2659447bb414", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2021.03.04\"\r\n}", - "x-ms-client-request-id" : "145c387b-2d94-4139-a6b4-1055d723ea92", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP4/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23f3f187-da4b-4ff9-93d6-6949fc99679a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "696a8539-a04d-421b-a116-05a6b36504d4", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12735,Microsoft.Compute/GetVMImageFromLocation30Min;73735", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:696a8539-a04d-421b-a116-05a6b36504d4", - "Expires" : "-1", - "x-ms-request-id" : "3969385f-2f0a-4d22-a223-4420bf0ea8b5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "23f3f187-da4b-4ff9-93d6-6949fc99679a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP4/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "08173a6c-c06b-4a1d-9798-3fd0db07d861", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9897a1b9-b64f-496d-9292-05c80e9add23", - "Date" : "Tue, 24 May 2022 13:06:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12733,Microsoft.Compute/GetVMImageFromLocation30Min;73733", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:9897a1b9-b64f-496d-9292-05c80e9add23", - "Expires" : "-1", - "x-ms-request-id" : "e36513e6-fce4-4b68-9269-5934d5c1875f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP4/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "08173a6c-c06b-4a1d-9798-3fd0db07d861", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-sp4-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "012630eb-be40-4eae-b3b6-59515e7b269e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cc9b744-55bd-45e9-841c-249d4957db48", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15924,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:6cc9b744-55bd-45e9-841c-249d4957db48", - "Expires" : "-1", - "x-ms-request-id" : "ee8a8332-a83d-4e12-9844-944c4e565df8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2021.03.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "012630eb-be40-4eae-b3b6-59515e7b269e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-sp4-gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8a3af0c-b908-492a-a073-4f6059fc01a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a534f9a8-f55c-4b2a-8ab7-e929b461226c", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12731,Microsoft.Compute/GetVMImageFromLocation30Min;73731", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:a534f9a8-f55c-4b2a-8ab7-e929b461226c", - "Expires" : "-1", - "x-ms-request-id" : "f9c2e414-944e-4534-9921-3bce77bb19c9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "d8a3af0c-b908-492a-a073-4f6059fc01a1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-sp4-gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86625ab7-933b-40a8-95d5-9cbf33e3248b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11678", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05a27d8b-f213-484a-8f83-0045a7e9b198", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12729,Microsoft.Compute/GetVMImageFromLocation30Min;73729", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:05a27d8b-f213-484a-8f83-0045a7e9b198", - "Expires" : "-1", - "x-ms-request-id" : "5e25c52b-f93c-4ac2-802c-e66ee08da8b4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "86625ab7-933b-40a8-95d5-9cbf33e3248b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-sp4-gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9faa3fce-ab71-4e23-adf2-a82e0f4d356f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11678", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "841f89bc-f17d-4d44-8a47-4c69db39f533", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12732,Microsoft.Compute/GetVMImageFromLocation30Min;73732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:841f89bc-f17d-4d44-8a47-4c69db39f533", - "Expires" : "-1", - "x-ms-request-id" : "595fe77d-4e16-4df8-bc04-d3a9574a72c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "9faa3fce-ab71-4e23-adf2-a82e0f4d356f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-sp4-gen2/versions/2021.03.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80577d8e-5664-4c27-99dd-a0bbb80b6d63", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b436258-7b08-4341-8f57-42341f124daf", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12730,Microsoft.Compute/GetVMImageFromLocation30Min;73730", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:7b436258-7b08-4341-8f57-42341f124daf", - "Expires" : "-1", - "x-ms-request-id" : "0c76f5a6-21cb-4f4d-9d40-646995e4d0bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2021.03.04\"\r\n}", - "x-ms-client-request-id" : "80577d8e-5664-4c27-99dd-a0bbb80b6d63", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-sp4-gen2/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5164c14b-49cb-4963-9bef-37a2e6301c5d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11706", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "447eb759-18bd-4239-b2c9-6ff72a1a60d2", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12728,Microsoft.Compute/GetVMImageFromLocation30Min;73728", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130604Z:447eb759-18bd-4239-b2c9-6ff72a1a60d2", - "Expires" : "-1", - "x-ms-request-id" : "b302adb3-70cd-48de-9c54-10811657f824", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-sp4-gen2/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "5164c14b-49cb-4963-9bef-37a2e6301c5d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4252c80a-2396-4e19-8cdf-eaa30ed33445", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1363", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "db220880-8557-4e95-b9d4-74de21cc3821", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15923,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:db220880-8557-4e95-b9d4-74de21cc3821", - "Expires" : "-1", - "x-ms-request-id" : "13aaa879-ae19-4928-abc5-4518e157e031", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2021.03.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "4252c80a-2396-4e19-8cdf-eaa30ed33445", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15/versions/2021.03.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2645bbf-111f-4762-b3eb-24e3b2412a06", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1033", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "550531c3-5718-4af3-b018-ab7463362a75", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12727,Microsoft.Compute/GetVMImageFromLocation30Min;73727", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:550531c3-5718-4af3-b018-ab7463362a75", - "Expires" : "-1", - "x-ms-request-id" : "314579cd-e951-4164-9191-96e25b56ea9d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2021.03.04\"\r\n}", - "x-ms-client-request-id" : "b2645bbf-111f-4762-b3eb-24e3b2412a06", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eec65228-0f93-463e-af5f-23796b20051f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1033", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11705", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2fa9e2a4-44f9-474b-8fb7-aebee8c7cd9c", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12725,Microsoft.Compute/GetVMImageFromLocation30Min;73725", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:2fa9e2a4-44f9-474b-8fb7-aebee8c7cd9c", - "Expires" : "-1", - "x-ms-request-id" : "b36c3166-89d7-40e4-af40-691a0848289c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "eec65228-0f93-463e-af5f-23796b20051f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1350e93a-8524-4d6f-8dfd-7b62dd4396dd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1033", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c83aec6-6574-42cb-80b0-5c148b376c24", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12726,Microsoft.Compute/GetVMImageFromLocation30Min;73726", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:3c83aec6-6574-42cb-80b0-5c148b376c24", - "Expires" : "-1", - "x-ms-request-id" : "faee76e1-4180-4fe5-943e-946529395c95", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "1350e93a-8524-4d6f-8dfd-7b62dd4396dd", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "27614b01-5a79-48bc-98d9-b884e82cf1c3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1033", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82704202-5b7c-41da-aac3-01efbe9606e5", - "Date" : "Tue, 24 May 2022 13:06:04 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12724,Microsoft.Compute/GetVMImageFromLocation30Min;73724", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:82704202-5b7c-41da-aac3-01efbe9606e5", - "Expires" : "-1", - "x-ms-request-id" : "9b287ff1-268d-486b-be4b-ddee3fff49a0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "27614b01-5a79-48bc-98d9-b884e82cf1c3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a0a0328-72d9-42c3-8fe1-6777f0296bd7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1033", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66ac9327-6a73-4fc4-97e7-a24e1302e4f2", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12723,Microsoft.Compute/GetVMImageFromLocation30Min;73723", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:66ac9327-6a73-4fc4-97e7-a24e1302e4f2", - "Expires" : "-1", - "x-ms-request-id" : "9a780c5c-5408-4303-b91b-5edde7c07a4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "2a0a0328-72d9-42c3-8fe1-6777f0296bd7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e2a9e6c-acce-4cd3-8229-5896e993682f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1388", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b51646b-18f8-48a1-af19-dc79e574d0a1", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15922,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:7b51646b-18f8-48a1-af19-dc79e574d0a1", - "Expires" : "-1", - "x-ms-request-id" : "8f7b565b-a400-433c-b738-9fad4ed09ac8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2021.03.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "3e2a9e6c-acce-4cd3-8229-5896e993682f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15-gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "15c28487-af4b-4d2a-baba-21014d5c580c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1031", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86c9c073-1486-46a0-a174-f643f6e0a24f", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12722,Microsoft.Compute/GetVMImageFromLocation30Min;73722", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130605Z:86c9c073-1486-46a0-a174-f643f6e0a24f", - "Expires" : "-1", - "x-ms-request-id" : "4ef5a3e6-4fb1-485a-8dcc-9b1ba7f71387", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "15c28487-af4b-4d2a-baba-21014d5c580c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15-gen2/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5290df5e-37ba-45ca-bba2-b4c8884b4f2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1031", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d076e6d-16f6-4bb0-99d5-3dfbfee545c8", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12721,Microsoft.Compute/GetVMImageFromLocation30Min;73721", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130606Z:3d076e6d-16f6-4bb0-99d5-3dfbfee545c8", - "Expires" : "-1", - "x-ms-request-id" : "98840540-a399-4d76-a173-8f1adf69309a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "5290df5e-37ba-45ca-bba2-b4c8884b4f2e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15-gen2/versions/2021.03.04?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c77435ad-ff93-42e2-bec0-5fccf7e0faf5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1031", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "188d3cde-64cd-4c0e-8c48-21d9bf2a9c80", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12720,Microsoft.Compute/GetVMImageFromLocation30Min;73720", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130606Z:188d3cde-64cd-4c0e-8c48-21d9bf2a9c80", - "Expires" : "-1", - "x-ms-request-id" : "c190fce7-e6ec-4491-a6ce-5b477a6dbf34", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2021.03.04\"\r\n}", - "x-ms-client-request-id" : "c77435ad-ff93-42e2-bec0-5fccf7e0faf5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15-gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "60331e32-3362-49e0-8e12-a3449e46fbf8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1031", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d5192f12-e066-450d-a367-20594970ee35", - "Date" : "Tue, 24 May 2022 13:06:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12719,Microsoft.Compute/GetVMImageFromLocation30Min;73719", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130606Z:d5192f12-e066-450d-a367-20594970ee35", - "Expires" : "-1", - "x-ms-request-id" : "0a2fa4f4-6b79-4689-ac11-91a6400f6c1f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "60331e32-3362-49e0-8e12-a3449e46fbf8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/15-gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "32a1febf-d0b1-4fca-b2cd-c1f1be985c9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1031", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8fc71ce-d567-49b3-9d5e-02b8dc2fbaf6", - "Date" : "Tue, 24 May 2022 13:06:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12718,Microsoft.Compute/GetVMImageFromLocation30Min;73718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130606Z:f8fc71ce-d567-49b3-9d5e-02b8dc2fbaf6", - "Expires" : "-1", - "x-ms-request-id" : "c182e200-210f-4b9e-b6f9-6a2adcfcde41", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/15-gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "32a1febf-d0b1-4fca-b2cd-c1f1be985c9f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a7b47a0-b065-4461-944c-d1c5d7acd6a5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2265", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "109bed2f-4a37-42db-92bc-f77538623fcc", - "Date" : "Tue, 24 May 2022 13:06:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9960,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130606Z:109bed2f-4a37-42db-92bc-f77538623fcc", - "Expires" : "-1", - "x-ms-request-id" : "e71c44ae-6f04-4f31-ae05-4d6eabf1e860", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-sp4-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2-15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/gen2-15\"\r\n }\r\n]", - "x-ms-client-request-id" : "7a7b47a0-b065-4461-944c-d1c5d7acd6a5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "46e92e76-e32a-440f-83b9-aebcc85f62dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "828", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c67094d9-0eff-41cc-9929-4f6e8d5b5534", - "Date" : "Tue, 24 May 2022 13:06:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15921,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130607Z:c67094d9-0eff-41cc-9929-4f6e8d5b5534", - "Expires" : "-1", - "x-ms-request-id" : "85300375-eeac-40d0-af30-278d934c3ffc", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3/Versions/2022.02.01\"\r\n }\r\n]", - "x-ms-client-request-id" : "46e92e76-e32a-440f-83b9-aebcc85f62dc", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP3/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72db3e88-d2e3-4113-9163-06bb73f4443b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1e83c05-a892-48a7-8bec-d3a7442aabde", - "Date" : "Tue, 24 May 2022 13:06:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12716,Microsoft.Compute/GetVMImageFromLocation30Min;73716", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130607Z:e1e83c05-a892-48a7-8bec-d3a7442aabde", - "Expires" : "-1", - "x-ms-request-id" : "ee8996cb-d141-4fe8-a36e-23475e5b24cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "72db3e88-d2e3-4113-9163-06bb73f4443b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP3/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fd5a3ce-9bd9-4b2f-8edd-42b52de7716e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "221230f6-2f20-48bd-9e32-12173aeb7cd4", - "Date" : "Tue, 24 May 2022 13:06:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12717,Microsoft.Compute/GetVMImageFromLocation30Min;73717", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130607Z:221230f6-2f20-48bd-9e32-12173aeb7cd4", - "Expires" : "-1", - "x-ms-request-id" : "872349d1-a965-488e-9e55-4e3ad5eb53bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "7fd5a3ce-9bd9-4b2f-8edd-42b52de7716e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP3/versions/2022.02.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c5acf24-ad12-4d17-88b0-385ba8a92c41", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6518a927-441d-477b-9e1c-ee69935ba2c4", - "Date" : "Tue, 24 May 2022 13:06:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12715,Microsoft.Compute/GetVMImageFromLocation30Min;73715", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130607Z:6518a927-441d-477b-9e1c-ee69935ba2c4", - "Expires" : "-1", - "x-ms-request-id" : "4becdffc-16c5-4b09-80c7-69c48ee20262", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP3/Versions/2022.02.01\"\r\n}", - "x-ms-client-request-id" : "0c5acf24-ad12-4d17-88b0-385ba8a92c41", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8a52c14-1481-4630-8f0c-45de58d03676", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "828", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c170f5f7-77aa-456f-8c3e-028115a3c926", - "Date" : "Tue, 24 May 2022 13:06:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15920,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130607Z:c170f5f7-77aa-456f-8c3e-028115a3c926", - "Expires" : "-1", - "x-ms-request-id" : "3a865c80-27e7-4574-8a3e-e78ee7155eb9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4/Versions/2022.02.01\"\r\n }\r\n]", - "x-ms-client-request-id" : "f8a52c14-1481-4630-8f0c-45de58d03676", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP4/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8228c33e-cf50-46ee-a661-3ddf03c7492e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3219e0d9-5a78-4a5b-87b3-15a78521ff3a", - "Date" : "Tue, 24 May 2022 13:06:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12714,Microsoft.Compute/GetVMImageFromLocation30Min;73714", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130607Z:3219e0d9-5a78-4a5b-87b3-15a78521ff3a", - "Expires" : "-1", - "x-ms-request-id" : "4036720c-4193-41c0-982f-576249e4b3e2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "8228c33e-cf50-46ee-a661-3ddf03c7492e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP4/versions/2022.02.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e81df768-afca-44ec-a6cc-6a7d2bf09a2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce708eb7-332e-4b08-94b5-97f255b6bd05", - "Date" : "Tue, 24 May 2022 13:06:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12713,Microsoft.Compute/GetVMImageFromLocation30Min;73713", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130608Z:ce708eb7-332e-4b08-94b5-97f255b6bd05", - "Expires" : "-1", - "x-ms-request-id" : "34ac656b-a836-4913-87b5-017a35005c5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4/Versions/2022.02.01\"\r\n}", - "x-ms-client-request-id" : "e81df768-afca-44ec-a6cc-6a7d2bf09a2f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP4/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c78bb325-c8d4-40ac-a85e-9493795c3167", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "746", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0b14e7b9-7dfa-448c-b55e-546a4a40ebfd", - "Date" : "Tue, 24 May 2022 13:06:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12712,Microsoft.Compute/GetVMImageFromLocation30Min;73712", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130608Z:0b14e7b9-7dfa-448c-b55e-546a4a40ebfd", - "Expires" : "-1", - "x-ms-request-id" : "d388aa31-414d-4861-9f60-2ac8333d2957", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP4/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "c78bb325-c8d4-40ac-a85e-9493795c3167", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-sp4-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4311b669-b71a-4e4f-be18-d43108f0fa78", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "843", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11790", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ce56b27-c509-4c5a-a680-bd49af9b1dcb", - "Date" : "Tue, 24 May 2022 13:06:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15919,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130608Z:7ce56b27-c509-4c5a-a680-bd49af9b1dcb", - "Expires" : "-1", - "x-ms-request-id" : "ac3159e1-42a0-47ca-8a37-fdb82ba8ece1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2/Versions/2022.02.01\"\r\n }\r\n]", - "x-ms-client-request-id" : "4311b669-b71a-4e4f-be18-d43108f0fa78", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-sp4-gen2/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6924300-a47b-4295-a53a-87972d77a100", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2dd02a8e-1854-4fb6-976f-89ac9212fd7d", - "Date" : "Tue, 24 May 2022 13:06:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12710,Microsoft.Compute/GetVMImageFromLocation30Min;73710", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:2dd02a8e-1854-4fb6-976f-89ac9212fd7d", - "Expires" : "-1", - "x-ms-request-id" : "99dcbaed-9a56-416e-8ca6-77b2655cb777", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "f6924300-a47b-4295-a53a-87972d77a100", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-sp4-gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03d9d515-5894-40c0-8656-5604438e78d1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11778", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9999daf6-2f40-4ded-b845-7bad6da18fdc", - "Date" : "Tue, 24 May 2022 13:06:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12711,Microsoft.Compute/GetVMImageFromLocation30Min;73711", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:9999daf6-2f40-4ded-b845-7bad6da18fdc", - "Expires" : "-1", - "x-ms-request-id" : "b6e174fb-2e09-4dc0-a7dc-763986691b84", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "03d9d515-5894-40c0-8656-5604438e78d1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-sp4-gen2/versions/2022.02.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "191da93d-738f-4f62-b9d6-1541ff16b469", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0f4f1e8e-3b08-4334-89bf-ecd0150dbe18", - "Date" : "Tue, 24 May 2022 13:06:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12709,Microsoft.Compute/GetVMImageFromLocation30Min;73709", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:0f4f1e8e-3b08-4334-89bf-ecd0150dbe18", - "Expires" : "-1", - "x-ms-request-id" : "bee048ce-5c26-482b-9242-968ee78c1c86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.02.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-sp4-gen2/Versions/2022.02.01\"\r\n}", - "x-ms-client-request-id" : "191da93d-738f-4f62-b9d6-1541ff16b469", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/15/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb88108c-9aad-434f-aecd-489e8ccb0486", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "545", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4f95b56-22d0-4f55-8e1a-dac1fbb5b8ba", - "Date" : "Tue, 24 May 2022 13:06:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15918,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43918", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:f4f95b56-22d0-4f55-8e1a-dac1fbb5b8ba", - "Expires" : "-1", - "x-ms-request-id" : "0e4792f1-b0cc-4e93-b301-c73a56fbb0b6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15/Versions/2022.01.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "cb88108c-9aad-434f-aecd-489e8ccb0486", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/15/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef05d581-297e-4a22-979e-06d1bfbc0415", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "742", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11875", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa3f692b-9269-4f94-bd58-b3f009112b95", - "Date" : "Tue, 24 May 2022 13:06:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12708,Microsoft.Compute/GetVMImageFromLocation30Min;73708", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:aa3f692b-9269-4f94-bd58-b3f009112b95", - "Expires" : "-1", - "x-ms-request-id" : "2868a243-a22e-47a5-90d5-d6a1aeb271a7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "ef05d581-297e-4a22-979e-06d1bfbc0415", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/15/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "549e431c-ff45-423c-a027-a28662f6286e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "742", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b79396df-b481-42e7-8547-a128c876b117", - "Date" : "Tue, 24 May 2022 13:06:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12707,Microsoft.Compute/GetVMImageFromLocation30Min;73707", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:b79396df-b481-42e7-8547-a128c876b117", - "Expires" : "-1", - "x-ms-request-id" : "e4f2228a-cbac-4fb1-ac9f-ed0029acf5c2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "549e431c-ff45-423c-a027-a28662f6286e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/15-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acd95e3f-3270-4823-8bc8-1946ea6065bb", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "555", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11704", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "19aaa39e-8aba-487a-b18a-c9e566934045", - "Date" : "Tue, 24 May 2022 13:06:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15917,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130609Z:19aaa39e-8aba-487a-b18a-c9e566934045", - "Expires" : "-1", - "x-ms-request-id" : "8961c847-e5b9-458f-9b61-05890c93fb0f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15-gen2/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15-gen2/Versions/2022.01.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "acd95e3f-3270-4823-8bc8-1946ea6065bb", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/15-gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "225af895-763b-4fc8-b597-ae39d35fbb4c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31155b74-fba2-4f34-8e55-ed147e990a5d", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12706,Microsoft.Compute/GetVMImageFromLocation30Min;73706", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130610Z:31155b74-fba2-4f34-8e55-ed147e990a5d", - "Expires" : "-1", - "x-ms-request-id" : "0eee0463-4b91-4575-944b-45d0652c577c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15-gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "225af895-763b-4fc8-b597-ae39d35fbb4c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/15-gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f061c60a-f03b-4926-895c-612c6cec4920", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11800", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4e9529ec-27a0-4c4e-b72a-c1985c03fc5f", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12705,Microsoft.Compute/GetVMImageFromLocation30Min;73705", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130610Z:4e9529ec-27a0-4c4e-b72a-c1985c03fc5f", - "Expires" : "-1", - "x-ms-request-id" : "90668d80-3483-4ca6-a4cc-ccf03a332887", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/15-gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "f061c60a-f03b-4926-895c-612c6cec4920", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/gen2-15/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85ae8d63-f784-47f3-a55b-449ec81d2018", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "279", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "522a0baf-a2a7-40f8-8dd5-a9e076f1b8d5", - "Date" : "Tue, 24 May 2022 13:06:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15916,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130610Z:522a0baf-a2a7-40f8-8dd5-a9e076f1b8d5", - "Expires" : "-1", - "x-ms-request-id" : "b85c5c77-f6da-4bdb-87fb-4422613e1d67", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/gen2-15/Versions/2021.01.12\"\r\n }\r\n]", - "x-ms-client-request-id" : "85ae8d63-f784-47f3-a55b-449ec81d2018", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/gen2-15/versions/2021.01.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a809a98-ffe5-4bc0-b164-b61e930e7ae6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "740", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "43a2d304-540a-4c2b-ac09-13c447c94ab8", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12704,Microsoft.Compute/GetVMImageFromLocation30Min;73704", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130610Z:43a2d304-540a-4c2b-ac09-13c447c94ab8", - "Expires" : "-1", - "x-ms-request-id" : "4a0e545b-f177-4cc5-9725-f826215b3e5c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/gen2-15/Versions/2021.01.12\"\r\n}", - "x-ms-client-request-id" : "8a809a98-ffe5-4bc0-b164-b61e930e7ae6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "af61c5d5-eb01-4296-a663-6844f2eaf14f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3497c908-b1af-404f-8a9c-0cf98190fff7", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9959,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130611Z:3497c908-b1af-404f-8a9c-0cf98190fff7", - "Expires" : "-1", - "x-ms-request-id" : "4f8cc78c-c93e-450b-964e-e8e35a90512b", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "af61c5d5-eb01-4296-a663-6844f2eaf14f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c4fdab9-7cac-422f-8a92-d0d385c45111", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1a90126-fb87-414e-9044-ba00a21fc61d", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15915,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43915", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130611Z:e1a90126-fb87-414e-9044-ba00a21fc61d", - "Expires" : "-1", - "x-ms-request-id" : "1cc1fb80-9f50-46b6-823a-56afb4f6527d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "9c4fdab9-7cac-422f-8a92-d0d385c45111", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5f3f4ac-fa20-4152-b59f-2cec3dab8150", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11676", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb202457-094a-4cc0-bc59-6347a94150eb", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12702,Microsoft.Compute/GetVMImageFromLocation30Min;73702", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130611Z:bb202457-094a-4cc0-bc59-6347a94150eb", - "Expires" : "-1", - "x-ms-request-id" : "62460e35-701f-4e09-b2aa-7ef0b7ad7459", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "f5f3f4ac-fa20-4152-b59f-2cec3dab8150", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen1/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f268f7f-f6cc-481a-b3a9-b5372dfe6439", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11676", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ab0dc24-7ccc-4c1b-980e-f3371de3fd62", - "Date" : "Tue, 24 May 2022 13:06:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12703,Microsoft.Compute/GetVMImageFromLocation30Min;73703", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130611Z:0ab0dc24-7ccc-4c1b-980e-f3371de3fd62", - "Expires" : "-1", - "x-ms-request-id" : "f429bca3-41fd-4f5f-badc-097adb07f39b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "8f268f7f-f6cc-481a-b3a9-b5372dfe6439", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen1/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1583f7f1-ffdf-4e4e-8448-53c2e4dd3846", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30409109-2694-4675-a804-9dcac02d75e4", - "Date" : "Tue, 24 May 2022 13:06:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12700,Microsoft.Compute/GetVMImageFromLocation30Min;73700", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130611Z:30409109-2694-4675-a804-9dcac02d75e4", - "Expires" : "-1", - "x-ms-request-id" : "ea5659e0-23f6-4fc2-8f4f-adbcd2fbff7d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "1583f7f1-ffdf-4e4e-8448-53c2e4dd3846", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c5754a6-df39-4b49-8c7d-1a78c572458d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11809", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1dedbb24-bd68-4755-a49c-c54b88d7bdf6", - "Date" : "Tue, 24 May 2022 13:06:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12701,Microsoft.Compute/GetVMImageFromLocation30Min;73701", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130611Z:1dedbb24-bd68-4755-a49c-c54b88d7bdf6", - "Expires" : "-1", - "x-ms-request-id" : "8bfecc33-977a-476d-a05d-8a1fba262d0e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "1c5754a6-df39-4b49-8c7d-1a78c572458d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ee619de-57bf-4f8f-8b8b-82e9a6fd1536", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "50505d45-e4b7-4293-a46c-2858599dfd02", - "Date" : "Tue, 24 May 2022 13:06:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15914,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:50505d45-e4b7-4293-a46c-2858599dfd02", - "Expires" : "-1", - "x-ms-request-id" : "50e934cc-6c01-4013-9e59-3a9c5c74b607", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2021.09.13\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2021.12.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "4ee619de-57bf-4f8f-8b8b-82e9a6fd1536", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7017894c-38a2-4dfb-9b31-36fe3715cfd6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf7fff83-0369-414b-9e13-90f7dac00013", - "Date" : "Tue, 24 May 2022 13:06:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12699,Microsoft.Compute/GetVMImageFromLocation30Min;73699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:cf7fff83-0369-414b-9e13-90f7dac00013", - "Expires" : "-1", - "x-ms-request-id" : "f7e42505-c2e8-4d8a-9ab9-00434bb5ac53", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "7017894c-38a2-4dfb-9b31-36fe3715cfd6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen2/versions/2021.12.15?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "574ac253-2f9e-45e2-a715-a06094f7d45d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "54ef1103-9682-4b9e-9819-f1f9de639b0f", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12698,Microsoft.Compute/GetVMImageFromLocation30Min;73698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:54ef1103-9682-4b9e-9819-f1f9de639b0f", - "Expires" : "-1", - "x-ms-request-id" : "c321bfc0-fef7-443b-b5f4-261908be2b2b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2021.12.15\"\r\n}", - "x-ms-client-request-id" : "574ac253-2f9e-45e2-a715-a06094f7d45d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c18643c-2234-47c9-bb0c-22abcb52d596", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "76b2a582-3164-4f79-a2f8-a30eb0f193f4", - "Date" : "Tue, 24 May 2022 13:06:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12697,Microsoft.Compute/GetVMImageFromLocation30Min;73697", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:76b2a582-3164-4f79-a2f8-a30eb0f193f4", - "Expires" : "-1", - "x-ms-request-id" : "8e0c7564-4b46-4220-a622-b7e455d08a29", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "0c18643c-2234-47c9-bb0c-22abcb52d596", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5/skus/gen2/versions/2021.09.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3e0d55c-e9a3-45c0-b915-4e5232df7d26", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1d7b66b8-108b-408e-8a56-5ea60760812a", - "Date" : "Tue, 24 May 2022 13:06:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12696,Microsoft.Compute/GetVMImageFromLocation30Min;73696", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:1d7b66b8-108b-408e-8a56-5ea60760812a", - "Expires" : "-1", - "x-ms-request-id" : "c69b5688-964d-481e-a64a-1d0a8bc97812", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5/Skus/gen2/Versions/2021.09.13\"\r\n}", - "x-ms-client-request-id" : "e3e0d55c-e9a3-45c0-b915-4e5232df7d26", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b46bc13-de96-4495-84fd-77f174b30196", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11808", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "02165acb-4ae2-4ff8-b7e8-575cba08c16c", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9958,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:02165acb-4ae2-4ff8-b7e8-575cba08c16c", - "Expires" : "-1", - "x-ms-request-id" : "231993aa-abe4-4b23-be61-25b6ea609b8a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "8b46bc13-de96-4495-84fd-77f174b30196", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a33b8ded-e990-479e-8fd3-7823b05e8d32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11807", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1997648a-d820-4dab-b3ff-3279ebeb00ee", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15913,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43913", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130612Z:1997648a-d820-4dab-b3ff-3279ebeb00ee", - "Expires" : "-1", - "x-ms-request-id" : "c38eea2e-0709-438b-915f-09e3d33a558e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "a33b8ded-e990-479e-8fd3-7823b05e8d32", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "77541691-c4ae-4f5e-a04a-e24d41812741", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "45541045-d31b-4bfe-972f-0b8e8358842c", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12694,Microsoft.Compute/GetVMImageFromLocation30Min;73694", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130613Z:45541045-d31b-4bfe-972f-0b8e8358842c", - "Expires" : "-1", - "x-ms-request-id" : "5e4e1354-8537-4d2d-acab-660df4b72342", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "77541691-c4ae-4f5e-a04a-e24d41812741", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a715eac2-b2f6-40d5-b2e4-2bfd863c3d87", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "82a7a61d-9b7e-47d0-86da-5f846774f1c9", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12695,Microsoft.Compute/GetVMImageFromLocation30Min;73695", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130613Z:82a7a61d-9b7e-47d0-86da-5f846774f1c9", - "Expires" : "-1", - "x-ms-request-id" : "77692590-b0f7-4d33-8aef-a8e95a3380cf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "a715eac2-b2f6-40d5-b2e4-2bfd863c3d87", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "765782cd-8775-4969-971c-27a9bca50f1f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f91c224a-4dee-4cb5-889c-dfc73d644dcc", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12692,Microsoft.Compute/GetVMImageFromLocation30Min;73692", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130613Z:f91c224a-4dee-4cb5-889c-dfc73d644dcc", - "Expires" : "-1", - "x-ms-request-id" : "a6424fae-0301-4dda-8146-6cd8b2d13aba", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "765782cd-8775-4969-971c-27a9bca50f1f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd007434-6303-4dc7-abfc-baadfeaa803d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5a4b2900-6ebf-49e7-8896-ead5b2d26f3f", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12693,Microsoft.Compute/GetVMImageFromLocation30Min;73693", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130613Z:5a4b2900-6ebf-49e7-8896-ead5b2d26f3f", - "Expires" : "-1", - "x-ms-request-id" : "3d1c476f-36af-4370-af91-d96c7eeea969", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "dd007434-6303-4dc7-abfc-baadfeaa803d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c233d10-7d71-4ea1-ab48-4121264b1931", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11883", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a22fa264-4d49-4ad2-bc01-0b9403c151c4", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12691,Microsoft.Compute/GetVMImageFromLocation30Min;73691", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130613Z:a22fa264-4d49-4ad2-bc01-0b9403c151c4", - "Expires" : "-1", - "x-ms-request-id" : "682177d8-ea3a-4fde-bdac-5a2a0ab9ed5d", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "4c233d10-7d71-4ea1-ab48-4121264b1931", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen1/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3693fe22-8a5e-4c34-ab0f-695c6dd76103", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed7f45e1-2db0-4d76-b2e8-12a0c8f4f461", - "Date" : "Tue, 24 May 2022 13:06:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12690,Microsoft.Compute/GetVMImageFromLocation30Min;73690", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130613Z:ed7f45e1-2db0-4d76-b2e8-12a0c8f4f461", - "Expires" : "-1", - "x-ms-request-id" : "b6b2a756-b7b0-484e-9745-f559b13dc2b8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen1/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "3693fe22-8a5e-4c34-ab0f-695c6dd76103", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2d77c64-37b2-4be2-8088-d2878a06a7b0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11786", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd6f4d65-1b4d-430d-8c01-df33e7692028", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15912,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:cd6f4d65-1b4d-430d-8c01-df33e7692028", - "Expires" : "-1", - "x-ms-request-id" : "7d4acd43-f548-4fc9-8cd2-305d4588fece", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2021.09.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2021.12.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "a2d77c64-37b2-4be2-8088-d2878a06a7b0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8bd63abc-af57-45f7-910d-03aeb48a27ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11918", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5507be14-a575-4764-9073-edbd72017cc5", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12689,Microsoft.Compute/GetVMImageFromLocation30Min;73689", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:5507be14-a575-4764-9073-edbd72017cc5", - "Expires" : "-1", - "x-ms-request-id" : "16a20744-2e8a-473f-a0f0-348deeab647b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "8bd63abc-af57-45f7-910d-03aeb48a27ab", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions/2021.12.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fea7c80c-869b-4339-9044-f8d5fa5ff967", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11874", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "60105ca9-6746-40c1-8050-fbed531ef8f6", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12687,Microsoft.Compute/GetVMImageFromLocation30Min;73687", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:60105ca9-6746-40c1-8050-fbed531ef8f6", - "Expires" : "-1", - "x-ms-request-id" : "79272255-2ac7-4d2a-979e-f227627947c6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2021.12.09\"\r\n}", - "x-ms-client-request-id" : "fea7c80c-869b-4339-9044-f8d5fa5ff967", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9c64b9b-7d9a-41ed-89a9-c3d7b85785b1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11836", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "add870b2-c4d5-471a-aba2-9121e4745d65", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12686,Microsoft.Compute/GetVMImageFromLocation30Min;73686", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:add870b2-c4d5-471a-aba2-9121e4745d65", - "Expires" : "-1", - "x-ms-request-id" : "ec6640c9-bb85-43cd-86fd-ec96410801fd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "c9c64b9b-7d9a-41ed-89a9-c3d7b85785b1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45a0f03f-a797-422a-8c53-bacbd3ba39e7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11852", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b01fddd-98f0-4e0f-945b-9f039e699139", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12688,Microsoft.Compute/GetVMImageFromLocation30Min;73688", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:6b01fddd-98f0-4e0f-945b-9f039e699139", - "Expires" : "-1", - "x-ms-request-id" : "670f796c-822b-4682-9fc6-093e65795820", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "45a0f03f-a797-422a-8c53-bacbd3ba39e7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8046dc08-32c6-4550-8f2f-a9f366e1ea4a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11703", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b806fa01-d3ec-4a2f-86c1-bb95d7524331", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12684,Microsoft.Compute/GetVMImageFromLocation30Min;73684", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:b806fa01-d3ec-4a2f-86c1-bb95d7524331", - "Expires" : "-1", - "x-ms-request-id" : "74e2efd6-5051-433d-83aa-3c794f67fe59", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "8046dc08-32c6-4550-8f2f-a9f366e1ea4a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-12-sp5-byos/skus/gen2/versions/2021.09.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2da9e04-40c6-45a8-9046-cc268032d177", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bac8a188-396b-4e53-a8a4-7bdb8859882f", - "Date" : "Tue, 24 May 2022 13:06:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12685,Microsoft.Compute/GetVMImageFromLocation30Min;73685", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:bac8a188-396b-4e53-a8a4-7bdb8859882f", - "Expires" : "-1", - "x-ms-request-id" : "27a5ec91-21de-4f6e-98f8-58f90c0ed6c7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-12-sp5-byos/Skus/gen2/Versions/2021.09.08\"\r\n}", - "x-ms-client-request-id" : "f2da9e04-40c6-45a8-9046-cc268032d177", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab50dd68-2457-406d-a203-6cfd063ca266", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "28c50630-9628-4e90-ac19-540df854540c", - "Date" : "Tue, 24 May 2022 13:06:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9957,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130614Z:28c50630-9628-4e90-ac19-540df854540c", - "Expires" : "-1", - "x-ms-request-id" : "066dc535-26a2-45df-b11e-e1851cacf34a", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "ab50dd68-2457-406d-a203-6cfd063ca266", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2f7641c-ebf8-41c2-9841-76f354603d43", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "563", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd61b120-c8a3-4aa4-948b-511214023c1e", - "Date" : "Tue, 24 May 2022 13:06:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15911,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130615Z:fd61b120-c8a3-4aa4-948b-511214023c1e", - "Expires" : "-1", - "x-ms-request-id" : "93bc3849-c424-44f5-850a-c254fcf2163d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen1/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen1/Versions/2022.01.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "a2f7641c-ebf8-41c2-9841-76f354603d43", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus/gen1/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "df9a5192-3e1e-4db8-a634-ef9be2ac86d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11675", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "69040c50-569a-48ad-b785-f5696a4b6a36", - "Date" : "Tue, 24 May 2022 13:06:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12683,Microsoft.Compute/GetVMImageFromLocation30Min;73683", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130615Z:69040c50-569a-48ad-b785-f5696a4b6a36", - "Expires" : "-1", - "x-ms-request-id" : "332ec4e5-c06f-4222-a303-078be9a01440", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen1/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "df9a5192-3e1e-4db8-a634-ef9be2ac86d8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "88789f75-3ea4-487f-b4fd-3864a8cb86d4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "751", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "30a5cb1b-cba1-4165-a1e9-31b5eb64493b", - "Date" : "Tue, 24 May 2022 13:06:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12682,Microsoft.Compute/GetVMImageFromLocation30Min;73682", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130615Z:30a5cb1b-cba1-4165-a1e9-31b5eb64493b", - "Expires" : "-1", - "x-ms-request-id" : "93fb9c7e-705d-4432-96e5-1d0b255f4556", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "88789f75-3ea4-487f-b4fd-3864a8cb86d4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "63d40c6a-315d-459c-91c1-3863ecda49f5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "563", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13edd0fc-92a7-4b0e-8a52-cc410af6fb50", - "Date" : "Tue, 24 May 2022 13:06:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15910,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130615Z:13edd0fc-92a7-4b0e-8a52-cc410af6fb50", - "Expires" : "-1", - "x-ms-request-id" : "65223452-0a63-4380-b88a-bdf1a75ae238", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen2/Versions/2021.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen2/Versions/2022.01.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "63d40c6a-315d-459c-91c1-3863ecda49f5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8836381-c6be-4c7b-8b4c-6e340d12f88e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f6f7a84-7f8b-4038-b6dd-988ce15070d4", - "Date" : "Tue, 24 May 2022 13:06:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12681,Microsoft.Compute/GetVMImageFromLocation30Min;73681", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130615Z:1f6f7a84-7f8b-4038-b6dd-988ce15070d4", - "Expires" : "-1", - "x-ms-request-id" : "a66cb20f-2f10-41b0-8ed0-cd9251a04561", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "f8836381-c6be-4c7b-8b4c-6e340d12f88e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1/skus/gen2/versions/2021.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3712c4ac-f163-406a-ab84-2fbe4b70cb09", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "744", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa3639b2-3c6d-4592-807f-81c378749dc7", - "Date" : "Tue, 24 May 2022 13:06:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12680,Microsoft.Compute/GetVMImageFromLocation30Min;73680", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130615Z:aa3639b2-3c6d-4592-807f-81c378749dc7", - "Expires" : "-1", - "x-ms-request-id" : "c96b41d9-4cdf-49d7-8c46-2912ffded3ff", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1/Skus/gen2/Versions/2021.03.08\"\r\n}", - "x-ms-client-request-id" : "3712c4ac-f163-406a-ab84-2fbe4b70cb09", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfdd394f-1732-4cc6-892a-7d50d7f838e0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11806", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6823ad20-19aa-4b61-9567-59dc98d236f6", - "Date" : "Tue, 24 May 2022 13:06:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9956,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130616Z:6823ad20-19aa-4b61-9567-59dc98d236f6", - "Expires" : "-1", - "x-ms-request-id" : "5db012a6-e901-4bfb-bfd8-1d92bf4f01fd", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "dfdd394f-1732-4cc6-892a-7d50d7f838e0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "def0d75d-649b-4f14-b268-f090e3624570", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c20c96db-2dba-431d-ae5f-7657f9697d16", - "Date" : "Tue, 24 May 2022 13:06:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15909,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43909", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130616Z:c20c96db-2dba-431d-ae5f-7657f9697d16", - "Expires" : "-1", - "x-ms-request-id" : "61eac6e4-5a07-4029-9ce2-053cf509b85d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "def0d75d-649b-4f14-b268-f090e3624570", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen1/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41ccd678-1e73-4491-8418-4d3c8610c35d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7fcc2757-9fd1-4f53-8fb2-3de423eb6e13", - "Date" : "Tue, 24 May 2022 13:06:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12679,Microsoft.Compute/GetVMImageFromLocation30Min;73679", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130616Z:7fcc2757-9fd1-4f53-8fb2-3de423eb6e13", - "Expires" : "-1", - "x-ms-request-id" : "424fa9e1-eb57-48ff-a7f7-4db81e6173e6", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "41ccd678-1e73-4491-8418-4d3c8610c35d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "786568f3-6856-46cd-81e4-03b23c27f168", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11702", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "231b17c8-2603-4873-84aa-e422e361f18f", - "Date" : "Tue, 24 May 2022 13:06:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12678,Microsoft.Compute/GetVMImageFromLocation30Min;73678", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130616Z:231b17c8-2603-4873-84aa-e422e361f18f", - "Expires" : "-1", - "x-ms-request-id" : "a2049c0c-a679-4f97-af36-d71a5b61cf45", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "786568f3-6856-46cd-81e4-03b23c27f168", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "31d02691-33d1-4295-9692-ac070ea8350c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7cc40513-fc0d-4b1f-be35-bf8aaebb1d3c", - "Date" : "Tue, 24 May 2022 13:06:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12676,Microsoft.Compute/GetVMImageFromLocation30Min;73676", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130616Z:7cc40513-fc0d-4b1f-be35-bf8aaebb1d3c", - "Expires" : "-1", - "x-ms-request-id" : "0cd7ec73-ef25-4e6e-a664-d5fa31850389", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "31d02691-33d1-4295-9692-ac070ea8350c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35017280-780c-4776-831c-22d7d6c5035b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "32f4fbb4-bf91-4b63-ada6-895df95be899", - "Date" : "Tue, 24 May 2022 13:06:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12677,Microsoft.Compute/GetVMImageFromLocation30Min;73677", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130616Z:32f4fbb4-bf91-4b63-ada6-895df95be899", - "Expires" : "-1", - "x-ms-request-id" : "58edeb3b-fd8c-4207-b8e2-aab44a4fdafd", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "35017280-780c-4776-831c-22d7d6c5035b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen1/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d1f8b3e-8d8b-4de2-a7e4-1fefb9313370", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0279c0e1-b313-456d-83dd-b88f3620d0d8", - "Date" : "Tue, 24 May 2022 13:06:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12675,Microsoft.Compute/GetVMImageFromLocation30Min;73675", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:0279c0e1-b313-456d-83dd-b88f3620d0d8", - "Expires" : "-1", - "x-ms-request-id" : "90f79834-cc0f-4a00-86e9-b1b0273ae296", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen1/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "5d1f8b3e-8d8b-4de2-a7e4-1fefb9313370", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cb7b584-afd8-4f88-b109-2d91225516bd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "99216918-7641-44f4-a5e8-9d6da2873e8c", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15908,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:99216918-7641-44f4-a5e8-9d6da2873e8c", - "Expires" : "-1", - "x-ms-request-id" : "d10159f0-e69a-4d23-82dd-02b109a94cf8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "0cb7b584-afd8-4f88-b109-2d91225516bd", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1c4dc9a-f392-484d-8d7c-4e238e4a025c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9476bac-4d59-4800-9257-f5422cc229c8", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12674,Microsoft.Compute/GetVMImageFromLocation30Min;73674", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:a9476bac-4d59-4800-9257-f5422cc229c8", - "Expires" : "-1", - "x-ms-request-id" : "ea11110a-4138-437f-8020-441a1d939ec4", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "c1c4dc9a-f392-484d-8d7c-4e238e4a025c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbbc94f0-1bfa-4ba9-bdf1-692c8ada3b2f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11674", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7273114-7363-40c7-9118-1f2e2cd9ac7e", - "Date" : "Tue, 24 May 2022 13:06:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12673,Microsoft.Compute/GetVMImageFromLocation30Min;73673", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:a7273114-7363-40c7-9118-1f2e2cd9ac7e", - "Expires" : "-1", - "x-ms-request-id" : "ed119ab6-721c-4040-ab24-00310fcf9de1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "cbbc94f0-1bfa-4ba9-bdf1-692c8ada3b2f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12b000e3-9b9e-4f89-81e6-f3c5efe65568", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b844602-a9dd-4ba0-b0d8-1f4c8f2c481d", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12672,Microsoft.Compute/GetVMImageFromLocation30Min;73672", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:7b844602-a9dd-4ba0-b0d8-1f4c8f2c481d", - "Expires" : "-1", - "x-ms-request-id" : "9e3fdbab-a0d4-42af-8bd4-c4aeae8c2b88", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "12b000e3-9b9e-4f89-81e6-f3c5efe65568", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e799b05e-d883-4e37-a0ae-bbb9053e389b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "becc7c92-b593-4837-b889-0a77cb442165", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12671,Microsoft.Compute/GetVMImageFromLocation30Min;73671", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:becc7c92-b593-4837-b889-0a77cb442165", - "Expires" : "-1", - "x-ms-request-id" : "87cac746-3424-4400-a3cc-5995616e8853", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "e799b05e-d883-4e37-a0ae-bbb9053e389b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp1-byos/skus/gen2/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a4c6ff1-d307-497d-bf75-f6b66f4a0412", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bcd18d34-e339-4043-ade9-ba63c29d7b5e", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12670,Microsoft.Compute/GetVMImageFromLocation30Min;73670", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130617Z:bcd18d34-e339-4043-ade9-ba63c29d7b5e", - "Expires" : "-1", - "x-ms-request-id" : "2d5dadae-9b22-43e1-ab01-0796b89bea4f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp1-byos/Skus/gen2/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "6a4c6ff1-d307-497d-bf75-f6b66f4a0412", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f7e41c3-1af9-4efc-8d8d-323522aea9cf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11701", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a9b4c43a-3065-48a4-8098-f70d22b1a657", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9955,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130618Z:a9b4c43a-3065-48a4-8098-f70d22b1a657", - "Expires" : "-1", - "x-ms-request-id" : "b1ce9e71-0d4f-42a6-8a9b-a9422aa83a10", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "7f7e41c3-1af9-4efc-8d8d-323522aea9cf", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bff50efa-43a9-4f77-9c5e-d45bd6e8a59b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "843", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "85eceb26-ba7f-4648-bac9-93e140af11c1", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15907,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130618Z:85eceb26-ba7f-4648-bac9-93e140af11c1", - "Expires" : "-1", - "x-ms-request-id" : "061a188b-eacf-493b-8ce0-edf2c26cf162", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1/Versions/2022.04.19\"\r\n }\r\n]", - "x-ms-client-request-id" : "bff50efa-43a9-4f77-9c5e-d45bd6e8a59b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen1/versions/2022.04.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6a783e7-cead-4ea8-846f-edc9796eca9f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11789", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5ac00591-cdbb-4b47-9dee-42958897ef47", - "Date" : "Tue, 24 May 2022 13:06:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12669,Microsoft.Compute/GetVMImageFromLocation30Min;73669", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130618Z:5ac00591-cdbb-4b47-9dee-42958897ef47", - "Expires" : "-1", - "x-ms-request-id" : "314da389-fdca-4949-a2c4-4d4c6d6b32f0", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1/Versions/2022.04.19\"\r\n}", - "x-ms-client-request-id" : "a6a783e7-cead-4ea8-846f-edc9796eca9f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen1/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90656cdf-0e56-412f-bb85-64fd8bf8b2f3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a3c9f16-1619-41e5-b902-4a5117988bdf", - "Date" : "Tue, 24 May 2022 13:06:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12668,Microsoft.Compute/GetVMImageFromLocation30Min;73668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130618Z:8a3c9f16-1619-41e5-b902-4a5117988bdf", - "Expires" : "-1", - "x-ms-request-id" : "1f89e5ea-416c-4fdf-901b-e0d1e63541c1", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "90656cdf-0e56-412f-bb85-64fd8bf8b2f3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "257632a6-31f1-457c-8ce8-fa7a19f809b5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11789", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ad3efa4-facc-4ada-a4c9-e781e5172c4d", - "Date" : "Tue, 24 May 2022 13:06:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12667,Microsoft.Compute/GetVMImageFromLocation30Min;73667", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130619Z:2ad3efa4-facc-4ada-a4c9-e781e5172c4d", - "Expires" : "-1", - "x-ms-request-id" : "600ec770-f0cd-4f95-9610-023dba31092e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "257632a6-31f1-457c-8ce8-fa7a19f809b5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d9dd037-729e-457f-b2bf-fce60fbf2c54", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "843", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11886", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33e6f01b-9987-4d95-b449-57da081fb55c", - "Date" : "Tue, 24 May 2022 13:06:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15906,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130619Z:33e6f01b-9987-4d95-b449-57da081fb55c", - "Expires" : "-1", - "x-ms-request-id" : "0ce71baa-18b4-4b7e-ad8c-2a7d33d59cd8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2/Versions/2022.04.19\"\r\n }\r\n]", - "x-ms-client-request-id" : "4d9dd037-729e-457f-b2bf-fce60fbf2c54", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13e8e269-738d-4328-ac0e-26bcd8e37998", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a0b171af-b441-4296-afed-1d45bb305117", - "Date" : "Tue, 24 May 2022 13:06:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12666,Microsoft.Compute/GetVMImageFromLocation30Min;73666", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130619Z:a0b171af-b441-4296-afed-1d45bb305117", - "Expires" : "-1", - "x-ms-request-id" : "1b60f2be-2cc2-4eec-afa1-6383ecea280f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "13e8e269-738d-4328-ac0e-26bcd8e37998", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cce905c9-b843-4a30-9ac6-b3fb0ba6a2d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "326f5cbc-4a5e-47ad-95a3-19037f9658d7", - "Date" : "Tue, 24 May 2022 13:06:18 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12664,Microsoft.Compute/GetVMImageFromLocation30Min;73664", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130619Z:326f5cbc-4a5e-47ad-95a3-19037f9658d7", - "Expires" : "-1", - "x-ms-request-id" : "90fd32dd-acfd-4b22-bdf9-d440c3868513", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "cce905c9-b843-4a30-9ac6-b3fb0ba6a2d3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2/skus/gen2/versions/2022.04.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8480f24e-df82-4a82-8d99-42ebdadebee5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b1cedb4-4038-4b3d-a333-4f515f6df1f6", - "Date" : "Tue, 24 May 2022 13:06:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12665,Microsoft.Compute/GetVMImageFromLocation30Min;73665", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130619Z:9b1cedb4-4038-4b3d-a333-4f515f6df1f6", - "Expires" : "-1", - "x-ms-request-id" : "a278bfa6-319d-4d19-95c1-914abb4e3bed", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2/Skus/gen2/Versions/2022.04.19\"\r\n}", - "x-ms-client-request-id" : "8480f24e-df82-4a82-8d99-42ebdadebee5", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c95d23d6-ade3-45c9-a8c5-f27e8d9e4c8a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b461caf-44e9-4a82-a323-dbdcce4f091c", - "Date" : "Tue, 24 May 2022 13:06:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9954,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130620Z:9b461caf-44e9-4a82-a323-dbdcce4f091c", - "Expires" : "-1", - "x-ms-request-id" : "125485e8-1a73-41e3-a2cb-7b848c979da1", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "c95d23d6-ade3-45c9-a8c5-f27e8d9e4c8a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2abc206-6977-4e24-9b2c-ed1e7a575139", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "26d18d6d-fd57-45a6-8e98-e7e2aba991d3", - "Date" : "Tue, 24 May 2022 13:06:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15905,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130620Z:26d18d6d-fd57-45a6-8e98-e7e2aba991d3", - "Expires" : "-1", - "x-ms-request-id" : "0e2f4544-fff7-404d-80eb-05f83ccfa087", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.04.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "e2abc206-6977-4e24-9b2c-ed1e7a575139", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen1/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b8f8ff7-619a-4e72-bb07-553da9c91c1d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "35f3dacd-f30e-4133-bbad-10f74c44506c", - "Date" : "Tue, 24 May 2022 13:06:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12661,Microsoft.Compute/GetVMImageFromLocation30Min;73661", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130620Z:35f3dacd-f30e-4133-bbad-10f74c44506c", - "Expires" : "-1", - "x-ms-request-id" : "a482e153-b883-468f-8740-3f3c7a44dc7b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "0b8f8ff7-619a-4e72-bb07-553da9c91c1d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "565e4a46-7a89-46fb-9ab6-ead096a49d5c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eebaf52c-7160-4c09-98be-ec1bff0c8838", - "Date" : "Tue, 24 May 2022 13:06:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12663,Microsoft.Compute/GetVMImageFromLocation30Min;73663", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130620Z:eebaf52c-7160-4c09-98be-ec1bff0c8838", - "Expires" : "-1", - "x-ms-request-id" : "49e6bda6-1b20-415e-a5ec-d3e3088fa53c", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "565e4a46-7a89-46fb-9ab6-ead096a49d5c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen1/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "114e276c-c3c5-4c21-afba-b8422b1681a1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11798", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2d483f6-ca2c-4bd0-ae92-49354c772ccb", - "Date" : "Tue, 24 May 2022 13:06:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12662,Microsoft.Compute/GetVMImageFromLocation30Min;73662", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130620Z:b2d483f6-ca2c-4bd0-ae92-49354c772ccb", - "Expires" : "-1", - "x-ms-request-id" : "0a7471ad-7bee-4bd3-9123-394f80b5cbd7", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "114e276c-c3c5-4c21-afba-b8422b1681a1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen1/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3d80a64-2d64-45a1-91aa-c40990ca2440", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11872", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c4303f5d-75e8-4b6b-8f8e-e468a7f7d3c8", - "Date" : "Tue, 24 May 2022 13:06:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12660,Microsoft.Compute/GetVMImageFromLocation30Min;73660", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130620Z:c4303f5d-75e8-4b6b-8f8e-e468a7f7d3c8", - "Expires" : "-1", - "x-ms-request-id" : "5779dc26-1430-44ce-82ae-1184744a7cdc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "f3d80a64-2d64-45a1-91aa-c40990ca2440", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen1/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "99532717-e56f-43df-9901-0ad4e84afd32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7557b791-7b84-45df-876d-00371a2dc599", - "Date" : "Tue, 24 May 2022 13:06:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12659,Microsoft.Compute/GetVMImageFromLocation30Min;73659", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:7557b791-7b84-45df-876d-00371a2dc599", - "Expires" : "-1", - "x-ms-request-id" : "199833ff-71d0-4557-b07b-ee042cece639", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen1/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "99532717-e56f-43df-9901-0ad4e84afd32", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1b8b5f1-8d35-46f5-9e08-e825669d067a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77eadeff-e7a0-425b-9d18-4368573eb68c", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15904,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:77eadeff-e7a0-425b-9d18-4368573eb68c", - "Expires" : "-1", - "x-ms-request-id" : "70a19c81-12dd-453f-9847-cc5456f1feee", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2021.06.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.04.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "c1b8b5f1-8d35-46f5-9e08-e825669d067a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f1aaa92-18f9-4db9-ab34-fe959521c4b8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bb069ec4-a52b-4ae1-b94b-68935dd38ecb", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12658,Microsoft.Compute/GetVMImageFromLocation30Min;73658", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:bb069ec4-a52b-4ae1-b94b-68935dd38ecb", - "Expires" : "-1", - "x-ms-request-id" : "4e95b3cd-786c-4a34-941b-0f1a47c40e71", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "2f1aaa92-18f9-4db9-ab34-fe959521c4b8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen2/versions/2021.06.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dbb55da-3e1c-41d8-89d3-ff74c4b43d74", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18daa193-6116-4565-8e6f-d1bf5407b398", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12657,Microsoft.Compute/GetVMImageFromLocation30Min;73657", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:18daa193-6116-4565-8e6f-d1bf5407b398", - "Expires" : "-1", - "x-ms-request-id" : "b11c9ab2-c0da-420f-851c-9222606aa74f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.06.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2021.06.05\"\r\n}", - "x-ms-client-request-id" : "3dbb55da-3e1c-41d8-89d3-ff74c4b43d74", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "56610053-b140-4693-a4bd-c33696888a01", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11700", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "fedf6501-ee34-4ada-bf69-607d57e1b13c", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12656,Microsoft.Compute/GetVMImageFromLocation30Min;73656", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:fedf6501-ee34-4ada-bf69-607d57e1b13c", - "Expires" : "-1", - "x-ms-request-id" : "746d6459-9aa7-4029-9895-61fefce82d43", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "56610053-b140-4693-a4bd-c33696888a01", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen2/versions/2022.04.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "965f7213-644c-486b-b276-83d6b7fb6838", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11906", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c1c841bb-ddf4-4303-b56f-cc85110fa31d", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12655,Microsoft.Compute/GetVMImageFromLocation30Min;73655", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:c1c841bb-ddf4-4303-b56f-cc85110fa31d", - "Expires" : "-1", - "x-ms-request-id" : "337d75fa-6f35-4b64-b3ca-5825f85d7bcb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.04.08\"\r\n}", - "x-ms-client-request-id" : "965f7213-644c-486b-b276-83d6b7fb6838", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp2-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e5f320b-2fee-4993-9ce7-fa5d1b936cb6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11797", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f9bdb5e-d691-4a6e-a341-eeda5d884788", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12654,Microsoft.Compute/GetVMImageFromLocation30Min;73654", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130621Z:8f9bdb5e-d691-4a6e-a341-eeda5d884788", - "Expires" : "-1", - "x-ms-request-id" : "3135d78b-f0e8-4c77-96cd-a71bee7ce7bf", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp2-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "5e5f320b-2fee-4993-9ce7-fa5d1b936cb6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7736bd86-6010-4798-b83b-dc0a25df18a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "761", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1f58353c-7a29-4b28-9be1-c653b0f430ce", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9953,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130622Z:1f58353c-7a29-4b28-9be1-c653b0f430ce", - "Expires" : "-1", - "x-ms-request-id" : "7b80fb4c-041a-483f-8c78-880c49fd2767", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "7736bd86-6010-4798-b83b-dc0a25df18a0", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc5284b0-10ca-4ab6-ade8-4f74ce1840d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "845222cc-f4a1-45f4-937d-207f65ec1cef", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15903,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130622Z:845222cc-f4a1-45f4-937d-207f65ec1cef", - "Expires" : "-1", - "x-ms-request-id" : "c07c387c-3229-42df-b7c7-acc56fe4bf16", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2021.12.19\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "cc5284b0-10ca-4ab6-ade8-4f74ce1840d2", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen1/versions/2021.12.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c2c9b89-f18c-40b8-923c-9bbd6cfb81b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11699", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "428789e4-dea8-494c-9335-2177470b0ec2", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12653,Microsoft.Compute/GetVMImageFromLocation30Min;73653", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130622Z:428789e4-dea8-494c-9335-2177470b0ec2", - "Expires" : "-1", - "x-ms-request-id" : "836c38cb-fc30-499c-87a0-4bbe2b30933b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2021.12.19\"\r\n}", - "x-ms-client-request-id" : "5c2c9b89-f18c-40b8-923c-9bbd6cfb81b4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen1/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1cf158e0-033b-436d-bd9f-dba67ef0176c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11833", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df850e6a-6d63-4c46-be6f-3a8281d7e746", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12652,Microsoft.Compute/GetVMImageFromLocation30Min;73652", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130622Z:df850e6a-6d63-4c46-be6f-3a8281d7e746", - "Expires" : "-1", - "x-ms-request-id" : "eda6b964-bce0-410d-9570-0db0281a3b67", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "1cf158e0-033b-436d-bd9f-dba67ef0176c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen1/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9cfac9b-53e9-4b4f-aa1c-93e778c94db8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11673", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "17a56182-bd24-435c-ae98-0c3308076b3c", - "Date" : "Tue, 24 May 2022 13:06:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12651,Microsoft.Compute/GetVMImageFromLocation30Min;73651", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130622Z:17a56182-bd24-435c-ae98-0c3308076b3c", - "Expires" : "-1", - "x-ms-request-id" : "fc69d017-cda5-4b5c-805b-51eaa2b084e8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "a9cfac9b-53e9-4b4f-aa1c-93e778c94db8", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c7f2b75-2ded-4f0a-b835-563b9d539104", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b99c121-c5fb-4dac-9b0c-6ee9a8f60eab", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12650,Microsoft.Compute/GetVMImageFromLocation30Min;73650", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130622Z:2b99c121-c5fb-4dac-9b0c-6ee9a8f60eab", - "Expires" : "-1", - "x-ms-request-id" : "94333c18-efd9-4565-8760-9e87b8ddb12e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "9c7f2b75-2ded-4f0a-b835-563b9d539104", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "58dbd826-3c47-46a5-8634-09a61d42b97f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1123", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dbb9e4dd-baa5-4f86-8035-d92a25c7b082", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15902,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:dbb9e4dd-baa5-4f86-8035-d92a25c7b082", - "Expires" : "-1", - "x-ms-request-id" : "2d509ba1-021a-45a1-a6c0-c7dd222bae2b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2021.12.19\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2022.01.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2022.04.27\"\r\n }\r\n]", - "x-ms-client-request-id" : "58dbd826-3c47-46a5-8634-09a61d42b97f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5a9c8a9-1ecf-4b3c-b2d8-3f8438fd0557", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4b7652ab-9a6f-44c4-a514-abab0c9ec5dc", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12649,Microsoft.Compute/GetVMImageFromLocation30Min;73649", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:4b7652ab-9a6f-44c4-a514-abab0c9ec5dc", - "Expires" : "-1", - "x-ms-request-id" : "1a605015-78b0-4ba8-83d8-3a0476fc4436", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "d5a9c8a9-1ecf-4b3c-b2d8-3f8438fd0557", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen2/versions/2022.04.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "600aa3e0-14cc-4736-b8ae-e903d9aeb271", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e06cc496-9447-471a-ae77-da71b19e6864", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12648,Microsoft.Compute/GetVMImageFromLocation30Min;73648", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:e06cc496-9447-471a-ae77-da71b19e6864", - "Expires" : "-1", - "x-ms-request-id" : "bc3f60cd-5a68-4bfa-998a-19e1cafc7b74", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2022.04.27\"\r\n}", - "x-ms-client-request-id" : "600aa3e0-14cc-4736-b8ae-e903d9aeb271", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen2/versions/2022.01.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ea0a837-ea16-4257-9ab1-76d77e3e6240", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "308144cb-ee35-403b-8dca-9f349c3ad5b2", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12647,Microsoft.Compute/GetVMImageFromLocation30Min;73647", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:308144cb-ee35-403b-8dca-9f349c3ad5b2", - "Expires" : "-1", - "x-ms-request-id" : "a6a6b87b-3944-47a0-a64f-7747d5bcae36", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2022.01.26\"\r\n}", - "x-ms-client-request-id" : "8ea0a837-ea16-4257-9ab1-76d77e3e6240", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3/skus/gen2/versions/2021.12.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e935505-062b-460b-b5f5-d31f107073c1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "864", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "211408b8-8b99-46ce-9a8c-4f5f085367cb", - "Date" : "Tue, 24 May 2022 13:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12646,Microsoft.Compute/GetVMImageFromLocation30Min;73646", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:211408b8-8b99-46ce-9a8c-4f5f085367cb", - "Expires" : "-1", - "x-ms-request-id" : "52c45777-3c46-4149-abd7-bc1bad5a81a5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3/Skus/gen2/Versions/2021.12.19\"\r\n}", - "x-ms-client-request-id" : "4e935505-062b-460b-b5f5-d31f107073c1", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11508bbd-e750-4519-8fe6-9574bfbf8c6a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "771", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4b26765-03e3-48e8-9282-d3cf729c26db", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9952,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:a4b26765-03e3-48e8-9282-d3cf729c26db", - "Expires" : "-1", - "x-ms-request-id" : "a869d268-08ea-4d7c-9d8a-f5fa12ea4da5", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "11508bbd-e750-4519-8fe6-9574bfbf8c6a", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d995df4-ce1b-460e-80ee-4f52e7ac045c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18f71843-826b-4f45-818d-aefcae7c6a57", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15901,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130623Z:18f71843-826b-4f45-818d-aefcae7c6a57", - "Expires" : "-1", - "x-ms-request-id" : "d29442aa-3f59-4cf7-90a4-5251fc112213", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2021.12.19\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "1d995df4-ce1b-460e-80ee-4f52e7ac045c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions/2021.12.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e56b8e3b-42f9-44e2-850e-60865a518642", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11672", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5cd35c2f-b6cc-4929-82fd-6905b4828be3", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12645,Microsoft.Compute/GetVMImageFromLocation30Min;73645", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:5cd35c2f-b6cc-4929-82fd-6905b4828be3", - "Expires" : "-1", - "x-ms-request-id" : "19fb4c12-6b84-4903-b400-1bae41ba0948", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2021.12.19\"\r\n}", - "x-ms-client-request-id" : "e56b8e3b-42f9-44e2-850e-60865a518642", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70a5812f-1fe2-43c9-935d-e803b9cf4d7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a84fee7c-5d8b-42f0-ba22-0d4ac748811e", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12643,Microsoft.Compute/GetVMImageFromLocation30Min;73643", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:a84fee7c-5d8b-42f0-ba22-0d4ac748811e", - "Expires" : "-1", - "x-ms-request-id" : "ba186ad9-65c2-460d-8a16-ebe450095a78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "70a5812f-1fe2-43c9-935d-e803b9cf4d7e", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c434aed-cd61-414f-96ec-0e172e26a475", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "12fc0169-4568-4a26-93d2-e09525c1b8d1", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12640,Microsoft.Compute/GetVMImageFromLocation30Min;73640", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:12fc0169-4568-4a26-93d2-e09525c1b8d1", - "Expires" : "-1", - "x-ms-request-id" : "da566a41-12db-4f1d-8b01-7c4cbc133586", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "9c434aed-cd61-414f-96ec-0e172e26a475", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3350b086-cd71-46b0-b08a-7d9373873309", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11795", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "504527bd-8527-4124-821f-a3b16170a272", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12642,Microsoft.Compute/GetVMImageFromLocation30Min;73642", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:504527bd-8527-4124-821f-a3b16170a272", - "Expires" : "-1", - "x-ms-request-id" : "ac227ccb-f8e6-4ec4-b3bf-f460b2030abb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "3350b086-cd71-46b0-b08a-7d9373873309", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a3baaea-b9bd-4bc3-afd8-8659d8300f21", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "00048f1a-5e66-4aa4-b139-ca3538417c3e", - "Date" : "Tue, 24 May 2022 13:06:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12641,Microsoft.Compute/GetVMImageFromLocation30Min;73641", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:00048f1a-5e66-4aa4-b139-ca3538417c3e", - "Expires" : "-1", - "x-ms-request-id" : "b72ff307-3e6b-49f5-a0a4-05dd70ec20c8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "8a3baaea-b9bd-4bc3-afd8-8659d8300f21", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen1/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d81d8066-dfeb-4cdc-b1d3-891df5afd1d9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1046", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7772cf68-3584-4bff-9460-b1896e434ef7", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12644,Microsoft.Compute/GetVMImageFromLocation30Min;73644", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:7772cf68-3584-4bff-9460-b1896e434ef7", - "Expires" : "-1", - "x-ms-request-id" : "222db4cb-8f37-4f75-a7d8-af880793d230", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen1/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "d81d8066-dfeb-4cdc-b1d3-891df5afd1d9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d9139a2-5d73-4a6d-b7f9-10a57b4f1e73", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1713", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c3e9e07-ee64-4a5d-90e5-5597d52869fd", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15900,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:8c3e9e07-ee64-4a5d-90e5-5597d52869fd", - "Expires" : "-1", - "x-ms-request-id" : "69fc4f01-665a-4a9f-b04a-738e8a5286bf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2021.09.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2021.12.19\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.01.27\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.03.08\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.05.05\"\r\n }\r\n]", - "x-ms-client-request-id" : "7d9139a2-5d73-4a6d-b7f9-10a57b4f1e73", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions/2021.09.24?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fff09f90-9fdc-41f2-97bd-b67a7c010ef9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11670", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b029f805-4f42-4b9f-a18f-25051a8a6b60", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12639,Microsoft.Compute/GetVMImageFromLocation30Min;73639", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:b029f805-4f42-4b9f-a18f-25051a8a6b60", - "Expires" : "-1", - "x-ms-request-id" : "412399e1-e76e-44b6-abcc-a658597f7624", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.09.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2021.09.24\"\r\n}", - "x-ms-client-request-id" : "fff09f90-9fdc-41f2-97bd-b67a7c010ef9", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions/2021.12.19?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52245c78-dbfe-4667-aacf-78f96ebc6b84", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11670", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cfd0e915-8e74-455b-b110-1c9dd70156bd", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12637,Microsoft.Compute/GetVMImageFromLocation30Min;73637", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:cfd0e915-8e74-455b-b110-1c9dd70156bd", - "Expires" : "-1", - "x-ms-request-id" : "8a385882-ddb7-4523-922b-594541f95c1f", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.12.19\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2021.12.19\"\r\n}", - "x-ms-client-request-id" : "52245c78-dbfe-4667-aacf-78f96ebc6b84", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions/2022.03.08?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6168a1c1-b165-49ca-b496-a1acb144b869", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11698", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b839b074-e8fb-4e9a-8629-afc93474e1c0", - "Date" : "Tue, 24 May 2022 13:06:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12638,Microsoft.Compute/GetVMImageFromLocation30Min;73638", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:b839b074-e8fb-4e9a-8629-afc93474e1c0", - "Expires" : "-1", - "x-ms-request-id" : "e0952b57-9409-4d43-8b8c-95ac6bf596c5", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.03.08\"\r\n}", - "x-ms-client-request-id" : "6168a1c1-b165-49ca-b496-a1acb144b869", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2870f8f0-55e0-4117-90c9-5ef50eb4d851", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "23cd12e5-474c-4be5-b245-1b549c909874", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12636,Microsoft.Compute/GetVMImageFromLocation30Min;73636", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:23cd12e5-474c-4be5-b245-1b549c909874", - "Expires" : "-1", - "x-ms-request-id" : "500a407a-e1f3-4d92-9806-e579ce228f2e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "2870f8f0-55e0-4117-90c9-5ef50eb4d851", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions/2022.05.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7db721c1-868a-4970-9a1b-13d709b02584", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3bd97bb-9cc8-486e-af23-113cc9cc5c1b", - "Date" : "Tue, 24 May 2022 13:06:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12635,Microsoft.Compute/GetVMImageFromLocation30Min;73635", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:f3bd97bb-9cc8-486e-af23-113cc9cc5c1b", - "Expires" : "-1", - "x-ms-request-id" : "cc178969-c53a-4c85-a48d-00503c89d6ec", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.05.05\"\r\n}", - "x-ms-client-request-id" : "7db721c1-868a-4970-9a1b-13d709b02584", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/sles-sap-15-sp3-byos/skus/gen2/versions/2022.01.27?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ce63d87-7c84-4bac-a7d0-2e7c4c68d042", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1d3d890-fdfd-4243-b3fe-300d1612f644", - "Date" : "Tue, 24 May 2022 13:06:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12634,Microsoft.Compute/GetVMImageFromLocation30Min;73634", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130624Z:a1d3d890-fdfd-4243-b3fe-300d1612f644", - "Expires" : "-1", - "x-ms-request-id" : "cb5e5bf3-f285-4c24-9c2b-57cce5c45530", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.27\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/sles-sap-15-sp3-byos/Skus/gen2/Versions/2022.01.27\"\r\n}", - "x-ms-client-request-id" : "2ce63d87-7c84-4bac-a7d0-2e7c4c68d042", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4645af77-43df-4a13-b891-83c86b66221f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2686", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11697", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba120bcf-3a1d-4bfd-97fa-1eeff7538d35", - "Date" : "Tue, 24 May 2022 13:06:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9951,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130625Z:ba120bcf-3a1d-4bfd-97fa-1eeff7538d35", - "Expires" : "-1", - "x-ms-request-id" : "2376ae17-b763-4ff0-bf35-310015b7c3e3", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-sp4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-sp4-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2-12-sp4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/gen2-12-sp4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gen2-15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/gen2-15\"\r\n }\r\n]", - "x-ms-client-request-id" : "4645af77-43df-4a13-b891-83c86b66221f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b021bc6-4390-4530-af85-d2d39c87061d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "843", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "124e32de-b061-441d-ae39-437cbe67513e", - "Date" : "Tue, 24 May 2022 13:06:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15899,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130625Z:124e32de-b061-441d-ae39-437cbe67513e", - "Expires" : "-1", - "x-ms-request-id" : "b7ecf73d-6fac-4315-a105-0dcd65ac634d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3/Versions/2022.03.07\"\r\n }\r\n]", - "x-ms-client-request-id" : "6b021bc6-4390-4530-af85-d2d39c87061d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP3/versions/2022.03.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eefde50c-2e2e-46d6-9014-fc54a52b3952", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11850", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cd4e4e36-3d11-43b1-8ce1-eb522be5689c", - "Date" : "Tue, 24 May 2022 13:06:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12633,Microsoft.Compute/GetVMImageFromLocation30Min;73633", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130625Z:cd4e4e36-3d11-43b1-8ce1-eb522be5689c", - "Expires" : "-1", - "x-ms-request-id" : "234f0e09-b862-4121-800b-58d82dc51d2e", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3/Versions/2022.03.07\"\r\n}", - "x-ms-client-request-id" : "eefde50c-2e2e-46d6-9014-fc54a52b3952", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP3/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5776a342-ace8-477e-8ed7-aa3c2bcf8ca6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c8871add-69e7-474e-997c-e1b9cc3ce163", - "Date" : "Tue, 24 May 2022 13:06:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12632,Microsoft.Compute/GetVMImageFromLocation30Min;73632", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130625Z:c8871add-69e7-474e-997c-e1b9cc3ce163", - "Expires" : "-1", - "x-ms-request-id" : "924e5c45-1a09-4ab9-9682-a06a079d8c86", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "5776a342-ace8-477e-8ed7-aa3c2bcf8ca6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP3/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8a12031-2aff-4fb8-8e21-338e5cdd3738", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "871", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6444cb72-4732-4d0c-8c5a-73539ffe7495", - "Date" : "Tue, 24 May 2022 13:06:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12631,Microsoft.Compute/GetVMImageFromLocation30Min;73631", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130625Z:6444cb72-4732-4d0c-8c5a-73539ffe7495", - "Expires" : "-1", - "x-ms-request-id" : "0f83c8aa-e5e0-45e7-a28c-ba29364b0db3", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP3/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "a8a12031-2aff-4fb8-8e21-338e5cdd3738", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a861039-d311-44a2-bda7-4db50be34590", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1403", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86996327-1157-4fb2-bba3-246c1393d6f8", - "Date" : "Tue, 24 May 2022 13:06:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15898,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130626Z:86996327-1157-4fb2-bba3-246c1393d6f8", - "Expires" : "-1", - "x-ms-request-id" : "a0aa0600-cbba-428c-a093-3637d02e4387", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "7a861039-d311-44a2-bda7-4db50be34590", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4ed776c-2230-428c-a5c6-68e81f3228fe", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca9567dc-7783-4241-b08f-b58a4b8679ca", - "Date" : "Tue, 24 May 2022 13:06:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12629,Microsoft.Compute/GetVMImageFromLocation30Min;73629", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130626Z:ca9567dc-7783-4241-b08f-b58a4b8679ca", - "Expires" : "-1", - "x-ms-request-id" : "565730b8-2ff7-498f-80a8-16cb378af7d2", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "d4ed776c-2230-428c-a5c6-68e81f3228fe", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c544678-d90a-48fc-9dfc-f3ce6cfc8e16", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d1e47976-ee4c-4bd8-ae3b-7cdbe4e59cd0", - "Date" : "Tue, 24 May 2022 13:06:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12630,Microsoft.Compute/GetVMImageFromLocation30Min;73630", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130626Z:d1e47976-ee4c-4bd8-ae3b-7cdbe4e59cd0", - "Expires" : "-1", - "x-ms-request-id" : "284cc7bc-7e98-438b-aa2e-625696119f0b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "4c544678-d90a-48fc-9dfc-f3ce6cfc8e16", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4a971fc-e23e-47ec-9d27-0ff8ed2de9ee", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "003c2990-368f-42b6-8f14-92e0004765c2", - "Date" : "Tue, 24 May 2022 13:06:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12628,Microsoft.Compute/GetVMImageFromLocation30Min;73628", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130626Z:003c2990-368f-42b6-8f14-92e0004765c2", - "Expires" : "-1", - "x-ms-request-id" : "ddace1b6-cd26-4de4-ae5b-e691fc57e98b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "f4a971fc-e23e-47ec-9d27-0ff8ed2de9ee", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b01597cb-6056-40ef-879a-56b7202307f6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce96c8ab-d175-4620-ba81-19dd4038651e", - "Date" : "Tue, 24 May 2022 13:06:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12627,Microsoft.Compute/GetVMImageFromLocation30Min;73627", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130626Z:ce96c8ab-d175-4620-ba81-19dd4038651e", - "Expires" : "-1", - "x-ms-request-id" : "9f6b812b-0d84-4d0d-88a0-ef8784da8b66", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "b01597cb-6056-40ef-879a-56b7202307f6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "061305b3-a2e8-48fe-89ae-77f6766ea164", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1041", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e0aa248-632e-4f72-a456-128d3991e2e5", - "Date" : "Tue, 24 May 2022 13:06:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12626,Microsoft.Compute/GetVMImageFromLocation30Min;73626", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130626Z:5e0aa248-632e-4f72-a456-128d3991e2e5", - "Expires" : "-1", - "x-ms-request-id" : "b0f68c2b-9e03-42e5-9e61-be6efabef2b9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "061305b3-a2e8-48fe-89ae-77f6766ea164", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2820b8b-3fe5-43ab-9560-67e2a08b785f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1428", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b84bf2dc-6c40-4d50-84e2-75f7ea8ce32a", - "Date" : "Tue, 24 May 2022 13:06:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15897,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43897", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:b84bf2dc-6c40-4d50-84e2-75f7ea8ce32a", - "Expires" : "-1", - "x-ms-request-id" : "83a6fee4-29d0-49c9-b366-9a352b3b0250", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.18\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2021.02.18\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "c2820b8b-3fe5-43ab-9560-67e2a08b785f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4-gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "17801577-c35a-4bc0-aa27-3fade6da03a6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34fe4967-07a0-4cbc-b40c-93ef40298c10", - "Date" : "Tue, 24 May 2022 13:06:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12622,Microsoft.Compute/GetVMImageFromLocation30Min;73622", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:34fe4967-07a0-4cbc-b40c-93ef40298c10", - "Expires" : "-1", - "x-ms-request-id" : "62c7f763-829e-4a82-8aca-837cc17c4e94", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "17801577-c35a-4bc0-aa27-3fade6da03a6", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4-gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "44b6a6c3-4051-4cf8-9047-a52cd6cd8fca", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "31d74410-6bd9-4c68-9f62-76aac1665c50", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12623,Microsoft.Compute/GetVMImageFromLocation30Min;73623", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:31d74410-6bd9-4c68-9f62-76aac1665c50", - "Expires" : "-1", - "x-ms-request-id" : "5d5815f8-325f-4642-94b0-b10cbc88c428", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "44b6a6c3-4051-4cf8-9047-a52cd6cd8fca", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4-gen2/versions/2021.02.18?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33760dfe-a9fc-4d7f-b296-05934e41f07b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "46807461-2a92-43ac-b42d-e84448353a87", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12625,Microsoft.Compute/GetVMImageFromLocation30Min;73625", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:46807461-2a92-43ac-b42d-e84448353a87", - "Expires" : "-1", - "x-ms-request-id" : "f4346208-19a3-4782-ba95-87d787e31ffc", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.02.18\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2021.02.18\"\r\n}", - "x-ms-client-request-id" : "33760dfe-a9fc-4d7f-b296-05934e41f07b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4-gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfca3cdb-cd6e-4fd5-bf8d-d7e22e20fe99", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11829", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b7bb8b1-7541-4123-8bbc-02f87f88e9f9", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12624,Microsoft.Compute/GetVMImageFromLocation30Min;73624", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:1b7bb8b1-7541-4123-8bbc-02f87f88e9f9", - "Expires" : "-1", - "x-ms-request-id" : "67dcac66-0e40-472d-a19e-295b6b7d6225", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "bfca3cdb-cd6e-4fd5-bf8d-d7e22e20fe99", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-sp4-gen2/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5962de8-cdca-446f-ae02-144e94bd506f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1039", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c23d5b4-9125-4551-bc8b-f6488268db3a", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12621,Microsoft.Compute/GetVMImageFromLocation30Min;73621", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:1c23d5b4-9125-4551-bc8b-f6488268db3a", - "Expires" : "-1", - "x-ms-request-id" : "0db75dca-36f7-4727-bf3b-b24d60759d9b", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-sp4-gen2/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "a5962de8-cdca-446f-ae02-144e94bd506f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ff53822-3695-457b-8c46-6df73ed1b24d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1383", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11777", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d31552f9-082f-42c5-ab00-555f13a993c5", - "Date" : "Tue, 24 May 2022 13:06:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15896,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130627Z:d31552f9-082f-42c5-ab00-555f13a993c5", - "Expires" : "-1", - "x-ms-request-id" : "b1cf1372-7cc3-4253-a567-3c2d33d25c91", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "6ff53822-3695-457b-8c46-6df73ed1b24d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a2c0085-6476-43c6-bfde-461f2dbf449d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d018a17-6d1c-4512-85cb-b263c5c832fc", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12620,Microsoft.Compute/GetVMImageFromLocation30Min;73620", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130628Z:4d018a17-6d1c-4512-85cb-b263c5c832fc", - "Expires" : "-1", - "x-ms-request-id" : "0af11c3a-73ab-4e9d-a947-f369b4ec17bb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "9a2c0085-6476-43c6-bfde-461f2dbf449d", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9bdd56b0-5447-4399-8560-e02261869db7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11776", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5d174344-6486-4fbe-ae83-d59b9d73fcc5", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12619,Microsoft.Compute/GetVMImageFromLocation30Min;73619", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130628Z:5d174344-6486-4fbe-ae83-d59b9d73fcc5", - "Expires" : "-1", - "x-ms-request-id" : "1247e3e3-6451-4e1d-837d-97eccbd7105a", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "9bdd56b0-5447-4399-8560-e02261869db7", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae5119e3-d5c5-4090-a5a5-0d1a7f50181c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b952cdc5-e80d-4cdd-9b3f-6d7a76f68bac", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12618,Microsoft.Compute/GetVMImageFromLocation30Min;73618", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130628Z:b952cdc5-e80d-4cdd-9b3f-6d7a76f68bac", - "Expires" : "-1", - "x-ms-request-id" : "ee7e9aff-f3b5-4f3a-b829-423115b968cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "ae5119e3-d5c5-4090-a5a5-0d1a7f50181c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d020e93-e08d-40dd-9e1d-0c40886b6460", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11785", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "174746bc-e889-48f0-897a-4cca0f7e334e", - "Date" : "Tue, 24 May 2022 13:06:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12617,Microsoft.Compute/GetVMImageFromLocation30Min;73617", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130628Z:174746bc-e889-48f0-897a-4cca0f7e334e", - "Expires" : "-1", - "x-ms-request-id" : "89041dc6-3926-4ad3-af30-1be785c5f463", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "2d020e93-e08d-40dd-9e1d-0c40886b6460", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd9a5a74-3eca-43a4-8847-f3a9a03de8ab", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1037", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f1652fda-97c8-43f8-9a2e-acd0038a8dfa", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12616,Microsoft.Compute/GetVMImageFromLocation30Min;73616", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130628Z:f1652fda-97c8-43f8-9a2e-acd0038a8dfa", - "Expires" : "-1", - "x-ms-request-id" : "5a075eb1-af82-45c5-b53d-8442cf49c880", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "fd9a5a74-3eca-43a4-8847-f3a9a03de8ab", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70bd7398-78fe-4923-bc45-62d988abb306", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1408", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ae1235a-e6b1-43b5-ace6-596b3d2a5321", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15895,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130628Z:2ae1235a-e6b1-43b5-ace6-596b3d2a5321", - "Expires" : "-1", - "x-ms-request-id" : "899dc2bc-ccf7-4c42-adf3-35905e829e21", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2021.03.05\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.01.28\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.03.09\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.04.07\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.05.06\"\r\n }\r\n]", - "x-ms-client-request-id" : "70bd7398-78fe-4923-bc45-62d988abb306", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15-gen2/versions/2022.03.09?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "005326c2-4c01-4969-910e-bc0915e73a34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11696", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f1175ae-1323-46cf-84c8-cc3ac494cce5", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12614,Microsoft.Compute/GetVMImageFromLocation30Min;73614", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:4f1175ae-1323-46cf-84c8-cc3ac494cce5", - "Expires" : "-1", - "x-ms-request-id" : "d0c7893d-21e5-48ca-8745-4e3c03d84e76", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.03.09\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.03.09\"\r\n}", - "x-ms-client-request-id" : "005326c2-4c01-4969-910e-bc0915e73a34", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15-gen2/versions/2021.03.05?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d12503b-d0b1-471e-9669-92956934a88c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9e4b883b-a564-4278-8f69-de50f7f500d5", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12613,Microsoft.Compute/GetVMImageFromLocation30Min;73613", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:9e4b883b-a564-4278-8f69-de50f7f500d5", - "Expires" : "-1", - "x-ms-request-id" : "6e744ee9-0365-46b5-92a6-27371d724a80", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.03.05\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2021.03.05\"\r\n}", - "x-ms-client-request-id" : "1d12503b-d0b1-471e-9669-92956934a88c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15-gen2/versions/2022.04.07?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "65546ca5-5cd9-450d-b66f-b0ce75cdae6b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "11d49cd9-9d71-4574-9410-e4bda27b837c", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12615,Microsoft.Compute/GetVMImageFromLocation30Min;73615", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:11d49cd9-9d71-4574-9410-e4bda27b837c", - "Expires" : "-1", - "x-ms-request-id" : "1110fbd9-203f-44c3-8406-f03c7db8a2cb", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.04.07\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.04.07\"\r\n}", - "x-ms-client-request-id" : "65546ca5-5cd9-450d-b66f-b0ce75cdae6b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15-gen2/versions/2022.01.28?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cc35051-c806-4348-8a2f-0ed3d7630b2b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a485edab-6377-4d4a-9228-ddffe54bd93b", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12612,Microsoft.Compute/GetVMImageFromLocation30Min;73612", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:a485edab-6377-4d4a-9228-ddffe54bd93b", - "Expires" : "-1", - "x-ms-request-id" : "9e15c765-3de7-41f6-941f-77ea145aeea8", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.01.28\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.01.28\"\r\n}", - "x-ms-client-request-id" : "6cc35051-c806-4348-8a2f-0ed3d7630b2b", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/15-gen2/versions/2022.05.06?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8e11cc3-df16-42da-8a36-692cb2fac5ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1035", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11794", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e7c6ba9-15e7-4586-b6ea-0dabfede6ee4", - "Date" : "Tue, 24 May 2022 13:06:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12611,Microsoft.Compute/GetVMImageFromLocation30Min;73611", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:6e7c6ba9-15e7-4586-b6ea-0dabfede6ee4", - "Expires" : "-1", - "x-ms-request-id" : "8a8c8347-3409-43f4-ab1d-d23ef05e7e06", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \"value\": \"SCSI\"\r\n },\r\n {\r\n \"name\": \"IsHibernateSupported\",\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2022.05.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/15-gen2/Versions/2022.05.06\"\r\n}", - "x-ms-client-request-id" : "f8e11cc3-df16-42da-8a36-692cb2fac5ef", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/gen2-12-sp4/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86986181-e6c5-407d-9724-9adbbd72e230", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "288", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6c35795-3fc6-4777-b4f4-110690ab0763", - "Date" : "Tue, 24 May 2022 13:06:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15894,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:e6c35795-3fc6-4777-b4f4-110690ab0763", - "Expires" : "-1", - "x-ms-request-id" : "52afea15-0359-4e1c-8e7a-bab17dc25dcb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/gen2-12-sp4/Versions/2020.12.14\"\r\n }\r\n]", - "x-ms-client-request-id" : "86986181-e6c5-407d-9724-9adbbd72e230", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/gen2-12-sp4/versions/2020.12.14?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26144dd4-445d-4ad4-b854-7328e12f291c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebc52ea2-ef57-48ea-8094-72cc7dc3f1c0", - "Date" : "Tue, 24 May 2022 13:06:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12610,Microsoft.Compute/GetVMImageFromLocation30Min;73610", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130629Z:ebc52ea2-ef57-48ea-8094-72cc7dc3f1c0", - "Expires" : "-1", - "x-ms-request-id" : "e63ef480-811a-4d9b-8fcd-843047682b78", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2020.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/gen2-12-sp4/Versions/2020.12.14\"\r\n}", - "x-ms-client-request-id" : "26144dd4-445d-4ad4-b854-7328e12f291c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/gen2-15/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "12c7e7c0-2264-4166-a433-28bf3fa0af34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "284", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3c9f616-6291-4b99-bdf7-ce3b4e11af49", - "Date" : "Tue, 24 May 2022 13:06:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15893,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130630Z:d3c9f616-6291-4b99-bdf7-ce3b4e11af49", - "Expires" : "-1", - "x-ms-request-id" : "9c8589e7-f92f-47e3-904c-96f062109f6d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/gen2-15/Versions/2021.01.12\"\r\n }\r\n]", - "x-ms-client-request-id" : "12c7e7c0-2264-4166-a433-28bf3fa0af34", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/gen2-15/versions/2021.01.12?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98888cf4-8639-4639-bf3a-799af615b8d3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "745", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a1810840-d4c9-486e-b34a-41904803e312", - "Date" : "Tue, 24 May 2022 13:06:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12609,Microsoft.Compute/GetVMImageFromLocation30Min;73609", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130630Z:a1810840-d4c9-486e-b34a-41904803e312", - "Expires" : "-1", - "x-ms-request-id" : "e834c11c-9209-46db-b0e3-c91942958446", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2021.01.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/gen2-15/Versions/2021.01.12\"\r\n}", - "x-ms-client-request-id" : "98888cf4-8639-4639-bf3a-799af615b8d3", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f6a054b-ec9e-46ec-8521-ee40b995cf17", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "382", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11669", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b55d8f2e-d11d-4758-afd6-5a2fcfb5b601", - "Date" : "Tue, 24 May 2022 13:06:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9950,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130630Z:b55d8f2e-d11d-4758-afd6-5a2fcfb5b601", - "Expires" : "-1", - "x-ms-request-id" : "a2dfc707-163a-43aa-abae-3b05f1c9f4be", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP3\"\r\n }\r\n]", - "x-ms-client-request-id" : "4f6a054b-ec9e-46ec-8521-ee40b995cf17", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP3/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba177329-9333-470e-8138-ace223a90375", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "559", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11668", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27ebee59-1e2c-4d68-94e2-30be86580940", - "Date" : "Tue, 24 May 2022 13:06:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15892,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43892", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130631Z:27ebee59-1e2c-4d68-94e2-30be86580940", - "Expires" : "-1", - "x-ms-request-id" : "6ff43325-729e-444c-9625-1474104cc025", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.07.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP3/Versions/2019.07.01\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.11.18\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP3/Versions/2019.11.18\"\r\n }\r\n]", - "x-ms-client-request-id" : "ba177329-9333-470e-8138-ace223a90375", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP3/versions/2019.11.18?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70022a20-5a35-43af-93ec-e0f0e31d7b5c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11802", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3f7a0e2-3547-4d77-bafb-32be7399c066", - "Date" : "Tue, 24 May 2022 13:06:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12608,Microsoft.Compute/GetVMImageFromLocation30Min;73608", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130631Z:c3f7a0e2-3547-4d77-bafb-32be7399c066", - "Expires" : "-1", - "x-ms-request-id" : "d9a2032d-4dd6-4537-b530-16421b6e8731", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.11.18\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP3/Versions/2019.11.18\"\r\n}", - "x-ms-client-request-id" : "70022a20-5a35-43af-93ec-e0f0e31d7b5c", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP3/versions/2019.07.01?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "80cc65b8-3837-41ae-9b96-58d9012648b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ffb6570-45da-497b-a57a-bbc15caf1c74", - "Date" : "Tue, 24 May 2022 13:06:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12607,Microsoft.Compute/GetVMImageFromLocation30Min;73607", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130631Z:0ffb6570-45da-497b-a57a-bbc15caf1c74", - "Expires" : "-1", - "x-ms-request-id" : "3592c08d-47d8-46c3-8eba-d3ab5b6c4fe9", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30,\r\n \"sizeInBytes\": 32212255232\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.07.01\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP3/Versions/2019.07.01\"\r\n}", - "x-ms-client-request-id" : "80cc65b8-3837-41ae-9b96-58d9012648b4", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Standard/skus?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc8e22bb-f1b4-4d6b-b844-64d561f43c47", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "394", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3405556f-a87d-4f0a-99dc-8ae6b754ebe1", - "Date" : "Tue, 24 May 2022 13:06:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImageSkusFromLocation3Min;9949,Microsoft.Compute/ListVMImageSkusFromLocation30Min;29949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130631Z:3405556f-a87d-4f0a-99dc-8ae6b754ebe1", - "Expires" : "-1", - "x-ms-request-id" : "d0dfe14b-fe6e-4ac9-aaf5-4d32958d3f91", - "Body" : "[\r\n {\r\n \"properties\": {\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-sp4-gen2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Standard/Skus/12-sp4-gen2\"\r\n }\r\n]", - "x-ms-client-request-id" : "cc8e22bb-f1b4-4d6b-b844-64d561f43c47", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Standard/skus/12-sp4-gen2/versions?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa21f520-2364-41e7-a7af-6e0cb9afd097", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "573", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8089904c-cd87-4619-9d4f-124a3f6e1bea", - "Date" : "Tue, 24 May 2022 13:06:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15891,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130631Z:8089904c-cd87-4619-9d4f-124a3f6e1bea", - "Expires" : "-1", - "x-ms-request-id" : "766dd7b4-b711-4861-b4cd-108abb8e2a7e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.08.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Standard/Skus/12-sp4-gen2/Versions/2019.08.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.11.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Standard/Skus/12-sp4-gen2/Versions/2019.11.13\"\r\n }\r\n]", - "x-ms-client-request-id" : "aa21f520-2364-41e7-a7af-6e0cb9afd097", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Standard/skus/12-sp4-gen2/versions/2019.11.13?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3de88d42-5f17-4fb6-bd22-c7263a909b4f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b971d490-3853-45c4-8ae9-7c023504bdc7", - "Date" : "Tue, 24 May 2022 13:06:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12606,Microsoft.Compute/GetVMImageFromLocation30Min;73606", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130632Z:b971d490-3853-45c4-8ae9-7c023504bdc7", - "Expires" : "-1", - "x-ms-request-id" : "78faa2c5-2073-4f90-8a27-00c7a8989f68", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.11.13\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Standard/Skus/12-sp4-gen2/Versions/2019.11.13\"\r\n}", - "x-ms-client-request-id" : "3de88d42-5f17-4fb6-bd22-c7263a909b4f", - "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/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Standard/skus/12-sp4-gen2/versions/2019.08.26?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.15.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03e1a4ab-1837-419a-b33d-c3b9bd951f56", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "749", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_132896862697804653", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11793", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "11121dd6-6a10-4b76-8221-173879a77760", - "Date" : "Tue, 24 May 2022 13:06:32 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMImageFromLocation3Min;12605,Microsoft.Compute/GetVMImageFromLocation30Min;73605", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220524T130632Z:11121dd6-6a10-4b76-8221-173879a77760", - "Expires" : "-1", - "x-ms-request-id" : "a8455276-eebb-4f2e-9956-e1e354fd9562", - "Body" : "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \"architecture\": \"x64\",\r\n \"replicaType\": \"Managed\",\r\n \"replicaCount\": 10,\r\n \"disallowed\": {\r\n \"vmDiskType\": \"Unmanaged\"\r\n },\r\n \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\": \"Active\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": 30\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2019.08.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Standard/Skus/12-sp4-gen2/Versions/2019.08.26\"\r\n}", - "x-ms-client-request-id" : "03e1a4ab-1837-419a-b33d-c3b9bd951f56", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - } ], - "variables" : [ ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageAvailabilitySet.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageAvailabilitySet.json deleted file mode 100644 index 356201a6a62b..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageAvailabilitySet.json +++ /dev/null @@ -1,606 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcoma306366b?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8779aa3-ac7e-4334-96c7-cab7e03b6a0f", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "beba79c5-b4a6-4c15-8a4c-ed36ddc85889", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:beba79c5-b4a6-4c15-8a4c-ed36ddc85889", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "beba79c5-b4a6-4c15-8a4c-ed36ddc85889", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b\",\"name\":\"rgcoma306366b\",\"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/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av100493120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "23e634af-ba1f-4946-98b0-259c4d2dea4b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:12 GMT", - "x-ms-correlation-request-id" : "422fbc61-e1e5-41d3-85a4-19ef01d94039", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172213Z:422fbc61-e1e5-41d3-85a4-19ef01d94039", - "Expires" : "-1", - "Content-Length" : "465", - "x-ms-request-id" : "e31697a7-4270-4698-9787-3a6416279139", - "Body" : "{\r\n \"name\": \"av100493120\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av100493120\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"tag1\": \"tag1val\"\r\n },\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-client-request-id" : "23e634af-ba1f-4946-98b0-259c4d2dea4b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d504b2c2-b76a-439d-bc03-8dcdc9d92704", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "c1b3234f-5a56-4805-af49-6ecab339487d", - "x-ms-arm-service-request-id" : "6918a28b-3e4f-4da5-b6cd-86419bf487b8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:c1b3234f-5a56-4805-af49-6ecab339487d", - "Expires" : "-1", - "Content-Length" : "1334", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cf6c248d-67fd-414e-a896-c0c1b69a857c?api-version=2023-02-01", - "x-ms-request-id" : "cf6c248d-67fd-414e-a896-c0c1b69a857c", - "Body" : "{\r\n \"name\": \"vnet5818243e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e\",\r\n \"etag\": \"W/\\\"e3f45798-ce46-48f9-b4b5-0827a33657fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7eacf775-fda5-4f5a-8b35-5d4c9e4dbea6\",\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/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e3f45798-ce46-48f9-b4b5-0827a33657fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "d504b2c2-b76a-439d-bc03-8dcdc9d92704", - "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/cf6c248d-67fd-414e-a896-c0c1b69a857c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1e5e365-d71a-4473-8d6a-192985190094" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "470d1bc9-3583-43d5-a65f-a0ee95e75843", - "x-ms-arm-service-request-id" : "92e0864c-9aeb-46b9-9619-f3b7f882fe15", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:470d1bc9-3583-43d5-a65f-a0ee95e75843", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "4e16381c-8d73-4d7f-98c2-23a6dbf14882", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "f1e5e365-d71a-4473-8d6a-192985190094", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "522b667d-be20-429a-94f0-2e40ba887044" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "e4ece721-87bc-4caf-8624-c3baabd7ee7f", - "x-ms-arm-service-request-id" : "58fd261b-c792-4123-aaea-878b67f2b49c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"8187562b-4f01-4b58-8099-3ce414d09098\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:e4ece721-87bc-4caf-8624-c3baabd7ee7f", - "Expires" : "-1", - "Content-Length" : "1336", - "x-ms-request-id" : "b4a6e9ed-e27e-4a4a-aa5c-f0ceff222253", - "Body" : "{\r\n \"name\": \"vnet5818243e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e\",\r\n \"etag\": \"W/\\\"8187562b-4f01-4b58-8099-3ce414d09098\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7eacf775-fda5-4f5a-8b35-5d4c9e4dbea6\",\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/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8187562b-4f01-4b58-8099-3ce414d09098\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "522b667d-be20-429a-94f0-2e40ba887044", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic40675574aca?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d37cc02f-b698-45fd-94d7-6f7872be338b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:21 GMT", - "x-ms-correlation-request-id" : "534413b9-5e8e-4cb5-b3d7-5b5a6d2b3b17", - "x-ms-arm-service-request-id" : "bd139953-506b-42b4-b433-a78d21c5b602", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:534413b9-5e8e-4cb5-b3d7-5b5a6d2b3b17", - "Expires" : "-1", - "Content-Length" : "1658", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bbd0691e-5c8b-4325-89a2-006f9c681cd5?api-version=2023-02-01", - "x-ms-request-id" : "bbd0691e-5c8b-4325-89a2-006f9c681cd5", - "Body" : "{\r\n \"name\": \"nic40675574aca\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic40675574aca\",\r\n \"etag\": \"W/\\\"a228b099-6178-4386-a91e-5d9f874e148a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8eed6eaf-f781-4be6-ae8f-81a3d7c5f12a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic40675574aca/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a228b099-6178-4386-a91e-5d9f874e148a\\\"\",\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/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e/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\": \"ox10y5vf5vne5czvlvgj2tn4ug.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "d37cc02f-b698-45fd-94d7-6f7872be338b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm106932f16?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb97cd18-5539-4565-93c2-bf1e75a97c5d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "373ec6c8-8d00-4a5a-a5c5-f7db988c7082", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:373ec6c8-8d00-4a5a-a5c5-f7db988c7082", - "Expires" : "-1", - "Content-Length" : "1810", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/acb57b61-6979-4b6e-81ce-e051ad15ba5d?api-version=2021-11-01", - "x-ms-request-id" : "acb57b61-6979-4b6e-81ce-e051ad15ba5d", - "Body" : "{\r\n \"name\": \"vm106932f16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm106932f16\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"10e6019b-8c41-4cc0-8fc4-7e2c199948ce\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/AV100493120\"\r\n },\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm106932f16\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic40675574aca\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "fb97cd18-5539-4565-93c2-bf1e75a97c5d", - "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/acb57b61-6979-4b6e-81ce-e051ad15ba5d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f6ea11a-2019-4c49-a7bf-bd8c88d87c7d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:35 GMT", - "x-ms-correlation-request-id" : "a9c56da9-ae2d-4b27-a2c1-39c453b3a054", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:a9c56da9-ae2d-4b27-a2c1-39c453b3a054", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "196e2686-7892-49ee-a2b1-f816e3164fae", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:24.3340041+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"acb57b61-6979-4b6e-81ce-e051ad15ba5d\"\r\n}", - "x-ms-client-request-id" : "5f6ea11a-2019-4c49-a7bf-bd8c88d87c7d", - "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/acb57b61-6979-4b6e-81ce-e051ad15ba5d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0910e8c4-72ae-42d7-b6b0-1ca68271aeb8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:26 GMT", - "x-ms-correlation-request-id" : "63710e39-9815-488e-9eaf-389f8ae6a425", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172327Z:63710e39-9815-488e-9eaf-389f8ae6a425", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "cef70780-d037-4ae1-9f7b-0f77397319ae", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:24.3340041+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"acb57b61-6979-4b6e-81ce-e051ad15ba5d\"\r\n}", - "x-ms-client-request-id" : "0910e8c4-72ae-42d7-b6b0-1ca68271aeb8", - "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/acb57b61-6979-4b6e-81ce-e051ad15ba5d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5d2e413-4304-4fa9-8ffe-55734aa4afec" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:56 GMT", - "x-ms-correlation-request-id" : "b1e73e42-cb37-48c0-bfde-6dffa0168527", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172357Z:b1e73e42-cb37-48c0-bfde-6dffa0168527", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "305963a9-bf82-4f4f-909c-ab5a16cbffa5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:24.3340041+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:45.2902976+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"acb57b61-6979-4b6e-81ce-e051ad15ba5d\"\r\n}", - "x-ms-client-request-id" : "e5d2e413-4304-4fa9-8ffe-55734aa4afec", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm106932f16?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e6ab356-5845-4a9c-adaf-18b5797fcd85" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:57 GMT", - "x-ms-correlation-request-id" : "6484dc68-9ac4-4d77-b7be-569787cdfdfe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172357Z:6484dc68-9ac4-4d77-b7be-569787cdfdfe", - "Expires" : "-1", - "Content-Length" : "2074", - "x-ms-request-id" : "731588ae-4a87-4f03-af15-79bdbf19d9e5", - "Body" : "{\r\n \"name\": \"vm106932f16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm106932f16\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"10e6019b-8c41-4cc0-8fc4-7e2c199948ce\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/AV100493120\"\r\n },\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm106932f16_OsDisk_1_e89a9514a45c495cbd21c2b94f269c01\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/disks/vm106932f16_OsDisk_1_e89a9514a45c495cbd21c2b94f269c01\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm106932f16\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic40675574aca\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "6e6ab356-5845-4a9c-adaf-18b5797fcd85", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic30448ddb809?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4e43739-184f-4a83-b25d-41ef0e469088", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:00 GMT", - "x-ms-correlation-request-id" : "e314c873-865b-4e65-815b-95673e787f34", - "x-ms-arm-service-request-id" : "588d3d4a-1ad3-4f9c-bc25-09701cd09f02", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172401Z:e314c873-865b-4e65-815b-95673e787f34", - "Expires" : "-1", - "Content-Length" : "1658", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/25ef5651-e713-4d10-91d4-d95ac3a618b2?api-version=2023-02-01", - "x-ms-request-id" : "25ef5651-e713-4d10-91d4-d95ac3a618b2", - "Body" : "{\r\n \"name\": \"nic30448ddb809\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic30448ddb809\",\r\n \"etag\": \"W/\\\"d5a2e840-ca75-424a-8ed4-94fa29bc39b4\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2140e78b-b1e3-4ff2-88bc-d9944c8886a3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic30448ddb809/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d5a2e840-ca75-424a-8ed4-94fa29bc39b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Network/virtualNetworks/vnet5818243e/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\": \"ox10y5vf5vne5czvlvgj2tn4ug.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "a4e43739-184f-4a83-b25d-41ef0e469088", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm2205517d3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "59059ea3-4bae-40ec-b819-8bf705fb193e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:06 GMT", - "x-ms-correlation-request-id" : "d873dad0-84bb-4679-9bcd-7aabf3e6c518", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1178", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172406Z:d873dad0-84bb-4679-9bcd-7aabf3e6c518", - "Expires" : "-1", - "Content-Length" : "1785", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0fe6408d-3636-4995-a546-3dc6b79549d2?api-version=2021-11-01", - "x-ms-request-id" : "0fe6408d-3636-4995-a546-3dc6b79549d2", - "Body" : "{\r\n \"name\": \"vm2205517d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm2205517d3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4bbc47fd-1c96-4eba-b19a-44d3e215b3d9\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/AV100493120\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2205517d3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic30448ddb809\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "59059ea3-4bae-40ec-b819-8bf705fb193e", - "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/0fe6408d-3636-4995-a546-3dc6b79549d2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b581b5e6-7c1b-42a8-8fde-075977a9a01c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:16 GMT", - "x-ms-correlation-request-id" : "b6d8fca4-dce9-4dea-a817-397ef6d21ea3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14928,Microsoft.Compute/GetOperation30Min;29928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172417Z:b6d8fca4-dce9-4dea-a817-397ef6d21ea3", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "58765f6f-2688-40ac-9d28-ec244d7c3325", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:05.2910555+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0fe6408d-3636-4995-a546-3dc6b79549d2\"\r\n}", - "x-ms-client-request-id" : "b581b5e6-7c1b-42a8-8fde-075977a9a01c", - "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/0fe6408d-3636-4995-a546-3dc6b79549d2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea3a7044-516b-4df4-a191-6769fff52681" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:51 GMT", - "x-ms-correlation-request-id" : "3e435795-d585-4ffe-9d80-e6d699f28d9f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14901,Microsoft.Compute/GetOperation30Min;29901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172452Z:3e435795-d585-4ffe-9d80-e6d699f28d9f", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "7c4dcf10-9acd-483f-8704-73d6a1918e0c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:05.2910555+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:26.7763298+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0fe6408d-3636-4995-a546-3dc6b79549d2\"\r\n}", - "x-ms-client-request-id" : "ea3a7044-516b-4df4-a191-6769fff52681", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm2205517d3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a658efbb-413d-4258-b5ae-95eba5350ff1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11779", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:52 GMT", - "x-ms-correlation-request-id" : "076e52a6-24b0-4af6-a149-7a85190cd1b9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3943,Microsoft.Compute/LowCostGet30Min;31943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172452Z:076e52a6-24b0-4af6-a149-7a85190cd1b9", - "Expires" : "-1", - "Content-Length" : "2049", - "x-ms-request-id" : "8917584d-8971-450c-bf1f-40fb9f04b6fd", - "Body" : "{\r\n \"name\": \"vm2205517d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/virtualMachines/vm2205517d3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4bbc47fd-1c96-4eba-b19a-44d3e215b3d9\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/AV100493120\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2205517d3_OsDisk_1_46660d184d9b4540b124c7e462114d21\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/disks/vm2205517d3_OsDisk_1_46660d184d9b4540b124c7e462114d21\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2205517d3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcoma306366b/providers/Microsoft.Network/networkInterfaces/nic30448ddb809\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "a658efbb-413d-4258-b5ae-95eba5350ff1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av100493120?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd99d709-c060-483b-9ab8-3f55db231390", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:56 GMT", - "x-ms-correlation-request-id" : "6168a135-b43f-4cfc-bcbd-d2fdee11c09e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;213,Microsoft.Compute/PutVM30Min;1173", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172456Z:6168a135-b43f-4cfc-bcbd-d2fdee11c09e", - "Expires" : "-1", - "Content-Length" : "489", - "x-ms-request-id" : "1cff4e9f-6037-4850-bf1c-b4de5d390ce2", - "Body" : "{\r\n \"name\": \"av100493120\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av100493120\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"server1\": \"nginx\",\r\n \"server2\": \"iis\"\r\n },\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-client-request-id" : "bd99d709-c060-483b-9ab8-3f55db231390", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av276388bee?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "76221682-c498-4ba1-b28a-cc639d5a1450", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:02 GMT", - "x-ms-correlation-request-id" : "e3bfeb25-3861-4350-998c-8859daa90964", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1172", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172502Z:e3bfeb25-3861-4350-998c-8859daa90964", - "Expires" : "-1", - "Content-Length" : "406", - "x-ms-request-id" : "c696022e-129b-453a-a0d5-d2d13e863f3b", - "Body" : "{\r\n \"name\": \"av276388bee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av276388bee\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-client-request-id" : "76221682-c498-4ba1-b28a-cc639d5a1450", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2709daa-ee4b-49eb-8907-51230373ab31", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:02 GMT", - "x-ms-correlation-request-id" : "057d43b5-bf1e-4fb5-a589-5a5cf44da9ab", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3940,Microsoft.Compute/LowCostGet30Min;31940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172502Z:057d43b5-bf1e-4fb5-a589-5a5cf44da9ab", - "Expires" : "-1", - "Content-Length" : "1494", - "x-ms-request-id" : "d9396853-c298-442f-92c1-2b80fcff2420", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"av100493120\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av100493120\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"server1\": \"nginx\",\r\n \"server2\": \"iis\"\r\n },\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMA306366B/providers/Microsoft.Compute/virtualMachines/VM106932F16\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMA306366B/providers/Microsoft.Compute/virtualMachines/VM2205517D3\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n },\r\n {\r\n \"name\": \"av276388bee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av276388bee\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "a2709daa-ee4b-49eb-8907-51230373ab31", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma306366b/providers/Microsoft.Compute/availabilitySets/av276388bee?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3285fd7-4e5b-424d-80f2-a754718215c6", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:07 GMT", - "x-ms-correlation-request-id" : "a2918d83-9dc1-4630-a635-949563ac7753", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;229,Microsoft.Compute/DeleteVM30Min;1189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172507Z:a2918d83-9dc1-4630-a635-949563ac7753", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "4dd01c9c-cf38-46a7-adfc-fdc87204d86a", - "x-ms-client-request-id" : "a3285fd7-4e5b-424d-80f2-a754718215c6" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcoma306366b?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "81913960-ae50-4ce5-acc7-d9fcba4d182a", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:10 GMT", - "x-ms-correlation-request-id" : "e5904031-89a8-4ad9-92bc-4e8d05c91427", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:e5904031-89a8-4ad9-92bc-4e8d05c91427", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "e5904031-89a8-4ad9-92bc-4e8d05c91427", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUEzMDYzNjZCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcoma306366b", "av100493120", "av276388bee", "vm106932f16", "vm2205517d3", "vnet5818243e", "nic40675574aca", "nic30448ddb809" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageManagedDisks.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageManagedDisks.json deleted file mode 100644 index ccd0fd28e403..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageManagedDisks.json +++ /dev/null @@ -1,4574 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0785220?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1109cb2-81ce-4535-a067-f685fb3bca53", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "231", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "979b6ef1-133a-4d96-ba95-866c466d5060", - "Date" : "Mon, 19 Apr 2021 07:43:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074320Z:979b6ef1-133a-4d96-ba95-866c466d5060", - "Expires" : "-1", - "x-ms-request-id" : "979b6ef1-133a-4d96-ba95-866c466d5060", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220\",\"name\":\"rgcomv0785220\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"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/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip97026820?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "46aeb8f6-831c-4db9-9074-85dcecf9354c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "523b9034-1430-4cc4-9af3-06691136caba", - "Date" : "Mon, 19 Apr 2021 07:43:26 GMT", - "x-ms-arm-service-request-id" : "48b2dd8a-47e7-4533-a33f-7767d2acd90a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074327Z:523b9034-1430-4cc4-9af3-06691136caba", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eac36169-6f7b-461d-bd3a-4905eda31b8d?api-version=2023-02-01", - "x-ms-request-id" : "eac36169-6f7b-461d-bd3a-4905eda31b8d", - "Body" : "{\r\n \"name\": \"pip97026820\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip97026820\",\r\n \"etag\": \"W/\\\"1fb8ff96-2369-451d-93f0-c0cf1f2597ba\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a4b26151-dcf9-441f-babe-6cefbf7bd80f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-52834b9ed\",\r\n \"fqdn\": \"pip-52834b9ed.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "46aeb8f6-831c-4db9-9074-85dcecf9354c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae265b17-1ec7-4d22-b62a-8d3dc5ce3439", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "81762cb5-24e1-4b8a-9908-4f036f11feb4", - "Date" : "Mon, 19 Apr 2021 07:43:27 GMT", - "x-ms-arm-service-request-id" : "26a57645-0f80-4a63-b292-230705bd6b18", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074328Z:81762cb5-24e1-4b8a-9908-4f036f11feb4", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f4b8000b-60eb-41e6-b694-6483866e8bc6?api-version=2023-02-01", - "x-ms-request-id" : "f4b8000b-60eb-41e6-b694-6483866e8bc6", - "Body" : "{\r\n \"name\": \"vnet021472fa92\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92\",\r\n \"etag\": \"W/\\\"3b305eab-4de2-4614-9822-973705d280f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3d56a0df-7d28-4a4f-8cbb-64c4f5e3299d\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3b305eab-4de2-4614-9822-973705d280f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "ae265b17-1ec7-4d22-b62a-8d3dc5ce3439", - "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/southcentralus/operations/eac36169-6f7b-461d-bd3a-4905eda31b8d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d68ae8e-2ca9-49b5-a4c2-b3f96e766b6b" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "875f4390-808b-4a1e-979c-066226b99e2d", - "Date" : "Mon, 19 Apr 2021 07:43:29 GMT", - "x-ms-arm-service-request-id" : "0ff8aa82-c0f4-4da9-94d9-0ae92ba0c0b6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074329Z:875f4390-808b-4a1e-979c-066226b99e2d", - "Expires" : "-1", - "x-ms-request-id" : "73b743b3-b87a-4c61-9b27-a92c8da24ca2", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "0d68ae8e-2ca9-49b5-a4c2-b3f96e766b6b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip97026820?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d775efc-5d7f-4525-8ba5-01983e75aceb" - }, - "Response" : { - "content-length" : "795", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a5a725a2-8e11-4b05-b6cc-21a557b5330f", - "Date" : "Mon, 19 Apr 2021 07:43:29 GMT", - "x-ms-arm-service-request-id" : "f9a7d234-e01c-4472-b352-1ec60c1c70bb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"4c02c103-9bd7-4a95-a0ba-2694853d1433\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074330Z:a5a725a2-8e11-4b05-b6cc-21a557b5330f", - "Expires" : "-1", - "x-ms-request-id" : "3e31145b-01fb-4b92-bd68-3e79335a7496", - "Body" : "{\r\n \"name\": \"pip97026820\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip97026820\",\r\n \"etag\": \"W/\\\"4c02c103-9bd7-4a95-a0ba-2694853d1433\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a4b26151-dcf9-441f-babe-6cefbf7bd80f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-52834b9ed\",\r\n \"fqdn\": \"pip-52834b9ed.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "8d775efc-5d7f-4525-8ba5-01983e75aceb", - "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/southcentralus/operations/f4b8000b-60eb-41e6-b694-6483866e8bc6?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc06bc63-44c7-4c24-9c57-5f7f26660184" - }, - "Response" : { - "content-length" : "29", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "48ad82b5-67f4-482b-a202-e83a214082cf", - "Date" : "Mon, 19 Apr 2021 07:43:31 GMT", - "x-ms-arm-service-request-id" : "3cf22892-cef2-4aa4-bbfa-6351e6e4d0dc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074331Z:48ad82b5-67f4-482b-a202-e83a214082cf", - "Expires" : "-1", - "x-ms-request-id" : "74f9964c-4921-4b53-ada2-2c740a459de9", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "fc06bc63-44c7-4c24-9c57-5f7f26660184", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a1b2326-18ee-4c07-b045-30b1a14bf90d" - }, - "Response" : { - "content-length" : "1316", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8aca11b7-84d4-4b1f-bdac-a9a4be3f9122", - "Date" : "Mon, 19 Apr 2021 07:43:30 GMT", - "x-ms-arm-service-request-id" : "f613fe69-1a05-4b8d-a805-4312905cd831", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"c60b971e-5507-401c-a9c4-29918861c01d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074331Z:8aca11b7-84d4-4b1f-bdac-a9a4be3f9122", - "Expires" : "-1", - "x-ms-request-id" : "08016b72-5eca-44e9-b6e1-4cabb13d4c8a", - "Body" : "{\r\n \"name\": \"vnet021472fa92\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92\",\r\n \"etag\": \"W/\\\"c60b971e-5507-401c-a9c4-29918861c01d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d56a0df-7d28-4a4f-8cbb-64c4f5e3299d\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c60b971e-5507-401c-a9c4-29918861c01d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "1a1b2326-18ee-4c07-b045-30b1a14bf90d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic7650007ba59?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "13e33434-f46d-4099-a811-9c5e781e3884", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "38ad8ce8-b65a-43e9-93d1-4fa66eb0688a", - "Date" : "Mon, 19 Apr 2021 07:43:36 GMT", - "x-ms-arm-service-request-id" : "575293d2-ef4c-4435-b0b1-144c471c6cf2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074336Z:38ad8ce8-b65a-43e9-93d1-4fa66eb0688a", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d3fdb9af-058f-4456-9cbf-4f9adc3d8781?api-version=2023-02-01", - "x-ms-request-id" : "d3fdb9af-058f-4456-9cbf-4f9adc3d8781", - "Body" : "{\r\n \"name\": \"nic7650007ba59\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic7650007ba59\",\r\n \"etag\": \"W/\\\"3416f380-d482-49f4-ac75-0ce46b937d68\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7f4408-9402-49df-9c75-707a83711c67\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic7650007ba59/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3416f380-d482-49f4-ac75-0ce46b937d68\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip97026820\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet021472fa92/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\": \"14qfmpjipvhuvdf1mtcplyzjtf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "13e33434-f46d-4099-a811-9c5e781e3884", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-1939105adc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b6e8ec8-d382-44f8-bae1-6d1a0a70aae1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2479", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "545b241d-3118-479c-8016-c017177eccc1", - "Date" : "Mon, 19 Apr 2021 07:43:40 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;567,Microsoft.Compute/PutVM30Min;2841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074340Z:545b241d-3118-479c-8016-c017177eccc1", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d3ba5897-87f7-44e8-9394-8151899ba3a1?api-version=2021-11-01", - "x-ms-request-id" : "d3ba5897-87f7-44e8-9394-8151899ba3a1", - "Body" : "{\r\n \"name\": \"vm-1939105adc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-1939105adc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e94acb10-6a44-4247-8b4b-88fc0834b3d3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-1939105adc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic7650007ba59\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3b6e8ec8-d382-44f8-bae1-6d1a0a70aae1", - "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/southcentralus/operations/d3ba5897-87f7-44e8-9394-8151899ba3a1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aba2b389-3b1c-44ce-8fcc-e79412a0a222" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "18cd8298-55fe-49bc-bf9f-831bec45441d", - "Date" : "Mon, 19 Apr 2021 07:43:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074351Z:18cd8298-55fe-49bc-bf9f-831bec45441d", - "Expires" : "-1", - "x-ms-request-id" : "ca54e57a-c669-4a43-abd6-1a2f69747845", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:43:39.0878977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3ba5897-87f7-44e8-9394-8151899ba3a1\"\r\n}", - "x-ms-client-request-id" : "aba2b389-3b1c-44ce-8fcc-e79412a0a222", - "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/southcentralus/operations/d3ba5897-87f7-44e8-9394-8151899ba3a1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c011351b-0afc-4b51-9179-64410ddbed4c" - }, - "Response" : { - "content-length" : "184", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f068eee2-27b0-4699-b297-9104fa92eaac", - "Date" : "Mon, 19 Apr 2021 07:44:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074426Z:f068eee2-27b0-4699-b297-9104fa92eaac", - "Expires" : "-1", - "x-ms-request-id" : "6b6163c8-bfc7-4833-8440-7bf90e869e00", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:43:39.0878977+00:00\",\r\n \"endTime\": \"2021-04-19T07:44:04.6036761+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d3ba5897-87f7-44e8-9394-8151899ba3a1\"\r\n}", - "x-ms-client-request-id" : "c011351b-0afc-4b51-9179-64410ddbed4c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-1939105adc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "945e6bc1-a031-4e84-b905-4094ad191e60" - }, - "Response" : { - "content-length" : "3012", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73619a96-701f-4d15-8324-d6d346822e55", - "Date" : "Mon, 19 Apr 2021 07:44:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074426Z:73619a96-701f-4d15-8324-d6d346822e55", - "Expires" : "-1", - "x-ms-request-id" : "127d0e2d-d5fd-4196-8a16-0a380014e54d", - "Body" : "{\r\n \"name\": \"vm-1939105adc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-1939105adc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e94acb10-6a44-4247-8b4b-88fc0834b3d3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-1939105adc_OsDisk_1_9061d763634a4354bf878eb90fe36a29\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-1939105adc_OsDisk_1_9061d763634a4354bf878eb90fe36a29\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-1939105adc_disk2_5ba9804566124f9d9c177f6ebc9c8c66\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-1939105adc_disk2_5ba9804566124f9d9c177f6ebc9c8c66\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-1939105adc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic7650007ba59\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "945e6bc1-a031-4e84-b905-4094ad191e60", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0785220?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "05b91e9a-946c-40aa-99c7-719147222cc3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "231", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc212907-19ea-43d8-be90-391249b57342", - "Date" : "Mon, 19 Apr 2021 07:44:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074429Z:bc212907-19ea-43d8-be90-391249b57342", - "Expires" : "-1", - "x-ms-request-id" : "bc212907-19ea-43d8-be90-391249b57342", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220\",\"name\":\"rgcomv0785220\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "17aae537-5da9-48c9-bd38-7b77d4ecf384", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1324", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "dbc81d64-b980-4d1e-8fc3-fd4a21c9dba2", - "Date" : "Mon, 19 Apr 2021 07:44:36 GMT", - "x-ms-arm-service-request-id" : "a25c4342-61a3-4e05-80f3-afe657a8e293", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074436Z:dbc81d64-b980-4d1e-8fc3-fd4a21c9dba2", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/04d364c8-753e-48c9-b271-d1ab00ed8a0b?api-version=2023-02-01", - "x-ms-request-id" : "04d364c8-753e-48c9-b271-d1ab00ed8a0b", - "Body" : "{\r\n \"name\": \"vnet6496981c033b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b\",\r\n \"etag\": \"W/\\\"df0867bc-7e71-4378-8133-566677c59392\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aef6f65a-2331-4e74-a626-8f4bd1ba86ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"df0867bc-7e71-4378-8133-566677c59392\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "17aae537-5da9-48c9-bd38-7b77d4ecf384", - "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/southcentralus/operations/04d364c8-753e-48c9-b271-d1ab00ed8a0b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6080f10-5bbf-42a5-b731-a0f8d6cc2d06" - }, - "Response" : { - "content-length" : "29", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5495ae1b-e631-480b-b271-373565ee09e1", - "Date" : "Mon, 19 Apr 2021 07:44:39 GMT", - "x-ms-arm-service-request-id" : "4d104227-bf87-4614-9a25-d83b38f0cb18", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074440Z:5495ae1b-e631-480b-b271-373565ee09e1", - "Expires" : "-1", - "x-ms-request-id" : "73f69263-1b9a-4414-bbce-0153ce2cf19a", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "a6080f10-5bbf-42a5-b731-a0f8d6cc2d06", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "55be72a6-42ba-46bb-86fb-6d4d8a8f05d2" - }, - "Response" : { - "content-length" : "1326", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6716fe51-a24c-40ad-ae7d-9e4389c810c5", - "Date" : "Mon, 19 Apr 2021 07:44:39 GMT", - "x-ms-arm-service-request-id" : "214b7272-2646-4e93-983a-3f80cc2aeb31", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"f0df3a6b-b7da-40d1-8800-2998d7b4e600\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074440Z:6716fe51-a24c-40ad-ae7d-9e4389c810c5", - "Expires" : "-1", - "x-ms-request-id" : "3007bbfb-923f-4c3d-b03a-a16000630f3a", - "Body" : "{\r\n \"name\": \"vnet6496981c033b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b\",\r\n \"etag\": \"W/\\\"f0df3a6b-b7da-40d1-8800-2998d7b4e600\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aef6f65a-2331-4e74-a626-8f4bd1ba86ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f0df3a6b-b7da-40d1-8800-2998d7b4e600\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "55be72a6-42ba-46bb-86fb-6d4d8a8f05d2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip-intlb-413597e3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ce5de56-e127-42eb-9d1e-5fbaa5af81de", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "818", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "1b9011cf-2b1f-4e7e-be86-92b365d3ef42", - "Date" : "Mon, 19 Apr 2021 07:44:46 GMT", - "x-ms-arm-service-request-id" : "b902d66c-a83e-42d1-8502-b4067164770c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074446Z:1b9011cf-2b1f-4e7e-be86-92b365d3ef42", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/488af272-a62c-4a37-aaaa-282b60b1dbfc?api-version=2023-02-01", - "x-ms-request-id" : "488af272-a62c-4a37-aaaa-282b60b1dbfc", - "Body" : "{\r\n \"name\": \"pip-intlb-413597e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip-intlb-413597e3\",\r\n \"etag\": \"W/\\\"2bb3b09f-e0c3-4f89-9a3c-70668a1665d8\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d9ae4da3-69e8-47c8-aa4e-8ab0335c1694\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-413597e3\",\r\n \"fqdn\": \"pip-intlb-413597e3.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "9ce5de56-e127-42eb-9d1e-5fbaa5af81de", - "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/southcentralus/operations/488af272-a62c-4a37-aaaa-282b60b1dbfc?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae6fec4f-7418-4e2f-a76c-edc227305da4" - }, - "Response" : { - "content-length" : "29", - "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" : "18b301cb-bb89-429c-b423-0c9a430c8454", - "Date" : "Mon, 19 Apr 2021 07:44:47 GMT", - "x-ms-arm-service-request-id" : "b32aab67-d2a3-4332-a119-a331666a0656", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074448Z:18b301cb-bb89-429c-b423-0c9a430c8454", - "Expires" : "-1", - "x-ms-request-id" : "e9019220-7024-4704-95e1-89c9588b9b3c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "ae6fec4f-7418-4e2f-a76c-edc227305da4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip-intlb-413597e3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "597e0372-1cd3-47e7-9560-0ab8a45cadcd" - }, - "Response" : { - "content-length" : "819", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc776fee-15a7-4ba4-8bcc-969618bbcfa5", - "Date" : "Mon, 19 Apr 2021 07:44:47 GMT", - "x-ms-arm-service-request-id" : "e57e1495-910a-45f4-870f-e832ac773492", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"7bf366b4-9ea7-4943-ab47-cf35909eef5e\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074448Z:bc776fee-15a7-4ba4-8bcc-969618bbcfa5", - "Expires" : "-1", - "x-ms-request-id" : "1b072a9b-c43e-4c6a-ba13-b3f3949c3aea", - "Body" : "{\r\n \"name\": \"pip-intlb-413597e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip-intlb-413597e3\",\r\n \"etag\": \"W/\\\"7bf366b4-9ea7-4943-ab47-cf35909eef5e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d9ae4da3-69e8-47c8-aa4e-8ab0335c1694\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-413597e3\",\r\n \"fqdn\": \"pip-intlb-413597e3.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "597e0372-1cd3-47e7-9560-0ab8a45cadcd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b5faee2-3adf-4e3c-a7c8-ee69078ee3d2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "11379", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "5f1a919a-2488-4941-a4b7-d81984277344", - "Date" : "Mon, 19 Apr 2021 07:44:52 GMT", - "x-ms-arm-service-request-id" : "78ed125e-4557-45b8-9db0-c7817b719e5f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074452Z:5f1a919a-2488-4941-a4b7-d81984277344", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d61a1aa-58a0-429a-9230-b3b1e203c69c?api-version=2023-02-01", - "x-ms-request-id" : "9d61a1aa-58a0-429a-9230-b3b1e203c69c", - "Body" : "{\r\n \"name\": \"intlb-413597e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b571f348-0a90-4db6-8fa1-589ae2132b9c\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-413597e3-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip-intlb-413597e3\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-413597e3-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-413597e3-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\"\r\n },\r\n \"backendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\"\r\n }\r\n ],\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\"\r\n },\r\n \"backendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\"\r\n }\r\n ],\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "7b5faee2-3adf-4e3c-a7c8-ee69078ee3d2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc0a9a6a-ea27-4376-b564-2c79b16b7edc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "11379", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3c7907b6-a511-4729-9c1d-6c30f11cc48b", - "Date" : "Mon, 19 Apr 2021 07:44:53 GMT", - "x-ms-arm-service-request-id" : "d3da196a-c527-4fa1-aafc-932877634265", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074453Z:3c7907b6-a511-4729-9c1d-6c30f11cc48b", - "Expires" : "-1", - "x-ms-request-id" : "f389abe9-42e0-41d8-8f33-66dd8b56cf73", - "Body" : "{\r\n \"name\": \"intlb-413597e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b571f348-0a90-4db6-8fa1-589ae2132b9c\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-413597e3-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip-intlb-413597e3\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-413597e3-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-413597e3-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\"\r\n },\r\n \"backendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\"\r\n }\r\n ],\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\"\r\n },\r\n \"backendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\"\r\n }\r\n ],\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"b1d96a8d-fcd0-4b85-b8c0-5f73c79dc7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/frontendIPConfigurations/intlb-413597e3-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "cc0a9a6a-ea27-4376-b564-2c79b16b7edc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-154772a72?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2622d87d-0a31-4ce0-ac10-c23ecd79b4af", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4248", - "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" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "734c39dd-f1c7-49d4-9f12-5ba770b99daa", - "Date" : "Mon, 19 Apr 2021 07:44:55 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;141,Microsoft.Compute/CreateVMScaleSet30Min;709,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2808,Microsoft.Compute/VmssQueuedVMOperations;0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074456Z:734c39dd-f1c7-49d4-9f12-5ba770b99daa", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5b440f40-ed0e-4e7c-865b-6d4af6a9a381?api-version=2021-11-01", - "x-ms-request-id" : "5b440f40-ed0e-4e7c-865b-6d4af6a9a381", - "Body" : "{\r\n \"name\": \"vmss-154772a72\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-154772a72\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm53643\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"87c71835-f0a0-4a58-aec3-cba9a6cec885\"\r\n }\r\n}", - "x-ms-client-request-id" : "2622d87d-0a31-4ce0-ac10-c23ecd79b4af", - "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/southcentralus/operations/5b440f40-ed0e-4e7c-865b-6d4af6a9a381?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3dfc147-f005-431a-b697-e43d40aae7df" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ce388799-e02c-4098-a2ec-c11316509575", - "Date" : "Mon, 19 Apr 2021 07:45:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074507Z:ce388799-e02c-4098-a2ec-c11316509575", - "Expires" : "-1", - "x-ms-request-id" : "2fa6f861-c972-409f-9847-4b79157b758d", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:44:55.3852065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5b440f40-ed0e-4e7c-865b-6d4af6a9a381\"\r\n}", - "x-ms-client-request-id" : "a3dfc147-f005-431a-b697-e43d40aae7df", - "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/southcentralus/operations/5b440f40-ed0e-4e7c-865b-6d4af6a9a381?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3969d708-fcf7-49b9-8c36-5c41aeafc230" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "827b5372-f766-490b-a7fa-88904ee294fc", - "Date" : "Mon, 19 Apr 2021 07:46:07 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074608Z:827b5372-f766-490b-a7fa-88904ee294fc", - "Expires" : "-1", - "x-ms-request-id" : "c320380b-d136-4a23-8f48-c856b10bb455", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:44:55.3852065+00:00\",\r\n \"endTime\": \"2021-04-19T07:45:41.1666809+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5b440f40-ed0e-4e7c-865b-6d4af6a9a381\"\r\n}", - "x-ms-client-request-id" : "3969d708-fcf7-49b9-8c36-5c41aeafc230", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-154772a72?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "40701caf-0c98-48af-bb12-e82813d83252" - }, - "Response" : { - "content-length" : "4249", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7c31570-5e2d-473a-a5ce-d351ec30b45c", - "Date" : "Mon, 19 Apr 2021 07:46:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2595", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074608Z:f7c31570-5e2d-473a-a5ce-d351ec30b45c", - "Expires" : "-1", - "x-ms-request-id" : "ebb97baa-a524-4f0c-a115-7a3f78a8054c", - "Body" : "{\r\n \"name\": \"vmss-154772a72\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-154772a72\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm53643\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet6496981c033b/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/backendAddressPools/intlb-413597e3-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/loadBalancers/intlb-413597e3/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"87c71835-f0a0-4a58-aec3-cba9a6cec885\"\r\n }\r\n}", - "x-ms-client-request-id" : "40701caf-0c98-48af-bb12-e82813d83252", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-154772a72?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f406c249-354b-44b6-9d25-cc885578aff3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "11c0c34f-dfc9-4b93-8c6d-0596e5edc429", - "Date" : "Mon, 19 Apr 2021 07:46:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2805,Microsoft.Compute/VmssQueuedVMOperations;0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074609Z:11c0c34f-dfc9-4b93-8c6d-0596e5edc429", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5c0d652c-c95c-4812-ac6c-57aa3f427855?api-version=2021-11-01", - "x-ms-request-id" : "5c0d652c-c95c-4812-ac6c-57aa3f427855", - "x-ms-client-request-id" : "f406c249-354b-44b6-9d25-cc885578aff3", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5c0d652c-c95c-4812-ac6c-57aa3f427855?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5c0d652c-c95c-4812-ac6c-57aa3f427855?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7523c741-7d96-4fed-bfe5-b5f092feb728" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "736a0c0e-29c9-49c6-afe3-eb43501fbcff", - "Date" : "Mon, 19 Apr 2021 07:46:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074619Z:736a0c0e-29c9-49c6-afe3-eb43501fbcff", - "Expires" : "-1", - "x-ms-request-id" : "4b2ad01c-add9-4523-9392-78989fa39e51", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:46:09.3543131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5c0d652c-c95c-4812-ac6c-57aa3f427855\"\r\n}", - "x-ms-client-request-id" : "7523c741-7d96-4fed-bfe5-b5f092feb728", - "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/southcentralus/operations/5c0d652c-c95c-4812-ac6c-57aa3f427855?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "87e18716-c72e-425e-a190-8f9083b1d5bb" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e191603d-3e7c-465c-ba97-09f866c20eff", - "Date" : "Mon, 19 Apr 2021 07:46:29 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074630Z:e191603d-3e7c-465c-ba97-09f866c20eff", - "Expires" : "-1", - "x-ms-request-id" : "f453fcb5-1714-4b70-a097-a29316e70a66", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:46:09.3543131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5c0d652c-c95c-4812-ac6c-57aa3f427855\"\r\n}", - "x-ms-client-request-id" : "87e18716-c72e-425e-a190-8f9083b1d5bb", - "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/southcentralus/operations/5c0d652c-c95c-4812-ac6c-57aa3f427855?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "76245c85-15ff-479b-8339-c02b55be570f" - }, - "Response" : { - "content-length" : "184", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b84035f7-cd2d-4af5-885f-1a0880c92d18", - "Date" : "Mon, 19 Apr 2021 07:46:59 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074700Z:b84035f7-cd2d-4af5-885f-1a0880c92d18", - "Expires" : "-1", - "x-ms-request-id" : "7c8fcbb4-eb5c-48cd-864f-c02c63eafc0f", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:46:09.3543131+00:00\",\r\n \"endTime\": \"2021-04-19T07:46:54.2452598+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5c0d652c-c95c-4812-ac6c-57aa3f427855\"\r\n}", - "x-ms-client-request-id" : "76245c85-15ff-479b-8339-c02b55be570f", - "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/southcentralus/operations/5c0d652c-c95c-4812-ac6c-57aa3f427855?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "55bb0834-0504-40ec-9cb2-df097c44d3b3" - }, - "Response" : { - "content-length" : "0", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "68fa2176-c66d-4253-9cb7-6d7882ae8825", - "Date" : "Mon, 19 Apr 2021 07:47:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074700Z:68fa2176-c66d-4253-9cb7-6d7882ae8825", - "Expires" : "-1", - "x-ms-request-id" : "e9828bef-c004-40f4-b2ea-3084ba863a9f", - "x-ms-client-request-id" : "55bb0834-0504-40ec-9cb2-df097c44d3b3" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c240e5a-342a-43fa-855d-6bd1777a90a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "254", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "295770ba-7791-4eee-831c-afd59e4f55c1", - "Date" : "Mon, 19 Apr 2021 07:47:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074705Z:295770ba-7791-4eee-831c-afd59e4f55c1", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/356bbd4d-6545-4089-bb9e-b1750752aba2?api-version=2021-11-01", - "x-ms-request-id" : "356bbd4d-6545-4089-bb9e-b1750752aba2", - "Body" : "{\r\n \"name\": \"dsk-898432a36\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "6c240e5a-342a-43fa-855d-6bd1777a90a7", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/356bbd4d-6545-4089-bb9e-b1750752aba2?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/356bbd4d-6545-4089-bb9e-b1750752aba2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5af38b17-40ce-40e6-b5c2-69e2a8683aa6" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b55de3e-a8f0-4523-93dc-7d1df4c4b70b", - "Date" : "Mon, 19 Apr 2021 07:47:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074708Z:7b55de3e-a8f0-4523-93dc-7d1df4c4b70b", - "Expires" : "-1", - "x-ms-request-id" : "d46f6add-de27-4d0a-ab19-73c38c6e4ad7", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:47:05.6488472+00:00\",\r\n \"endTime\": \"2021-04-19T07:47:05.8050824+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-898432a36\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:47:05.6644925+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"b9b287df-a2da-4552-90fe-69b2bfb8fc7c\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"356bbd4d-6545-4089-bb9e-b1750752aba2\"\r\n}", - "x-ms-client-request-id" : "5af38b17-40ce-40e6-b5c2-69e2a8683aa6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f6b9894-8c49-4dc4-88ab-e906fc25c3d8" - }, - "Response" : { - "content-length" : "837", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4d45ecb5-d35c-4224-b586-2c2d02282fa7", - "Date" : "Mon, 19 Apr 2021 07:47:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074709Z:4d45ecb5-d35c-4224-b586-2c2d02282fa7", - "Expires" : "-1", - "x-ms-request-id" : "a6d8c48d-f76f-4437-9358-51d643fff53e", - "Body" : "{\r\n \"name\": \"dsk-898432a36\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:47:05.6644925+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"b9b287df-a2da-4552-90fe-69b2bfb8fc7c\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "8f6b9894-8c49-4dc4-88ab-e906fc25c3d8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip92001419?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d4f01e4-c593-4d0c-ac6d-d585f13ffcce", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "b6a8a9d2-d85f-4ee2-8751-599c690a0d56", - "Date" : "Mon, 19 Apr 2021 07:47:12 GMT", - "x-ms-arm-service-request-id" : "dc92964f-2b2c-4393-a6df-9b806d2203fd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074712Z:b6a8a9d2-d85f-4ee2-8751-599c690a0d56", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f9964c03-63bc-4db9-9002-6a86d10949f6?api-version=2023-02-01", - "x-ms-request-id" : "f9964c03-63bc-4db9-9002-6a86d10949f6", - "Body" : "{\r\n \"name\": \"pip92001419\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip92001419\",\r\n \"etag\": \"W/\\\"30e8f110-617d-49c6-a793-a2ca27bafba0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"06311a0e-c7fb-4f80-b71d-e2c026f797ae\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-65103b57a\",\r\n \"fqdn\": \"pip-65103b57a.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "6d4f01e4-c593-4d0c-ac6d-d585f13ffcce", - "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/southcentralus/operations/f9964c03-63bc-4db9-9002-6a86d10949f6?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a249e23-dec3-4b33-8003-6610d2ddb590" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "715103bf-55f1-437d-8a74-53b643e56f58", - "Date" : "Mon, 19 Apr 2021 07:47:13 GMT", - "x-ms-arm-service-request-id" : "1c78cd51-52a6-4d13-b332-a24b7018533a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074714Z:715103bf-55f1-437d-8a74-53b643e56f58", - "Expires" : "-1", - "x-ms-request-id" : "cf203af0-263b-40b5-a56a-f3d4eb5a2044", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "4a249e23-dec3-4b33-8003-6610d2ddb590", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip92001419?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6896ae83-e5b7-4003-aa1c-685a86d4343d" - }, - "Response" : { - "content-length" : "795", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7434a12-efaa-4b4c-a26b-d017dcc3e8fb", - "Date" : "Mon, 19 Apr 2021 07:47:13 GMT", - "x-ms-arm-service-request-id" : "48a4da62-ce36-4f96-9626-b67fa7891ace", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"88101247-7e77-427b-9ea8-9a8a15ec922c\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074714Z:f7434a12-efaa-4b4c-a26b-d017dcc3e8fb", - "Expires" : "-1", - "x-ms-request-id" : "aa16e47a-a8c1-4c4c-bbef-196442b79727", - "Body" : "{\r\n \"name\": \"pip92001419\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip92001419\",\r\n \"etag\": \"W/\\\"88101247-7e77-427b-9ea8-9a8a15ec922c\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06311a0e-c7fb-4f80-b71d-e2c026f797ae\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-65103b57a\",\r\n \"fqdn\": \"pip-65103b57a.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "6896ae83-e5b7-4003-aa1c-685a86d4343d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dce1bd87-08ae-4ea4-8494-510ff5a4b9be", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "aa304176-4a76-4f59-bc84-e04464e55a68", - "Date" : "Mon, 19 Apr 2021 07:47:15 GMT", - "x-ms-arm-service-request-id" : "5a0c1fca-23a9-4dc5-993f-16bbafe492d0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074715Z:aa304176-4a76-4f59-bc84-e04464e55a68", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3d40b6a4-8a98-4a79-b1af-74ef4a9f8142?api-version=2023-02-01", - "x-ms-request-id" : "3d40b6a4-8a98-4a79-b1af-74ef4a9f8142", - "Body" : "{\r\n \"name\": \"vnet99848c6a29\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29\",\r\n \"etag\": \"W/\\\"ada79be1-6bae-4bcf-a48f-aa0f63529f02\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6a65b002-6116-4716-a27c-8c14b592d133\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ada79be1-6bae-4bcf-a48f-aa0f63529f02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "dce1bd87-08ae-4ea4-8494-510ff5a4b9be", - "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/southcentralus/operations/3d40b6a4-8a98-4a79-b1af-74ef4a9f8142?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb582e69-d765-4111-8ca4-9323d86d9f48" - }, - "Response" : { - "content-length" : "29", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd536292-9496-4026-ad99-4d52ffe23d9c", - "Date" : "Mon, 19 Apr 2021 07:47:18 GMT", - "x-ms-arm-service-request-id" : "5a1d5ecd-b7fc-4830-9ebd-59aba6807a8a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074719Z:bd536292-9496-4026-ad99-4d52ffe23d9c", - "Expires" : "-1", - "x-ms-request-id" : "582097a9-c9b0-497d-8708-eb0e996150d2", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "cb582e69-d765-4111-8ca4-9323d86d9f48", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "767db247-f1d8-4c46-8ffc-96296686d6cc" - }, - "Response" : { - "content-length" : "1316", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "24310780-fc83-411c-bc29-1e98a46e56e7", - "Date" : "Mon, 19 Apr 2021 07:47:18 GMT", - "x-ms-arm-service-request-id" : "68a91bdb-cc97-44fc-85fe-87847672438f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"afdc3ad3-16bf-4ec4-98d3-b831ca0b5d11\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074719Z:24310780-fc83-411c-bc29-1e98a46e56e7", - "Expires" : "-1", - "x-ms-request-id" : "9c58e68d-71e1-44aa-9455-6fdd9232a1d4", - "Body" : "{\r\n \"name\": \"vnet99848c6a29\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29\",\r\n \"etag\": \"W/\\\"afdc3ad3-16bf-4ec4-98d3-b831ca0b5d11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6a65b002-6116-4716-a27c-8c14b592d133\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29/subnets/subnet1\",\r\n \"etag\": \"W/\\\"afdc3ad3-16bf-4ec4-98d3-b831ca0b5d11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "767db247-f1d8-4c46-8ffc-96296686d6cc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f991ddd-4cf8-419e-9c30-db935ddd9450", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "ce1d931d-5df9-4420-8b5d-46558e57bd5b", - "Date" : "Mon, 19 Apr 2021 07:47:21 GMT", - "x-ms-arm-service-request-id" : "f3c030a2-a1d2-42d4-b18f-0cbc1d3c95be", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074722Z:ce1d931d-5df9-4420-8b5d-46558e57bd5b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fe5f9f39-7d06-4ff7-8032-ec1c97aa19f9?api-version=2023-02-01", - "x-ms-request-id" : "fe5f9f39-7d06-4ff7-8032-ec1c97aa19f9", - "Body" : "{\r\n \"name\": \"nic42840551dd6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6\",\r\n \"etag\": \"W/\\\"2592d893-deef-4640-9e3f-2b3a32d32575\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"93139edf-2df3-4ac0-8d04-3620fff5f01b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2592d893-deef-4640-9e3f-2b3a32d32575\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip92001419\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet99848c6a29/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\": \"akygk0qwmelepit2rqkllewrgd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "4f991ddd-4cf8-419e-9c30-db935ddd9450", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfb1d93d-b6f1-4544-9be4-1630c7aa6c1c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3193", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "c5a4221a-c13d-4f26-846d-3bf279b36f41", - "Date" : "Mon, 19 Apr 2021 07:47:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;567,Microsoft.Compute/PutVM30Min;2840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074727Z:c5a4221a-c13d-4f26-846d-3bf279b36f41", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ddfcb47c-282d-4890-995e-e99d78252b46?api-version=2021-11-01", - "x-ms-request-id" : "ddfcb47c-282d-4890-995e-e99d78252b46", - "Body" : "{\r\n \"name\": \"vm-97235c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2b1cc98e-5415-48be-8aaa-f6946483b3e4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-898432a36\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-97235c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "bfb1d93d-b6f1-4544-9be4-1630c7aa6c1c", - "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/southcentralus/operations/ddfcb47c-282d-4890-995e-e99d78252b46?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef65bb24-c9b4-4a4c-97cb-327e72990081" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ba930cd7-d46d-488a-8469-e33b0388d1f8", - "Date" : "Mon, 19 Apr 2021 07:47:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074737Z:ba930cd7-d46d-488a-8469-e33b0388d1f8", - "Expires" : "-1", - "x-ms-request-id" : "b971acd7-3f8c-4fb7-bfe5-5102165c3134", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:47:25.2923562+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddfcb47c-282d-4890-995e-e99d78252b46\"\r\n}", - "x-ms-client-request-id" : "ef65bb24-c9b4-4a4c-97cb-327e72990081", - "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/southcentralus/operations/ddfcb47c-282d-4890-995e-e99d78252b46?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c77ea454-72c9-4d42-9c21-f2fb78423750" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a93cf837-5a8b-4ab8-ae46-de727250f989", - "Date" : "Mon, 19 Apr 2021 07:48:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074812Z:a93cf837-5a8b-4ab8-ae46-de727250f989", - "Expires" : "-1", - "x-ms-request-id" : "6fb4027f-bada-40ee-84d2-ec23b083a529", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:47:25.2923562+00:00\",\r\n \"endTime\": \"2021-04-19T07:47:54.0736512+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ddfcb47c-282d-4890-995e-e99d78252b46\"\r\n}", - "x-ms-client-request-id" : "c77ea454-72c9-4d42-9c21-f2fb78423750", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e47410a5-4f46-46ea-8e86-b50a533e5006" - }, - "Response" : { - "content-length" : "3967", - "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" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34c3df76-3dae-4d30-ab3d-948e6b2f9e0b", - "Date" : "Mon, 19 Apr 2021 07:48:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074812Z:34c3df76-3dae-4d30-ab3d-948e6b2f9e0b", - "Expires" : "-1", - "x-ms-request-id" : "039182e7-6d47-430b-8a80-2313b4ab87e9", - "Body" : "{\r\n \"name\": \"vm-97235c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2b1cc98e-5415-48be-8aaa-f6946483b3e4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-97235c_OsDisk_1_db775a57f8514f43b197742882592b68\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_OsDisk_1_db775a57f8514f43b197742882592b68\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-898432a36\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-97235c_disk3_d65e049aba1b447aaddd0cb59326cd5b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_disk3_d65e049aba1b447aaddd0cb59326cd5b\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-97235c_disk4_af0428f3fd794f9683d857c0a87daa97\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_disk4_af0428f3fd794f9683d857c0a87daa97\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-97235c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "e47410a5-4f46-46ea-8e86-b50a533e5006", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a061b8de-09c3-47a0-bf83-dd0e9b67a25d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4235", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9dc28a6-3380-4c08-ac29-b664606f5d88", - "Date" : "Mon, 19 Apr 2021 07:48:14 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;566,Microsoft.Compute/PutVM30Min;2836", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074814Z:f9dc28a6-3380-4c08-ac29-b664606f5d88", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/11d83e81-bcdd-4a21-b104-05119c5773d4?api-version=2021-11-01", - "x-ms-request-id" : "11d83e81-bcdd-4a21-b104-05119c5773d4", - "Body" : "{\r\n \"name\": \"vm-97235c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2b1cc98e-5415-48be-8aaa-f6946483b3e4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-97235c_OsDisk_1_db775a57f8514f43b197742882592b68\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_OsDisk_1_db775a57f8514f43b197742882592b68\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-898432a36\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-97235c_disk3_d65e049aba1b447aaddd0cb59326cd5b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_disk3_d65e049aba1b447aaddd0cb59326cd5b\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-97235c_disk4_af0428f3fd794f9683d857c0a87daa97\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_disk4_af0428f3fd794f9683d857c0a87daa97\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-97235c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "a061b8de-09c3-47a0-bf83-dd0e9b67a25d", - "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/southcentralus/operations/11d83e81-bcdd-4a21-b104-05119c5773d4?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "155571fd-0827-430c-bd73-20054e197e70" - }, - "Response" : { - "content-length" : "184", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2a3e1be-f2a8-46d3-8654-ce891932f3eb", - "Date" : "Mon, 19 Apr 2021 07:48:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074844Z:b2a3e1be-f2a8-46d3-8654-ce891932f3eb", - "Expires" : "-1", - "x-ms-request-id" : "107bf6ee-76a0-4b06-81ab-a8ec5c41544d", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:48:13.3707182+00:00\",\r\n \"endTime\": \"2021-04-19T07:48:26.8245926+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"11d83e81-bcdd-4a21-b104-05119c5773d4\"\r\n}", - "x-ms-client-request-id" : "155571fd-0827-430c-bd73-20054e197e70", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f91e0a0f-52bd-4db0-804b-310b1468c9f5" - }, - "Response" : { - "content-length" : "3968", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3fd776ce-482b-4072-b69f-fc77d2cc66bb", - "Date" : "Mon, 19 Apr 2021 07:48:44 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074845Z:3fd776ce-482b-4072-b69f-fc77d2cc66bb", - "Expires" : "-1", - "x-ms-request-id" : "5069e234-31b5-4412-871a-539c94e918ce", - "Body" : "{\r\n \"name\": \"vm-97235c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-97235c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2b1cc98e-5415-48be-8aaa-f6946483b3e4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-97235c_OsDisk_1_db775a57f8514f43b197742882592b68\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_OsDisk_1_db775a57f8514f43b197742882592b68\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-898432a36\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-898432a36\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-97235c_disk4_af0428f3fd794f9683d857c0a87daa97\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_disk4_af0428f3fd794f9683d857c0a87daa97\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm-97235c_disk5_fb92729a3c7649c891ae77d0816a0131\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-97235c_disk5_fb92729a3c7649c891ae77d0816a0131\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-97235c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42840551dd6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "f91e0a0f-52bd-4db0-804b-310b1468c9f5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0785220?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d6c7198-4c5e-421e-8499-f32d626cb3fa", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "231", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2647b4d4-978f-4cc4-83be-8041a2aa577b", - "Date" : "Mon, 19 Apr 2021 07:48:46 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074847Z:2647b4d4-978f-4cc4-83be-8041a2aa577b", - "Expires" : "-1", - "x-ms-request-id" : "2647b4d4-978f-4cc4-83be-8041a2aa577b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220\",\"name\":\"rgcomv0785220\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"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/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip06850505?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a746c523-f9b8-412d-a794-5048aa81e2f4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "796", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "f133bb81-2aec-4bb4-9e60-92865641260f", - "Date" : "Mon, 19 Apr 2021 07:48:51 GMT", - "x-ms-arm-service-request-id" : "7caca709-9c36-4b53-b19e-d283478855ba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074851Z:f133bb81-2aec-4bb4-9e60-92865641260f", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fde7326a-28db-47c1-8b44-34e5e52eb22a?api-version=2023-02-01", - "x-ms-request-id" : "fde7326a-28db-47c1-8b44-34e5e52eb22a", - "Body" : "{\r\n \"name\": \"pip06850505\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip06850505\",\r\n \"etag\": \"W/\\\"4c10fba9-0ca4-400a-8bc6-fad9b2b17ebd\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dea6386e-154a-4977-b7b1-cc4055c0f9d0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-856768bd52\",\r\n \"fqdn\": \"pip-856768bd52.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "a746c523-f9b8-412d-a794-5048aa81e2f4", - "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/southcentralus/operations/fde7326a-28db-47c1-8b44-34e5e52eb22a?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "60e35470-2a5a-4b29-ae5d-d15eb9ccf7b4" - }, - "Response" : { - "content-length" : "29", - "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" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "09b00ccf-26f2-4df3-8d00-7cdb04ff0bc4", - "Date" : "Mon, 19 Apr 2021 07:48:52 GMT", - "x-ms-arm-service-request-id" : "3629e44e-2e3b-4421-9258-3dc35d91586b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074853Z:09b00ccf-26f2-4df3-8d00-7cdb04ff0bc4", - "Expires" : "-1", - "x-ms-request-id" : "42dd464b-ba54-4eae-8276-420a41a8cb66", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "60e35470-2a5a-4b29-ae5d-d15eb9ccf7b4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd4d709e-1fb8-4e85-b1eb-53ec190a53a3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "f149e633-2e86-44c5-814a-0879bcadd602", - "Date" : "Mon, 19 Apr 2021 07:48:52 GMT", - "x-ms-arm-service-request-id" : "e75b18c8-7f15-4fff-ab5e-7acae953f5e4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074853Z:f149e633-2e86-44c5-814a-0879bcadd602", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e3f3dc05-bdeb-4d2f-b34c-c99bc8f274a2?api-version=2023-02-01", - "x-ms-request-id" : "e3f3dc05-bdeb-4d2f-b34c-c99bc8f274a2", - "Body" : "{\r\n \"name\": \"vnet01207c6379\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379\",\r\n \"etag\": \"W/\\\"602565f0-dc01-49e7-a3a3-699d90f9064d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"973a1413-3676-4f07-8d31-1fd372028937\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379/subnets/subnet1\",\r\n \"etag\": \"W/\\\"602565f0-dc01-49e7-a3a3-699d90f9064d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "dd4d709e-1fb8-4e85-b1eb-53ec190a53a3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip06850505?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "148e79e5-6752-4e50-82bf-7a0b9e406486" - }, - "Response" : { - "content-length" : "797", - "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" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1bee9645-7372-40d7-bb8c-c2f1ab648c35", - "Date" : "Mon, 19 Apr 2021 07:48:52 GMT", - "x-ms-arm-service-request-id" : "c6db396a-ad0b-4332-b9d8-09255164dedd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"365f5263-322a-4486-934c-348e4825825a\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074853Z:1bee9645-7372-40d7-bb8c-c2f1ab648c35", - "Expires" : "-1", - "x-ms-request-id" : "2b87f8cb-0d18-43f8-8578-f36b08a1b36d", - "Body" : "{\r\n \"name\": \"pip06850505\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip06850505\",\r\n \"etag\": \"W/\\\"365f5263-322a-4486-934c-348e4825825a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dea6386e-154a-4977-b7b1-cc4055c0f9d0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-856768bd52\",\r\n \"fqdn\": \"pip-856768bd52.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "148e79e5-6752-4e50-82bf-7a0b9e406486", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg964421a65b158?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5960a52b-8d61-433e-abb4-5b174831c887", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "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" : "1191", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "b7565298-424f-4e5a-8204-c29391b14269", - "Date" : "Mon, 19 Apr 2021 07:48:54 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074854Z:b7565298-424f-4e5a-8204-c29391b14269", - "Expires" : "-1", - "x-ms-request-id" : "49682376-057b-4aa0-afcb-3912970fef32", - "Body" : "", - "x-ms-client-request-id" : "5960a52b-8d61-433e-abb4-5b174831c887", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/49682376-057b-4aa0-afcb-3912970fef32?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e3f3dc05-bdeb-4d2f-b34c-c99bc8f274a2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "69c63624-5f12-4a4e-9911-8e8b33228c58" - }, - "Response" : { - "content-length" : "29", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a002bca-c5dc-4e3c-ba3f-99479f333cb9", - "Date" : "Mon, 19 Apr 2021 07:48:56 GMT", - "x-ms-arm-service-request-id" : "c54ea79d-b51e-4c80-9c6b-799c7621412e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074856Z:3a002bca-c5dc-4e3c-ba3f-99479f333cb9", - "Expires" : "-1", - "x-ms-request-id" : "e53c3226-229a-4e9f-bceb-86e6e8188b85", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "69c63624-5f12-4a4e-9911-8e8b33228c58", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2c65309-a148-4d48-8a42-6362c2524796" - }, - "Response" : { - "content-length" : "1316", - "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" : "11983", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "407b0a69-861e-4f01-9ffe-241b2353fe74", - "Date" : "Mon, 19 Apr 2021 07:48:55 GMT", - "x-ms-arm-service-request-id" : "09d0dde4-42eb-48d9-ae50-603946af1f5a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"705ef13c-160e-426d-a1ea-95e2fcde3135\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074856Z:407b0a69-861e-4f01-9ffe-241b2353fe74", - "Expires" : "-1", - "x-ms-request-id" : "e53a5938-5aeb-4923-8c57-1e5986def5f5", - "Body" : "{\r\n \"name\": \"vnet01207c6379\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379\",\r\n \"etag\": \"W/\\\"705ef13c-160e-426d-a1ea-95e2fcde3135\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"973a1413-3676-4f07-8d31-1fd372028937\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379/subnets/subnet1\",\r\n \"etag\": \"W/\\\"705ef13c-160e-426d-a1ea-95e2fcde3135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e2c65309-a148-4d48-8a42-6362c2524796", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic254852edd38?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "81d8e55b-7bf9-4c93-b7cd-439fc3a1b197", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "5363def6-af19-4b16-be60-1f030466eead", - "Date" : "Mon, 19 Apr 2021 07:49:00 GMT", - "x-ms-arm-service-request-id" : "aa5188b0-5a83-4621-9572-a9ac54512fa0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074901Z:5363def6-af19-4b16-be60-1f030466eead", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ca7dad49-3822-447a-8ff8-23d8ce6cc15d?api-version=2023-02-01", - "x-ms-request-id" : "ca7dad49-3822-447a-8ff8-23d8ce6cc15d", - "Body" : "{\r\n \"name\": \"nic254852edd38\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic254852edd38\",\r\n \"etag\": \"W/\\\"402f66b8-0b19-4341-ae0c-5993f87b759e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e27fe2e-e86c-4234-9172-6bb0e9798010\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic254852edd38/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"402f66b8-0b19-4341-ae0c-5993f87b759e\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip06850505\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet01207c6379/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\": \"cmkdvf1wgydu5djrd5jxeaujgh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "81d8e55b-7bf9-4c93-b7cd-439fc3a1b197", - "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/southcentralus/asyncoperations/49682376-057b-4aa0-afcb-3912970fef32?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a3c4569-3034-4802-b3e4-ca8a15ab601d" - }, - "Response" : { - "content-length" : "1839", - "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" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c66eb49-ffb6-49f4-be8b-437efd5a1533", - "Date" : "Mon, 19 Apr 2021 07:49:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074912Z:1c66eb49-ffb6-49f4-be8b-437efd5a1533", - "Expires" : "-1", - "x-ms-request-id" : "4e7ec390-e75a-40cc-bda8-d4c8e1ebe816", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg964421a65b158\",\"name\":\"stg964421a65b158\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:48:53.1796837Z\",\"key2\":\"2021-04-19T07:48:53.1796837Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:48:53.1796837Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:48:53.1796837Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:48:53.1015460Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg964421a65b158.dfs.core.windows.net/\",\"web\":\"https://stg964421a65b158.z21.web.core.windows.net/\",\"blob\":\"https://stg964421a65b158.blob.core.windows.net/\",\"queue\":\"https://stg964421a65b158.queue.core.windows.net/\",\"table\":\"https://stg964421a65b158.table.core.windows.net/\",\"file\":\"https://stg964421a65b158.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg964421a65b158-secondary.dfs.core.windows.net/\",\"web\":\"https://stg964421a65b158-secondary.z21.web.core.windows.net/\",\"blob\":\"https://stg964421a65b158-secondary.blob.core.windows.net/\",\"queue\":\"https://stg964421a65b158-secondary.queue.core.windows.net/\",\"table\":\"https://stg964421a65b158-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "0a3c4569-3034-4802-b3e4-ca8a15ab601d", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg964421a65b158?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c455c673-5999-42cc-8467-f90948088ce2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1839", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cba5e7a4-36ed-4a09-a4af-5a82bcf63c22", - "Date" : "Mon, 19 Apr 2021 07:49:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074913Z:cba5e7a4-36ed-4a09-a4af-5a82bcf63c22", - "Expires" : "-1", - "x-ms-request-id" : "f0936f61-e182-43d4-b0cc-6d9933973286", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg964421a65b158\",\"name\":\"stg964421a65b158\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:48:53.1796837Z\",\"key2\":\"2021-04-19T07:48:53.1796837Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:48:53.1796837Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:48:53.1796837Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:48:53.1015460Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg964421a65b158.dfs.core.windows.net/\",\"web\":\"https://stg964421a65b158.z21.web.core.windows.net/\",\"blob\":\"https://stg964421a65b158.blob.core.windows.net/\",\"queue\":\"https://stg964421a65b158.queue.core.windows.net/\",\"table\":\"https://stg964421a65b158.table.core.windows.net/\",\"file\":\"https://stg964421a65b158.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg964421a65b158-secondary.dfs.core.windows.net/\",\"web\":\"https://stg964421a65b158-secondary.z21.web.core.windows.net/\",\"blob\":\"https://stg964421a65b158-secondary.blob.core.windows.net/\",\"queue\":\"https://stg964421a65b158-secondary.queue.core.windows.net/\",\"table\":\"https://stg964421a65b158-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "c455c673-5999-42cc-8467-f90948088ce2", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "30f6eb67-ce2e-46d3-8c03-9e2b897b36d8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2448", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "d2d4bc97-758b-4c2f-9c6e-474174ec3ce8", - "Date" : "Mon, 19 Apr 2021 07:49:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;565,Microsoft.Compute/PutVM30Min;2835", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074917Z:d2d4bc97-758b-4c2f-9c6e-474174ec3ce8", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/e9702928-3c65-406f-8b81-e87c9df0de81?api-version=2021-11-01", - "x-ms-request-id" : "e9702928-3c65-406f-8b81-e87c9df0de81", - "Body" : "{\r\n \"name\": \"vm-69962d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7652c115-9694-44c3-b55e-cb175ac4448d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-69962d-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-1-4a1f725a-799f-4fd1-b722-163676b4d478.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-2-0ded251c-177b-449c-be94-5ed1dfea1d67.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-69962d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic254852edd38\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "30f6eb67-ce2e-46d3-8c03-9e2b897b36d8", - "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/southcentralus/operations/e9702928-3c65-406f-8b81-e87c9df0de81?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "13d861f3-f355-4a9c-9efa-ebe4f52c372d" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b016512-d385-4034-ab2b-291e4804ac6a", - "Date" : "Mon, 19 Apr 2021 07:49:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T074927Z:8b016512-d385-4034-ab2b-291e4804ac6a", - "Expires" : "-1", - "x-ms-request-id" : "3a116bb6-4159-4115-a2bd-0949bf03134a", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:49:15.6366949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9702928-3c65-406f-8b81-e87c9df0de81\"\r\n}", - "x-ms-client-request-id" : "13d861f3-f355-4a9c-9efa-ebe4f52c372d", - "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/southcentralus/operations/e9702928-3c65-406f-8b81-e87c9df0de81?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "80f8314b-bed4-48ff-91d8-998ff29ef020" - }, - "Response" : { - "content-length" : "184", - "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" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bd8af3e6-beb3-463c-bb62-844c97c31699", - "Date" : "Mon, 19 Apr 2021 07:50:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075002Z:bd8af3e6-beb3-463c-bb62-844c97c31699", - "Expires" : "-1", - "x-ms-request-id" : "8ba09548-347a-441e-a550-03936dc13444", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:49:15.6366949+00:00\",\r\n \"endTime\": \"2021-04-19T07:49:38.8243207+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9702928-3c65-406f-8b81-e87c9df0de81\"\r\n}", - "x-ms-client-request-id" : "80f8314b-bed4-48ff-91d8-998ff29ef020", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cc2feef-64a5-439d-a504-46b33cacfe9d" - }, - "Response" : { - "content-length" : "2476", - "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" : "11982", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "504f56c4-7a86-4447-9d46-de85ff67c3e4", - "Date" : "Mon, 19 Apr 2021 07:50:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075003Z:504f56c4-7a86-4447-9d46-de85ff67c3e4", - "Expires" : "-1", - "x-ms-request-id" : "e62ba1dd-810d-4770-9ebc-f83ca466193c", - "Body" : "{\r\n \"name\": \"vm-69962d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7652c115-9694-44c3-b55e-cb175ac4448d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-69962d-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-1-4a1f725a-799f-4fd1-b722-163676b4d478.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-2-0ded251c-177b-449c-be94-5ed1dfea1d67.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-69962d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic254852edd38\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "9cc2feef-64a5-439d-a504-46b33cacfe9d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c04bd54-1db9-4b50-a7c3-57c00f8422ed", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "ec92fec3-0b4e-4e4c-9de1-09a89e011531", - "Date" : "Mon, 19 Apr 2021 07:50:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075003Z:ec92fec3-0b4e-4e4c-9de1-09a89e011531", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ab1d7b8a-42f8-4466-8d44-271f673643c2?api-version=2021-11-01", - "x-ms-request-id" : "ab1d7b8a-42f8-4466-8d44-271f673643c2", - "x-ms-client-request-id" : "2c04bd54-1db9-4b50-a7c3-57c00f8422ed", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ab1d7b8a-42f8-4466-8d44-271f673643c2?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9a28f7c-ddf1-4021-a4ee-0f548c9fd178", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "143e8b48-23c1-4773-9ff5-54a26c71bb45", - "Date" : "Mon, 19 Apr 2021 07:51:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075103Z:143e8b48-23c1-4773-9ff5-54a26c71bb45", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f7e4a6ab-2f63-4658-9120-d77128d4b7f0?api-version=2021-11-01", - "x-ms-request-id" : "f7e4a6ab-2f63-4658-9120-d77128d4b7f0", - "x-ms-client-request-id" : "f9a28f7c-ddf1-4021-a4ee-0f548c9fd178", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f7e4a6ab-2f63-4658-9120-d77128d4b7f0?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f7e4a6ab-2f63-4658-9120-d77128d4b7f0?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a232cb25-0d61-47e9-9c06-4940a9375d05" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "80f9fe13-562a-4683-9088-341588ba89b4", - "Date" : "Mon, 19 Apr 2021 07:51:13 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075114Z:80f9fe13-562a-4683-9088-341588ba89b4", - "Expires" : "-1", - "x-ms-request-id" : "4866f3c5-118e-4c32-9eda-41ad0cb113c2", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:51:03.8091543+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f7e4a6ab-2f63-4658-9120-d77128d4b7f0\"\r\n}", - "x-ms-client-request-id" : "a232cb25-0d61-47e9-9c06-4940a9375d05", - "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/southcentralus/operations/f7e4a6ab-2f63-4658-9120-d77128d4b7f0?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7027a1a-85fd-410d-97c6-51c86d93879f" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df8e3c64-37e9-4978-af24-c6707681dcee", - "Date" : "Mon, 19 Apr 2021 07:51:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075150Z:df8e3c64-37e9-4978-af24-c6707681dcee", - "Expires" : "-1", - "x-ms-request-id" : "42a139eb-a829-4d11-a0c2-9a313baaed3f", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:51:03.8091543+00:00\",\r\n \"endTime\": \"2021-04-19T07:51:38.5280906+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f7e4a6ab-2f63-4658-9120-d77128d4b7f0\"\r\n}", - "x-ms-client-request-id" : "f7027a1a-85fd-410d-97c6-51c86d93879f", - "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/southcentralus/operations/f7e4a6ab-2f63-4658-9120-d77128d4b7f0?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee5a4dc2-67ac-4c98-b7d9-8b9afd2597a6" - }, - "Response" : { - "content-length" : "0", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f4d8b82-ae83-4ee8-9797-4950984bb4f9", - "Date" : "Mon, 19 Apr 2021 07:51:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075150Z:8f4d8b82-ae83-4ee8-9797-4950984bb4f9", - "Expires" : "-1", - "x-ms-request-id" : "4ab6ff16-84b1-4532-ab84-50fddfab7e75", - "x-ms-client-request-id" : "ee5a4dc2-67ac-4c98-b7d9-8b9afd2597a6" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "957ac2ab-69f7-40e2-8517-83ae63932ce3", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3927", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "66fcc378-8007-47d6-9abb-bdd4ff9ea885", - "Date" : "Mon, 19 Apr 2021 07:51:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075151Z:66fcc378-8007-47d6-9abb-bdd4ff9ea885", - "Expires" : "-1", - "x-ms-request-id" : "eba835fd-52bd-434f-8a41-a648dbe2d926", - "Body" : "{\r\n \"name\": \"vm-69962d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7652c115-9694-44c3-b55e-cb175ac4448d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-69962d-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-1-4a1f725a-799f-4fd1-b722-163676b4d478.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-2-0ded251c-177b-449c-be94-5ed1dfea1d67.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-69962d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic254852edd38\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-69962d-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:51:36.4655665+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:51:36.4812012+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:51:36.4812012+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\": \"2021-04-19T07:51:36.4812012+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}", - "x-ms-client-request-id" : "957ac2ab-69f7-40e2-8517-83ae63932ce3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d/generalize?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ef5bf16-349e-462b-a0ba-a9dd2a3f89f0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7b48c912-b3e6-45e3-9557-9dc9e64fb215", - "Date" : "Mon, 19 Apr 2021 07:51:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075151Z:7b48c912-b3e6-45e3-9557-9dc9e64fb215", - "Expires" : "-1", - "x-ms-request-id" : "e0749051-de69-4c96-89c2-1234901be6a3", - "x-ms-client-request-id" : "8ef5bf16-349e-462b-a0ba-a9dd2a3f89f0" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/images/cimg-43586?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1f5f6f2-e1e6-4541-9f0b-c6b11f34602b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1524", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "569df324-2540-4716-8834-24241e890317", - "Date" : "Mon, 19 Apr 2021 07:52:03 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075204Z:569df324-2540-4716-8834-24241e890317", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c1e238e5-f551-4e4c-a04e-0c677b198396?api-version=2021-11-01", - "x-ms-request-id" : "c1e238e5-f551-4e4c-a04e-0c677b198396", - "Body" : "{\r\n \"name\": \"cimg-43586\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/images/cimg-43586\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-1-4a1f725a-799f-4fd1-b722-163676b4d478.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-2-0ded251c-177b-449c-be94-5ed1dfea1d67.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "x-ms-client-request-id" : "f1f5f6f2-e1e6-4541-9f0b-c6b11f34602b", - "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/southcentralus/operations/c1e238e5-f551-4e4c-a04e-0c677b198396?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "541d81c3-8a9a-4cba-befd-c05eacac97ed" - }, - "Response" : { - "content-length" : "184", - "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" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ee41a39-6a4f-4fab-bcf8-1865c7ec2a99", - "Date" : "Mon, 19 Apr 2021 07:52:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075234Z:2ee41a39-6a4f-4fab-bcf8-1865c7ec2a99", - "Expires" : "-1", - "x-ms-request-id" : "86863b9a-2ce0-4e92-be1e-27f26f4251e7", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:51:57.2780818+00:00\",\r\n \"endTime\": \"2021-04-19T07:52:07.6374789+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c1e238e5-f551-4e4c-a04e-0c677b198396\"\r\n}", - "x-ms-client-request-id" : "541d81c3-8a9a-4cba-befd-c05eacac97ed", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/images/cimg-43586?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "20dd8049-9049-4150-890a-83332430ffca" - }, - "Response" : { - "content-length" : "1525", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aee4a767-4f92-4027-8ba0-383c8411a13c", - "Date" : "Mon, 19 Apr 2021 07:52:34 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075234Z:aee4a767-4f92-4027-8ba0-383c8411a13c", - "Expires" : "-1", - "x-ms-request-id" : "b6d09cf0-83d8-4d45-bce0-5a20b594c130", - "Body" : "{\r\n \"name\": \"cimg-43586\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/images/cimg-43586\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-1-4a1f725a-799f-4fd1-b722-163676b4d478.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-data-disk-2-0ded251c-177b-449c-be94-5ed1dfea1d67.vhd\",\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", - "x-ms-client-request-id" : "20dd8049-9049-4150-890a-83332430ffca", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b802a486-9ea6-4002-b515-bcc745744a32", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "3fe15998-5d70-408f-9408-05f5b380a40e", - "Date" : "Mon, 19 Apr 2021 07:52:38 GMT", - "x-ms-arm-service-request-id" : "49ab58d8-24fc-4a09-9404-439b5366a8fe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075238Z:3fe15998-5d70-408f-9408-05f5b380a40e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/afbd578c-cca3-4768-a1ad-7574fcf9cfe6?api-version=2023-02-01", - "x-ms-request-id" : "afbd578c-cca3-4768-a1ad-7574fcf9cfe6", - "Body" : "{\r\n \"name\": \"vnet237238b2ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac\",\r\n \"etag\": \"W/\\\"05bcfe9d-607b-42c8-910e-d48e217e26dc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"20c5c333-0b68-4161-87d9-4243d5ad69c1\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"05bcfe9d-607b-42c8-910e-d48e217e26dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "b802a486-9ea6-4002-b515-bcc745744a32", - "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/southcentralus/operations/afbd578c-cca3-4768-a1ad-7574fcf9cfe6?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b58fff18-3e6b-4271-92ad-0c653c2af636" - }, - "Response" : { - "content-length" : "29", - "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" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cdd89304-81e1-417c-ac86-9dce8f963edb", - "Date" : "Mon, 19 Apr 2021 07:52:41 GMT", - "x-ms-arm-service-request-id" : "c3694cfd-f61f-4f89-9dc2-b43c1d1530ab", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075241Z:cdd89304-81e1-417c-ac86-9dce8f963edb", - "Expires" : "-1", - "x-ms-request-id" : "85f51847-aaa5-4287-9f6d-fd0f0901de62", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "b58fff18-3e6b-4271-92ad-0c653c2af636", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "01147e23-d105-47e5-9513-9bb21480491e" - }, - "Response" : { - "content-length" : "1316", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9eef676a-8977-4c58-aee0-1155fcbb0644", - "Date" : "Mon, 19 Apr 2021 07:52:41 GMT", - "x-ms-arm-service-request-id" : "811af138-0a98-4e89-b165-ebc403247471", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"8c6944bd-da76-4ede-95ad-656da3152822\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075242Z:9eef676a-8977-4c58-aee0-1155fcbb0644", - "Expires" : "-1", - "x-ms-request-id" : "f6dbd600-2a8e-4c96-ae4b-4aed76ea3d23", - "Body" : "{\r\n \"name\": \"vnet237238b2ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac\",\r\n \"etag\": \"W/\\\"8c6944bd-da76-4ede-95ad-656da3152822\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20c5c333-0b68-4161-87d9-4243d5ad69c1\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8c6944bd-da76-4ede-95ad-656da3152822\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "01147e23-d105-47e5-9513-9bb21480491e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42935fb2962?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc5f9c08-9393-4f00-a7cf-fcf1a90c3adc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1668", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "834c51ca-e2da-4bc7-9ea2-570508d2cec1", - "Date" : "Mon, 19 Apr 2021 07:52:44 GMT", - "x-ms-arm-service-request-id" : "b32f07ae-515a-4328-94d5-823dd09ab1f7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075244Z:834c51ca-e2da-4bc7-9ea2-570508d2cec1", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c1d1fac8-4be8-4541-8f69-a77e3dc94f87?api-version=2023-02-01", - "x-ms-request-id" : "c1d1fac8-4be8-4541-8f69-a77e3dc94f87", - "Body" : "{\r\n \"name\": \"nic42935fb2962\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42935fb2962\",\r\n \"etag\": \"W/\\\"6bc22026-0007-4f0d-955f-1b750c1946f2\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cb0f4ea-8771-4653-b94f-c36596c5326e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42935fb2962/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6bc22026-0007-4f0d-955f-1b750c1946f2\\\"\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet237238b2ac/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\": \"gpb2kidibnqudb4zijb3llljyb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "cc5f9c08-9393-4f00-a7cf-fcf1a90c3adc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-275554?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b94303a8-9100-495b-875f-69ea0f3825ef", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2716", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "2f4741af-3c4c-440e-9b08-7eb6fbdfa74e", - "Date" : "Mon, 19 Apr 2021 07:52:50 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;567,Microsoft.Compute/PutVM30Min;2834", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075250Z:2f4741af-3c4c-440e-9b08-7eb6fbdfa74e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/be7468ab-f71a-40d9-bbcb-5deb8b86a6b6?api-version=2021-11-01", - "x-ms-request-id" : "be7468ab-f71a-40d9-bbcb-5deb8b86a6b6", - "Body" : "{\r\n \"name\": \"vm-275554\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-275554\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"650a3564-ba70-4bb7-9a80-c8145f633285\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/images/cimg-43586\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-275554\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42935fb2962\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "b94303a8-9100-495b-875f-69ea0f3825ef", - "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/southcentralus/operations/be7468ab-f71a-40d9-bbcb-5deb8b86a6b6?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0309601-a626-4afb-8659-4c2e34e0032b" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8398930f-d0fa-4e5a-bcf4-d3d587457f6d", - "Date" : "Mon, 19 Apr 2021 07:53:01 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;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075301Z:8398930f-d0fa-4e5a-bcf4-d3d587457f6d", - "Expires" : "-1", - "x-ms-request-id" : "f7252310-6b30-4cc4-aecb-7d9663cbba36", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:52:49.1844584+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"be7468ab-f71a-40d9-bbcb-5deb8b86a6b6\"\r\n}", - "x-ms-client-request-id" : "f0309601-a626-4afb-8659-4c2e34e0032b", - "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/southcentralus/operations/be7468ab-f71a-40d9-bbcb-5deb8b86a6b6?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a688aed-b848-401d-b3cc-56198c836cc3" - }, - "Response" : { - "content-length" : "184", - "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" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aa03dbc2-2cbf-4ea9-87a0-9fb97ad29aef", - "Date" : "Mon, 19 Apr 2021 07:53:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075337Z:aa03dbc2-2cbf-4ea9-87a0-9fb97ad29aef", - "Expires" : "-1", - "x-ms-request-id" : "edfa3071-6326-4cfd-9aa0-c70d4bff6ece", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:52:49.1844584+00:00\",\r\n \"endTime\": \"2021-04-19T07:53:15.0437707+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"be7468ab-f71a-40d9-bbcb-5deb8b86a6b6\"\r\n}", - "x-ms-client-request-id" : "7a688aed-b848-401d-b3cc-56198c836cc3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-275554?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0fd2373-b521-4d21-aff8-0d68c5d420d5" - }, - "Response" : { - "content-length" : "3484", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f922fb6-de0f-4ec5-936f-ae86a62bcc8d", - "Date" : "Mon, 19 Apr 2021 07:53:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075337Z:5f922fb6-de0f-4ec5-936f-ae86a62bcc8d", - "Expires" : "-1", - "x-ms-request-id" : "a57d08a0-1933-46a0-80f5-caccf034d5ae", - "Body" : "{\r\n \"name\": \"vm-275554\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-275554\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"650a3564-ba70-4bb7-9a80-c8145f633285\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/images/cimg-43586\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-275554_disk1_b20c3c5aa69849c68bdea13bdb86a871\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-275554_disk1_b20c3c5aa69849c68bdea13bdb86a871\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-275554_disk2_f32c56ebb29a490a8089dfad5b3b2ba8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-275554_disk2_f32c56ebb29a490a8089dfad5b3b2ba8\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-275554_disk3_e93c5cc3fe664e63bab2507be6e889e7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-275554_disk3_e93c5cc3fe664e63bab2507be6e889e7\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-275554\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42935fb2962\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "d0fd2373-b521-4d21-aff8-0d68c5d420d5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-69962d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a4968cb-0222-4fef-8989-f63bb582950b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "01dbed32-37b7-49af-bc93-24dcb4258a7a", - "Date" : "Mon, 19 Apr 2021 07:53:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075338Z:01dbed32-37b7-49af-bc93-24dcb4258a7a", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/89bb0f9d-763c-4e61-9fce-de9f288f389b?api-version=2021-11-01", - "x-ms-request-id" : "89bb0f9d-763c-4e61-9fce-de9f288f389b", - "x-ms-client-request-id" : "9a4968cb-0222-4fef-8989-f63bb582950b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/89bb0f9d-763c-4e61-9fce-de9f288f389b?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/89bb0f9d-763c-4e61-9fce-de9f288f389b?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "96e71824-3a89-4788-a5f7-65e762c835cd" - }, - "Response" : { - "content-length" : "183", - "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" : "11978", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a773ae62-4031-4496-ae5a-b75d43b2c9ec", - "Date" : "Mon, 19 Apr 2021 07:53:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075348Z:a773ae62-4031-4496-ae5a-b75d43b2c9ec", - "Expires" : "-1", - "x-ms-request-id" : "b42163fe-d3c0-4bde-9e59-83b1b8ea4acb", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:53:38.528202+00:00\",\r\n \"endTime\": \"2021-04-19T07:53:39.0906766+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"89bb0f9d-763c-4e61-9fce-de9f288f389b\"\r\n}", - "x-ms-client-request-id" : "96e71824-3a89-4788-a5f7-65e762c835cd", - "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/southcentralus/operations/89bb0f9d-763c-4e61-9fce-de9f288f389b?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c117dd8-01e9-40c7-88db-a57fd227d60d" - }, - "Response" : { - "content-length" : "0", - "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" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "94450c75-f7a1-4dc5-b277-4130500d5309", - "Date" : "Mon, 19 Apr 2021 07:53:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075349Z:94450c75-f7a1-4dc5-b277-4130500d5309", - "Expires" : "-1", - "x-ms-request-id" : "22d90487-0bae-4776-ade6-cb6220a92546", - "x-ms-client-request-id" : "1c117dd8-01e9-40c7-88db-a57fd227d60d" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aff62715-8900-47cf-92cf-c5e233f2cd88", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "380c6c18-88cc-4df2-bc21-40bb328905a5", - "Date" : "Mon, 19 Apr 2021 07:53:58 GMT", - "x-ms-arm-service-request-id" : "d29cc391-463d-4a6d-b094-6520d82add61", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075358Z:380c6c18-88cc-4df2-bc21-40bb328905a5", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/bc35d7d5-e638-406a-891f-fb6aa82f05d0?api-version=2023-02-01", - "x-ms-request-id" : "bc35d7d5-e638-406a-891f-fb6aa82f05d0", - "Body" : "{\r\n \"name\": \"vnet33227e808c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c\",\r\n \"etag\": \"W/\\\"937cd3dd-f2cc-4675-a61c-a938d67b4d13\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8d1f6665-9018-422b-9db5-8f0a743623a0\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"937cd3dd-f2cc-4675-a61c-a938d67b4d13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "aff62715-8900-47cf-92cf-c5e233f2cd88", - "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/southcentralus/operations/bc35d7d5-e638-406a-891f-fb6aa82f05d0?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7dfdf41b-3143-41a3-b249-d0e93e943b3a" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7bbbeb89-acfe-49ef-96f8-f0d73cad8957", - "Date" : "Mon, 19 Apr 2021 07:54:00 GMT", - "x-ms-arm-service-request-id" : "25ef2b0b-7d87-411b-8976-fab98c0000fb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075401Z:7bbbeb89-acfe-49ef-96f8-f0d73cad8957", - "Expires" : "-1", - "x-ms-request-id" : "33baa4ac-6882-4b17-9842-bdd6f67d7ad2", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "7dfdf41b-3143-41a3-b249-d0e93e943b3a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0848587-4cfd-403d-abbe-d751348f5f13" - }, - "Response" : { - "content-length" : "1316", - "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" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf7f41bf-e59d-48a4-be77-b605bcb42f53", - "Date" : "Mon, 19 Apr 2021 07:54:01 GMT", - "x-ms-arm-service-request-id" : "3c16ea18-b163-4fe1-8708-6452d0bf41b4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"b575b15e-5abc-471e-9b5b-71c1d1ff0ad3\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075402Z:cf7f41bf-e59d-48a4-be77-b605bcb42f53", - "Expires" : "-1", - "x-ms-request-id" : "74c184f2-4786-4e48-83ec-de5e5c12ebe0", - "Body" : "{\r\n \"name\": \"vnet33227e808c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c\",\r\n \"etag\": \"W/\\\"b575b15e-5abc-471e-9b5b-71c1d1ff0ad3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d1f6665-9018-422b-9db5-8f0a743623a0\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b575b15e-5abc-471e-9b5b-71c1d1ff0ad3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "a0848587-4cfd-403d-abbe-d751348f5f13", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic95401fbb356?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "903fe08e-1995-456b-8929-d5390b930b7e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1668", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "78054cf4-9d39-4350-8ba7-74522ca97fe8", - "Date" : "Mon, 19 Apr 2021 07:54:05 GMT", - "x-ms-arm-service-request-id" : "a7bd8a13-187f-40da-b7de-53d2fbb0c7db", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075405Z:78054cf4-9d39-4350-8ba7-74522ca97fe8", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ffd946bd-9d66-4585-b62e-b8344d21aeeb?api-version=2023-02-01", - "x-ms-request-id" : "ffd946bd-9d66-4585-b62e-b8344d21aeeb", - "Body" : "{\r\n \"name\": \"nic95401fbb356\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic95401fbb356\",\r\n \"etag\": \"W/\\\"52abf9b0-76b9-4e94-b05d-2644a87a35f6\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"85590a3c-75b8-4712-b5f4-26589d816029\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic95401fbb356/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"52abf9b0-76b9-4e94-b05d-2644a87a35f6\\\"\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet33227e808c/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\": \"mvtb5diysavufhnvr2fhinrdua.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "903fe08e-1995-456b-8929-d5390b930b7e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-486961?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e505b3c-edfa-4365-b7a4-24ba37625f3b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1062", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "5c4413c9-e70b-486c-940c-47a53b18c0ea", - "Date" : "Mon, 19 Apr 2021 07:54:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;566,Microsoft.Compute/PutVM30Min;2833", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075411Z:5c4413c9-e70b-486c-940c-47a53b18c0ea", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4b9fcbc0-1313-48a5-a33a-f2651f4d8c26?api-version=2021-11-01", - "x-ms-request-id" : "4b9fcbc0-1313-48a5-a33a-f2651f4d8c26", - "Body" : "{\r\n \"name\": \"vm-486961\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-486961\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3d137cd2-86f6-463e-97ef-fcfc672121e8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-486961-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic95401fbb356\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "7e505b3c-edfa-4365-b7a4-24ba37625f3b", - "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/southcentralus/operations/4b9fcbc0-1313-48a5-a33a-f2651f4d8c26?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfb79697-beec-4b65-822b-198e41a88212" - }, - "Response" : { - "content-length" : "184", - "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" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "13013894-15c6-48d7-ae26-61fd4d0be201", - "Date" : "Mon, 19 Apr 2021 07:54:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075421Z:13013894-15c6-48d7-ae26-61fd4d0be201", - "Expires" : "-1", - "x-ms-request-id" : "0efd0a22-cc2c-4237-9c54-ff4437e4e331", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:54:10.4187716+00:00\",\r\n \"endTime\": \"2021-04-19T07:54:19.0437706+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4b9fcbc0-1313-48a5-a33a-f2651f4d8c26\"\r\n}", - "x-ms-client-request-id" : "dfb79697-beec-4b65-822b-198e41a88212", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-486961?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b50d7f9-95a0-492a-8190-c8bcab154e84" - }, - "Response" : { - "content-length" : "1090", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f5d4533-3d99-423a-a5e3-58025ce304f8", - "Date" : "Mon, 19 Apr 2021 07:54:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075422Z:2f5d4533-3d99-423a-a5e3-58025ce304f8", - "Expires" : "-1", - "x-ms-request-id" : "2fbf2f4a-6d23-431e-bf71-4edebca68a48", - "Body" : "{\r\n \"name\": \"vm-486961\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-486961\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3d137cd2-86f6-463e-97ef-fcfc672121e8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-486961-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg964421a65b158.blob.core.windows.net/vhds/vm-69962d-os-disk-f751023c-d4cc-4cf3-8ee0-142e380df688.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic95401fbb356\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "3b50d7f9-95a0-492a-8190-c8bcab154e84", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0785220?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "482d4dee-d8d4-4cc7-af17-bdc693befea4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "231", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "05a93e0f-01cc-4258-8bac-b83571875446", - "Date" : "Mon, 19 Apr 2021 07:54:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075423Z:05a93e0f-01cc-4258-8bac-b83571875446", - "Expires" : "-1", - "x-ms-request-id" : "05a93e0f-01cc-4258-8bac-b83571875446", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220\",\"name\":\"rgcomv0785220\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "255ecae7-514a-48a0-8b53-9d04bc3bf131", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "730fd0ba-d672-4fdc-8c2b-0ddb6a765218", - "Date" : "Mon, 19 Apr 2021 07:54:26 GMT", - "x-ms-arm-service-request-id" : "77a37f6c-de90-4cab-a6bf-1e6bf127317b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075426Z:730fd0ba-d672-4fdc-8c2b-0ddb6a765218", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/81cbaa35-df72-45a9-8f3e-f00377171ccc?api-version=2023-02-01", - "x-ms-request-id" : "81cbaa35-df72-45a9-8f3e-f00377171ccc", - "Body" : "{\r\n \"name\": \"vnet823515d278\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278\",\r\n \"etag\": \"W/\\\"e3f090cf-e472-428e-a019-01beb1ae6539\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"63b3140e-07be-4248-860e-6ea53e720c21\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e3f090cf-e472-428e-a019-01beb1ae6539\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "255ecae7-514a-48a0-8b53-9d04bc3bf131", - "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/southcentralus/operations/81cbaa35-df72-45a9-8f3e-f00377171ccc?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d7f43ca-dd3a-4de1-ac3a-46389dea61df" - }, - "Response" : { - "content-length" : "29", - "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" : "11976", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ee79008-a799-4e67-a2fc-65a60f0760dd", - "Date" : "Mon, 19 Apr 2021 07:54:29 GMT", - "x-ms-arm-service-request-id" : "32fab299-e265-41ac-8415-7430e1cde7a7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075430Z:7ee79008-a799-4e67-a2fc-65a60f0760dd", - "Expires" : "-1", - "x-ms-request-id" : "89ac99f1-418f-4700-8f9a-2a0541bdddfa", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "5d7f43ca-dd3a-4de1-ac3a-46389dea61df", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip494892e8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e276b23a-461f-4efe-92ac-5d353540d17d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "796", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "b38659be-8b22-463d-abf9-3a6dee3bd6d9", - "Date" : "Mon, 19 Apr 2021 07:54:29 GMT", - "x-ms-arm-service-request-id" : "7e871d3f-a660-457e-9977-b1a213ca0ca6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075430Z:b38659be-8b22-463d-abf9-3a6dee3bd6d9", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/993430cf-49df-4203-bdd8-7e092e861c44?api-version=2023-02-01", - "x-ms-request-id" : "993430cf-49df-4203-bdd8-7e092e861c44", - "Body" : "{\r\n \"name\": \"pip494892e8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip494892e8\",\r\n \"etag\": \"W/\\\"e7e8df1d-8217-4b2f-b708-fbd6380788ca\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1c7380dd-cf15-416c-9f13-5cdfa95f49a5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-65645cdae0\",\r\n \"fqdn\": \"pip-65645cdae0.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "e276b23a-461f-4efe-92ac-5d353540d17d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f08b694-df7f-442e-b02a-a36137240a15" - }, - "Response" : { - "content-length" : "1316", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d408ae42-958b-463a-82fd-d92b2b916308", - "Date" : "Mon, 19 Apr 2021 07:54:29 GMT", - "x-ms-arm-service-request-id" : "14ca28a2-737a-45b5-92e8-4d66d398af00", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"d4db5694-ee76-42ed-bd82-74e7ed0509e9\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075430Z:d408ae42-958b-463a-82fd-d92b2b916308", - "Expires" : "-1", - "x-ms-request-id" : "9fe80d59-c3e4-4acf-8d02-0f1842615cf8", - "Body" : "{\r\n \"name\": \"vnet823515d278\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278\",\r\n \"etag\": \"W/\\\"d4db5694-ee76-42ed-bd82-74e7ed0509e9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"63b3140e-07be-4248-860e-6ea53e720c21\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d4db5694-ee76-42ed-bd82-74e7ed0509e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "8f08b694-df7f-442e-b02a-a36137240a15", - "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/southcentralus/operations/993430cf-49df-4203-bdd8-7e092e861c44?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2125571c-ca2e-4e01-8a60-628a8b62aec6" - }, - "Response" : { - "content-length" : "29", - "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" : "11975", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "63bcd830-fb26-4113-a4bb-36d4050e57a7", - "Date" : "Mon, 19 Apr 2021 07:54:31 GMT", - "x-ms-arm-service-request-id" : "87d1726f-0dc1-4d4c-bda4-33acdadae05a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075431Z:63bcd830-fb26-4113-a4bb-36d4050e57a7", - "Expires" : "-1", - "x-ms-request-id" : "f41b7f03-6196-459e-9f8c-6fde3dacb7bc", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "2125571c-ca2e-4e01-8a60-628a8b62aec6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip494892e8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a50ee5a-a6e5-4ce4-977b-7c84ce27496f" - }, - "Response" : { - "content-length" : "797", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a94de20d-4015-42dd-9a51-6c3c0484eadc", - "Date" : "Mon, 19 Apr 2021 07:54:31 GMT", - "x-ms-arm-service-request-id" : "b962c540-875a-4766-b4f9-0331addd8bf5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"978ecf5d-9c57-4f28-acef-2203b765f442\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075431Z:a94de20d-4015-42dd-9a51-6c3c0484eadc", - "Expires" : "-1", - "x-ms-request-id" : "cefdfcf0-fb30-441b-95b9-99c551532dab", - "Body" : "{\r\n \"name\": \"pip494892e8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip494892e8\",\r\n \"etag\": \"W/\\\"978ecf5d-9c57-4f28-acef-2203b765f442\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c7380dd-cf15-416c-9f13-5cdfa95f49a5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-65645cdae0\",\r\n \"fqdn\": \"pip-65645cdae0.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "6a50ee5a-a6e5-4ce4-977b-7c84ce27496f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic2885056328c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b8bc43d-1ac3-42e5-bbf0-81f3c91e60dc", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "ea4533a4-8361-4863-b0de-13f559212747", - "Date" : "Mon, 19 Apr 2021 07:54:34 GMT", - "x-ms-arm-service-request-id" : "34bc2a90-bf27-495d-8daf-bf81e10978b0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075435Z:ea4533a4-8361-4863-b0de-13f559212747", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/cf43104d-e9cb-4dc3-8813-26ade5766aee?api-version=2023-02-01", - "x-ms-request-id" : "cf43104d-e9cb-4dc3-8813-26ade5766aee", - "Body" : "{\r\n \"name\": \"nic2885056328c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic2885056328c\",\r\n \"etag\": \"W/\\\"7a0a73bb-debb-4284-8980-de525cf71106\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7020f8bd-602d-43f7-b75f-e0db4b4ba9ac\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic2885056328c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7a0a73bb-debb-4284-8980-de525cf71106\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip494892e8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet823515d278/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\": \"byklgy34a3eefbqon0st22qmeb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "8b8bc43d-1ac3-42e5-bbf0-81f3c91e60dc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8d9779c-333a-431f-afab-c3a791af9299", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2147", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "36031c85-788c-431e-bff1-a935805f4ff8", - "Date" : "Mon, 19 Apr 2021 07:54:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;564,Microsoft.Compute/PutVM30Min;2830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075439Z:36031c85-788c-431e-bff1-a935805f4ff8", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/2a84453a-5932-45bc-a251-80226f262dd8?api-version=2021-11-01", - "x-ms-request-id" : "2a84453a-5932-45bc-a251-80226f262dd8", - "Body" : "{\r\n \"name\": \"vm-777464\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c0523530-f595-449f-ab41-6ee90a719107\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-777464\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic2885056328c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "a8d9779c-333a-431f-afab-c3a791af9299", - "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/southcentralus/operations/2a84453a-5932-45bc-a251-80226f262dd8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "591fac6a-a5f0-4b48-ae88-c96b35fbe09c" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "df8bf242-68b1-48f6-8985-599e62199631", - "Date" : "Mon, 19 Apr 2021 07:54:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075450Z:df8bf242-68b1-48f6-8985-599e62199631", - "Expires" : "-1", - "x-ms-request-id" : "62f2a103-42a7-4881-bc95-a4888d1bcf66", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:54:38.3406547+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a84453a-5932-45bc-a251-80226f262dd8\"\r\n}", - "x-ms-client-request-id" : "591fac6a-a5f0-4b48-ae88-c96b35fbe09c", - "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/southcentralus/operations/2a84453a-5932-45bc-a251-80226f262dd8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "18fe40a8-6099-4997-b70c-a0f8ceae93b5" - }, - "Response" : { - "content-length" : "184", - "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" : "daf4d0b3-869a-49ef-ad98-873a5e11cab5", - "Date" : "Mon, 19 Apr 2021 07:55:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075526Z:daf4d0b3-869a-49ef-ad98-873a5e11cab5", - "Expires" : "-1", - "x-ms-request-id" : "4dcd48e4-9b8c-40a0-a083-b6d38ed72846", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:54:38.3406547+00:00\",\r\n \"endTime\": \"2021-04-19T07:55:02.7000518+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2a84453a-5932-45bc-a251-80226f262dd8\"\r\n}", - "x-ms-client-request-id" : "18fe40a8-6099-4997-b70c-a0f8ceae93b5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e61a1a70-7807-4109-a88a-888f33695856" - }, - "Response" : { - "content-length" : "2921", - "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" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "77dc6274-f658-4ae5-93e7-80bf7f1a1157", - "Date" : "Mon, 19 Apr 2021 07:55:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075526Z:77dc6274-f658-4ae5-93e7-80bf7f1a1157", - "Expires" : "-1", - "x-ms-request-id" : "2b3d349f-a7f5-4dad-a638-4dfa760e40db", - "Body" : "{\r\n \"name\": \"vm-777464\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c0523530-f595-449f-ab41-6ee90a719107\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-777464\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic2885056328c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "e61a1a70-7807-4109-a88a-888f33695856", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "70bba136-5021-4467-af63-35dfacb5d4e9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "582687fc-e288-46e5-9341-a5681cb6c695", - "Date" : "Mon, 19 Apr 2021 07:55:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075527Z:582687fc-e288-46e5-9341-a5681cb6c695", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c9b1eaf9-67ad-4e82-bbb5-98d704643685?api-version=2021-11-01", - "x-ms-request-id" : "c9b1eaf9-67ad-4e82-bbb5-98d704643685", - "x-ms-client-request-id" : "70bba136-5021-4467-af63-35dfacb5d4e9", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c9b1eaf9-67ad-4e82-bbb5-98d704643685?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "61ce1753-d072-4bf5-8d9d-18cfcbd05aa2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "005cfea3-d7fa-407f-a1c7-aea50b774433", - "Date" : "Mon, 19 Apr 2021 07:56:27 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075627Z:005cfea3-d7fa-407f-a1c7-aea50b774433", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b0c75d13-1496-4fe3-9f43-5a2f342c1c87?api-version=2021-11-01", - "x-ms-request-id" : "b0c75d13-1496-4fe3-9f43-5a2f342c1c87", - "x-ms-client-request-id" : "61ce1753-d072-4bf5-8d9d-18cfcbd05aa2", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b0c75d13-1496-4fe3-9f43-5a2f342c1c87?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b0c75d13-1496-4fe3-9f43-5a2f342c1c87?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "927ae967-6a2c-44d8-bcd9-1ff8c33dd8a8" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb4afe7a-ad63-44ab-9f92-73a63979eecc", - "Date" : "Mon, 19 Apr 2021 07:56:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075638Z:eb4afe7a-ad63-44ab-9f92-73a63979eecc", - "Expires" : "-1", - "x-ms-request-id" : "d1f7cd45-44db-4a06-96c1-997bbe922b2e", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:56:27.6536556+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b0c75d13-1496-4fe3-9f43-5a2f342c1c87\"\r\n}", - "x-ms-client-request-id" : "927ae967-6a2c-44d8-bcd9-1ff8c33dd8a8", - "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/southcentralus/operations/b0c75d13-1496-4fe3-9f43-5a2f342c1c87?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dad54d3c-0957-4fb6-b669-8150967e4574" - }, - "Response" : { - "content-length" : "184", - "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" : "11974", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9dc60481-0a05-4901-be34-e57d675e01eb", - "Date" : "Mon, 19 Apr 2021 07:57:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075708Z:9dc60481-0a05-4901-be34-e57d675e01eb", - "Expires" : "-1", - "x-ms-request-id" : "9c74d4b0-5e35-417b-8e04-cd923b5f89d7", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:56:27.6536556+00:00\",\r\n \"endTime\": \"2021-04-19T07:56:57.5444444+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b0c75d13-1496-4fe3-9f43-5a2f342c1c87\"\r\n}", - "x-ms-client-request-id" : "dad54d3c-0957-4fb6-b669-8150967e4574", - "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/southcentralus/operations/b0c75d13-1496-4fe3-9f43-5a2f342c1c87?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "07d3c79b-a6b3-420a-bcc1-e3c4fe5725c0" - }, - "Response" : { - "content-length" : "0", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "740f5726-65cf-400c-8b4b-e11c3ff6d2ad", - "Date" : "Mon, 19 Apr 2021 07:57:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075708Z:740f5726-65cf-400c-8b4b-e11c3ff6d2ad", - "Expires" : "-1", - "x-ms-request-id" : "2943f294-45d5-410c-b567-aee72b8f506d", - "x-ms-client-request-id" : "07d3c79b-a6b3-420a-bcc1-e3c4fe5725c0" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c10459f2-43b9-4b84-8975-72628effc7a2", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "4252", - "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" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "c596e809-56f5-4eb8-9ef4-6408786dc4ef", - "Date" : "Mon, 19 Apr 2021 07:57:08 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075708Z:c596e809-56f5-4eb8-9ef4-6408786dc4ef", - "Expires" : "-1", - "x-ms-request-id" : "623f7a5f-83a8-4be0-a5c2-9a799fe8fef1", - "Body" : "{\r\n \"name\": \"vm-777464\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c0523530-f595-449f-ab41-6ee90a719107\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\"\r\n },\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\"\r\n },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-777464\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic2885056328c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:56:55.4819246+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:56:55.4819246+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-04-19T07:56:55.4819246+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\": \"2021-04-19T07:56:55.4975413+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n }\r\n}", - "x-ms-client-request-id" : "c10459f2-43b9-4b84-8975-72628effc7a2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464/generalize?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "54367d15-672a-484e-8925-2d24a8280f19", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c3702ab-e6e2-4086-b061-f2204f5dbd76", - "Date" : "Mon, 19 Apr 2021 07:57:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075709Z:7c3702ab-e6e2-4086-b061-f2204f5dbd76", - "Expires" : "-1", - "x-ms-request-id" : "05772d66-668e-4302-a987-e8ab33f12fc6", - "x-ms-client-request-id" : "54367d15-672a-484e-8925-2d24a8280f19" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "339f5a40-4813-4ac7-bb7b-5c626e13dfc9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1388", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b276ef8-7097-4881-86b2-53379990ab01", - "Date" : "Mon, 19 Apr 2021 07:57:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075709Z:6b276ef8-7097-4881-86b2-53379990ab01", - "Expires" : "-1", - "x-ms-request-id" : "ac81cb9d-6559-4b78-a02f-b0e7139059ea", - "Body" : "{\r\n \"name\": \"vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/southcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202104160\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:54:39.0449567+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"eb58d44d-bcc2-482d-a5f1-11f605cc53d3\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "339f5a40-4813-4ac7-bb7b-5c626e13dfc9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "372e38e1-61c5-4a3f-960e-b46a752f1019", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a275ef4e-6933-4df6-a0c4-a58b9fce511d", - "Date" : "Mon, 19 Apr 2021 07:57:09 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075710Z:a275ef4e-6933-4df6-a0c4-a58b9fce511d", - "Expires" : "-1", - "x-ms-request-id" : "a440fe7d-c173-4c8b-a4d4-b59e090e70b1", - "Body" : "{\r\n \"name\": \"vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:54:39.0449567+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"fef3e452-cd3c-4cd0-aae5-e48bc84b1210\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "372e38e1-61c5-4a3f-960e-b46a752f1019", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "24d7e231-59c2-4928-80ee-b857cf3f071e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1061", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "020a644c-2312-48ef-81d3-36ab83031a30", - "Date" : "Mon, 19 Apr 2021 07:57:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075710Z:020a644c-2312-48ef-81d3-36ab83031a30", - "Expires" : "-1", - "x-ms-request-id" : "cbc4f12c-8992-4768-b5ea-4efa7d18e68a", - "Body" : "{\r\n \"name\": \"vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk3_bff4de4120574f6b96144f7813b54dd2\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:54:39.0449567+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"bff4de41-2057-4f6b-9614-4f7813b54dd2\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "24d7e231-59c2-4928-80ee-b857cf3f071e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-777464?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "44cc6527-f41f-44d1-8962-d36aaab1574d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "8913544a-27a2-41b9-8c03-e6b5bbba9c88", - "Date" : "Mon, 19 Apr 2021 07:57:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075711Z:8913544a-27a2-41b9-8c03-e6b5bbba9c88", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c6eb5247-f748-4117-bf76-0f476cd56611?api-version=2021-11-01", - "x-ms-request-id" : "c6eb5247-f748-4117-bf76-0f476cd56611", - "x-ms-client-request-id" : "44cc6527-f41f-44d1-8962-d36aaab1574d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c6eb5247-f748-4117-bf76-0f476cd56611?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c6eb5247-f748-4117-bf76-0f476cd56611?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "88111332-a728-4f0e-91c5-a5403186b884" - }, - "Response" : { - "content-length" : "184", - "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" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "73b6b0e7-7e83-4a6e-a25e-0a2ca3d10132", - "Date" : "Mon, 19 Apr 2021 07:57:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075721Z:73b6b0e7-7e83-4a6e-a25e-0a2ca3d10132", - "Expires" : "-1", - "x-ms-request-id" : "bf0271fc-ab7f-4ab4-8f84-e07f401557cd", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:57:11.3100932+00:00\",\r\n \"endTime\": \"2021-04-19T07:57:11.8100996+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6eb5247-f748-4117-bf76-0f476cd56611\"\r\n}", - "x-ms-client-request-id" : "88111332-a728-4f0e-91c5-a5403186b884", - "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/southcentralus/operations/c6eb5247-f748-4117-bf76-0f476cd56611?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3dcc42e-c695-4ce3-951d-d90f4fa3dee9" - }, - "Response" : { - "content-length" : "0", - "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" : "11972", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b074b7e0-e80b-4fbb-a9a6-0c75f0c5f4bd", - "Date" : "Mon, 19 Apr 2021 07:57:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075722Z:b074b7e0-e80b-4fbb-a9a6-0c75f0c5f4bd", - "Expires" : "-1", - "x-ms-request-id" : "92869a23-28b8-4a27-b10c-5ff2c1fc6c50", - "x-ms-client-request-id" : "f3dcc42e-c695-4ce3-951d-d90f4fa3dee9" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "85818a0d-41d1-452b-b304-cdc145810856", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "565", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "0f9b6826-4032-48c9-b4f4-fcc14ce90fab", - "Date" : "Mon, 19 Apr 2021 07:57:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075726Z:0f9b6826-4032-48c9-b4f4-fcc14ce90fab", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/b929320b-6763-47d0-81f1-42baa1943b1c?api-version=2021-11-01", - "x-ms-request-id" : "b929320b-6763-47d0-81f1-42baa1943b1c", - "Body" : "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"sourceUniqueId\": \"eb58d44d-bcc2-482d-a5f1-11f605cc53d3\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "85818a0d-41d1-452b-b304-cdc145810856", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/b929320b-6763-47d0-81f1-42baa1943b1c?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/b929320b-6763-47d0-81f1-42baa1943b1c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "898e5c16-bf4b-482a-a065-687d5c5eab27" - }, - "Response" : { - "content-length" : "1344", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "978fea4b-ccb5-455a-9cfc-522fd66a3183", - "Date" : "Mon, 19 Apr 2021 07:57:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075728Z:978fea4b-ccb5-455a-9cfc-522fd66a3183", - "Expires" : "-1", - "x-ms-request-id" : "d3059f97-f4e9-44cc-958c-54cde9e6bbec", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:57:26.3353109+00:00\",\r\n \"endTime\": \"2021-04-19T07:57:26.9603705+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"snp-74250\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"sourceUniqueId\": \"eb58d44d-bcc2-482d-a5f1-11f605cc53d3\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-19T07:57:26.3353109+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"d94ec253-e1a1-487a-9adf-b6100a61ef5f\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"b929320b-6763-47d0-81f1-42baa1943b1c\"\r\n}", - "x-ms-client-request-id" : "898e5c16-bf4b-482a-a065-687d5c5eab27", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "641c1bd7-f9b0-483b-9bd9-bab2194fe9e5" - }, - "Response" : { - "content-length" : "1119", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b4c8d93-4978-4a7a-9d55-d9c03a8527b1", - "Date" : "Mon, 19 Apr 2021 07:57:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075729Z:1b4c8d93-4978-4a7a-9d55-d9c03a8527b1", - "Expires" : "-1", - "x-ms-request-id" : "ee2426c2-a0bd-4a2b-870c-41202289afbf", - "Body" : "{\r\n \"name\": \"snp-74250\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_OsDisk_1_eb58d44dbcc2482da5f111f605cc53d3\",\r\n \"sourceUniqueId\": \"eb58d44d-bcc2-482d-a5f1-11f605cc53d3\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-19T07:57:26.3353109+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"d94ec253-e1a1-487a-9adf-b6100a61ef5f\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "641c1bd7-f9b0-483b-9bd9-bab2194fe9e5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-49281?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "216976fc-0b6a-46dd-b481-b4eef231fb65", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "574", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "381771e6-2e21-426a-af25-13d20a314d9e", - "Date" : "Mon, 19 Apr 2021 07:57:31 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075731Z:381771e6-2e21-426a-af25-13d20a314d9e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/86afb61e-f03c-460d-a856-aa3223bfa3d9?api-version=2021-11-01", - "x-ms-request-id" : "86afb61e-f03c-460d-a856-aa3223bfa3d9", - "Body" : "{\r\n \"name\": \"dsk-49281\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250\",\r\n \"sourceUniqueId\": \"d94ec253-e1a1-487a-9adf-b6100a61ef5f\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "216976fc-0b6a-46dd-b481-b4eef231fb65", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/86afb61e-f03c-460d-a856-aa3223bfa3d9?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/86afb61e-f03c-460d-a856-aa3223bfa3d9?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8835fbe9-eef6-4dce-93c6-ca5868eaf8c7" - }, - "Response" : { - "content-length" : "1332", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "07b0c2ee-1ee4-48b9-a897-c6d7db727714", - "Date" : "Mon, 19 Apr 2021 07:57:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075734Z:07b0c2ee-1ee4-48b9-a897-c6d7db727714", - "Expires" : "-1", - "x-ms-request-id" : "44ca8d24-39cb-4c32-838e-ff763b9c0250", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:57:31.5853874+00:00\",\r\n \"endTime\": \"2021-04-19T07:57:32.1478925+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-49281\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-49281\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250\",\r\n \"sourceUniqueId\": \"d94ec253-e1a1-487a-9adf-b6100a61ef5f\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:57:31.6009964+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"19393e70-9f0f-4034-9434-e820b09117e9\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"86afb61e-f03c-460d-a856-aa3223bfa3d9\"\r\n}", - "x-ms-client-request-id" : "8835fbe9-eef6-4dce-93c6-ca5868eaf8c7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-49281?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cfe17d2-825f-4cb3-972a-af116ef2c75b" - }, - "Response" : { - "content-length" : "1107", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4581e2ac-bbb8-4d52-aabf-ebb8e4f83ae4", - "Date" : "Mon, 19 Apr 2021 07:57:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075734Z:4581e2ac-bbb8-4d52-aabf-ebb8e4f83ae4", - "Expires" : "-1", - "x-ms-request-id" : "d518f7ac-8b7e-417f-a5ab-808bd11e76a6", - "Body" : "{\r\n \"name\": \"dsk-49281\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-49281\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/snp-74250\",\r\n \"sourceUniqueId\": \"d94ec253-e1a1-487a-9adf-b6100a61ef5f\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:57:31.6009964+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"19393e70-9f0f-4034-9434-e820b09117e9\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "5cfe17d2-825f-4cb3-972a-af116ef2c75b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5366a09-08bc-4101-8234-d6f52bf156a9", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "507", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "59b755c2-d4c8-40f9-84c5-ce31c621a161", - "Date" : "Mon, 19 Apr 2021 07:57:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075737Z:59b755c2-d4c8-40f9-84c5-ce31c621a161", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/da7c869a-36a3-4e3d-b3c2-962fea42a18c?api-version=2021-11-01", - "x-ms-request-id" : "da7c869a-36a3-4e3d-b3c2-962fea42a18c", - "Body" : "{\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"sourceUniqueId\": \"fef3e452-cd3c-4cd0-aae5-e48bc84b1210\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "c5366a09-08bc-4101-8234-d6f52bf156a9", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/da7c869a-36a3-4e3d-b3c2-962fea42a18c?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/da7c869a-36a3-4e3d-b3c2-962fea42a18c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c9f8baf-b683-4b63-a2df-b2870168ae2f" - }, - "Response" : { - "content-length" : "1287", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7c71f3aa-bb28-45a4-982a-04d9c130af1f", - "Date" : "Mon, 19 Apr 2021 07:57:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075739Z:7c71f3aa-bb28-45a4-982a-04d9c130af1f", - "Expires" : "-1", - "x-ms-request-id" : "33c86800-6417-407a-abcc-f83c387530ed", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:57:37.2260314+00:00\",\r\n \"endTime\": \"2021-04-19T07:57:37.788528+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-73116\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"sourceUniqueId\": \"fef3e452-cd3c-4cd0-aae5-e48bc84b1210\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-19T07:57:37.2416426+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"b876ba41-1ba3-4b35-886e-ba68cdc72be9\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"da7c869a-36a3-4e3d-b3c2-962fea42a18c\"\r\n}", - "x-ms-client-request-id" : "3c9f8baf-b683-4b63-a2df-b2870168ae2f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cce00026-978a-4ddf-a8d7-794e9cd086d1" - }, - "Response" : { - "content-length" : "1063", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29e9adf5-381d-44aa-9cca-1c0cd3696122", - "Date" : "Mon, 19 Apr 2021 07:57:39 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14976,Microsoft.Compute/LowCostGet30Min;119942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075739Z:29e9adf5-381d-44aa-9cca-1c0cd3696122", - "Expires" : "-1", - "x-ms-request-id" : "010f3121-1c81-4700-b1b4-b92487bf5639", - "Body" : "{\r\n \"name\": \"dsk-73116\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116\",\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-777464_disk2_fef3e452cd3c4cd0aae5e48bc84b1210\",\r\n \"sourceUniqueId\": \"fef3e452-cd3c-4cd0-aae5-e48bc84b1210\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-19T07:57:37.2416426+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"b876ba41-1ba3-4b35-886e-ba68cdc72be9\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "cce00026-978a-4ddf-a8d7-794e9cd086d1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-81379?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7a65f4a-7017-44e9-928e-34fadef38de6", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "450", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "880a96ba-f668-459d-b2e2-1d2d55cf0ce3", - "Date" : "Mon, 19 Apr 2021 07:57:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075741Z:880a96ba-f668-459d-b2e2-1d2d55cf0ce3", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/c90e379c-5707-4c53-b4b4-66c2f005e687?api-version=2021-11-01", - "x-ms-request-id" : "c90e379c-5707-4c53-b4b4-66c2f005e687", - "Body" : "{\r\n \"name\": \"dsk-81379\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116\",\r\n \"sourceUniqueId\": \"b876ba41-1ba3-4b35-886e-ba68cdc72be9\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "e7a65f4a-7017-44e9-928e-34fadef38de6", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/c90e379c-5707-4c53-b4b4-66c2f005e687?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/DiskOperations/c90e379c-5707-4c53-b4b4-66c2f005e687?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f157e5e3-cb70-4862-9eba-2f1394718d3d" - }, - "Response" : { - "content-length" : "1279", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b3a0eed-79bc-4267-99db-c7ccc44a3926", - "Date" : "Mon, 19 Apr 2021 07:57:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075744Z:9b3a0eed-79bc-4267-99db-c7ccc44a3926", - "Expires" : "-1", - "x-ms-request-id" : "47044e73-ff58-4896-8b54-4babadf07c44", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:57:41.6487414+00:00\",\r\n \"endTime\": \"2021-04-19T07:57:42.1331105+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-81379\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-81379\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116\",\r\n \"sourceUniqueId\": \"b876ba41-1ba3-4b35-886e-ba68cdc72be9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:57:41.6643656+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"1763cfbb-2c99-4181-8858-5831072175b6\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"c90e379c-5707-4c53-b4b4-66c2f005e687\"\r\n}", - "x-ms-client-request-id" : "f157e5e3-cb70-4862-9eba-2f1394718d3d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-81379?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "10cda667-49b4-4be7-9346-c17d01321068" - }, - "Response" : { - "content-length" : "1054", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "cc2a4867-fc8c-49a3-83e3-4fae1746e33f_132548954236420733", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ba74d6a-5a45-4437-9199-dc89f711f11d", - "Date" : "Mon, 19 Apr 2021 07:57:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14972,Microsoft.Compute/LowCostGet30Min;119938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075744Z:7ba74d6a-5a45-4437-9199-dc89f711f11d", - "Expires" : "-1", - "x-ms-request-id" : "8baa3f2c-6068-4e26-a9e1-00d4f58875d9", - "Body" : "{\r\n \"name\": \"dsk-81379\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-81379\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/snapshots/dsk-73116\",\r\n \"sourceUniqueId\": \"b876ba41-1ba3-4b35-886e-ba68cdc72be9\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-19T07:57:41.6643656+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"1763cfbb-2c99-4181-8858-5831072175b6\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "10cda667-49b4-4be7-9346-c17d01321068", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b1d8328-f5bf-4e59-8795-869d91bb440f", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "a76ccab2-52ac-4183-a899-86a41b3703b3", - "Date" : "Mon, 19 Apr 2021 07:57:46 GMT", - "x-ms-arm-service-request-id" : "5befc4c6-ad96-4ac6-95a1-34b0a2586dfa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075747Z:a76ccab2-52ac-4183-a899-86a41b3703b3", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c545242d-f569-49d7-8998-113d2b42d2df?api-version=2023-02-01", - "x-ms-request-id" : "c545242d-f569-49d7-8998-113d2b42d2df", - "Body" : "{\r\n \"name\": \"vnet43953c0c72\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72\",\r\n \"etag\": \"W/\\\"db4eb36e-e454-459e-b634-a5e293dd8e41\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4d97241f-7ffa-48fb-bbf3-c9c106514d1e\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72/subnets/subnet1\",\r\n \"etag\": \"W/\\\"db4eb36e-e454-459e-b634-a5e293dd8e41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "0b1d8328-f5bf-4e59-8795-869d91bb440f", - "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/southcentralus/operations/c545242d-f569-49d7-8998-113d2b42d2df?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd212fb2-4739-4cb4-94d4-62a9d33fd219" - }, - "Response" : { - "content-length" : "29", - "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" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "03a7025d-393b-4a61-8b1e-9e04a8da9dcd", - "Date" : "Mon, 19 Apr 2021 07:57:50 GMT", - "x-ms-arm-service-request-id" : "528d3c64-1efd-44de-994c-ab4be862dcff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075751Z:03a7025d-393b-4a61-8b1e-9e04a8da9dcd", - "Expires" : "-1", - "x-ms-request-id" : "07632472-070b-459c-8b51-7719e0feedf0", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "dd212fb2-4739-4cb4-94d4-62a9d33fd219", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0905898c-bb0e-46c9-83e0-3265f285b5f6" - }, - "Response" : { - "content-length" : "1316", - "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" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9dd2a575-9bdf-4aa2-8cd6-d38c40d46e12", - "Date" : "Mon, 19 Apr 2021 07:57:50 GMT", - "x-ms-arm-service-request-id" : "a3ed8e57-5a4d-4a0c-adcd-0395fe09352a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"58568ad8-5025-4dc2-9a1d-acb6c10971e7\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075751Z:9dd2a575-9bdf-4aa2-8cd6-d38c40d46e12", - "Expires" : "-1", - "x-ms-request-id" : "1de8ec56-fd81-41d1-a6d0-eda4d65f6054", - "Body" : "{\r\n \"name\": \"vnet43953c0c72\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72\",\r\n \"etag\": \"W/\\\"58568ad8-5025-4dc2-9a1d-acb6c10971e7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d97241f-7ffa-48fb-bbf3-c9c106514d1e\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72/subnets/subnet1\",\r\n \"etag\": \"W/\\\"58568ad8-5025-4dc2-9a1d-acb6c10971e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "0905898c-bb0e-46c9-83e0-3265f285b5f6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42673dfed56?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "89519ea2-4171-423d-a6a9-d26daa3634a0", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1668", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "bef87154-0010-4ad7-81d2-93fc516dc82d", - "Date" : "Mon, 19 Apr 2021 07:57:54 GMT", - "x-ms-arm-service-request-id" : "fcc1f81a-6b7b-4ca8-9f6c-fa4c9786a671", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075754Z:bef87154-0010-4ad7-81d2-93fc516dc82d", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b2cead7b-bed3-4863-b50d-6a1f9702329a?api-version=2023-02-01", - "x-ms-request-id" : "b2cead7b-bed3-4863-b50d-6a1f9702329a", - "Body" : "{\r\n \"name\": \"nic42673dfed56\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42673dfed56\",\r\n \"etag\": \"W/\\\"314a037e-d5ce-4622-b158-0b2cca66de0d\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"46fcb924-4f22-4787-9646-123b91ef7c58\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42673dfed56/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"314a037e-d5ce-4622-b158-0b2cca66de0d\\\"\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet43953c0c72/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\": \"d2sjotp0p53uro5tzhaqmukndg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "89519ea2-4171-423d-a6a9-d26daa3634a0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-94697a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "86dc8fbd-0d7c-47b5-920f-480cdbe00db8", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1608", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "39c47d85-4a43-415c-b05c-1dd23f0943d3", - "Date" : "Mon, 19 Apr 2021 07:58:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;566,Microsoft.Compute/PutVM30Min;2829", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075801Z:39c47d85-4a43-415c-b05c-1dd23f0943d3", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/66a793a3-6196-446f-b6ea-e5f020bfeab7?api-version=2021-11-01", - "x-ms-request-id" : "66a793a3-6196-446f-b6ea-e5f020bfeab7", - "Body" : "{\r\n \"name\": \"vm-94697a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-94697a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7a71e809-ebbb-43e6-8acc-37cb8e2f1af8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-49281\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-49281\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-81379\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-81379\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42673dfed56\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "86dc8fbd-0d7c-47b5-920f-480cdbe00db8", - "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/southcentralus/operations/66a793a3-6196-446f-b6ea-e5f020bfeab7?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "16c35672-49e5-42eb-abe7-c1e1ed72884b" - }, - "Response" : { - "content-length" : "184", - "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" : "11966", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e975a441-d76a-44a0-ae26-1025ec27d724", - "Date" : "Mon, 19 Apr 2021 07:58:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075811Z:e975a441-d76a-44a0-ae26-1025ec27d724", - "Expires" : "-1", - "x-ms-request-id" : "3e93032b-f7f4-4b42-afec-77d22a5be414", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:57:59.3885327+00:00\",\r\n \"endTime\": \"2021-04-19T07:58:09.3260441+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"66a793a3-6196-446f-b6ea-e5f020bfeab7\"\r\n}", - "x-ms-client-request-id" : "16c35672-49e5-42eb-abe7-c1e1ed72884b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-94697a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "391a11f5-54a6-400d-aad0-0cdbfb489683" - }, - "Response" : { - "content-length" : "1609", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab843ab3-325f-4716-b82b-5c693ff33564", - "Date" : "Mon, 19 Apr 2021 07:58:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075811Z:ab843ab3-325f-4716-b82b-5c693ff33564", - "Expires" : "-1", - "x-ms-request-id" : "3d8f1733-da81-43ee-9d39-3d6a9675bff2", - "Body" : "{\r\n \"name\": \"vm-94697a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-94697a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7a71e809-ebbb-43e6-8acc-37cb8e2f1af8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-49281\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-49281\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-81379\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/dsk-81379\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic42673dfed56\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "391a11f5-54a6-400d-aad0-0cdbfb489683", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0785220?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "74f721ec-745d-493a-b379-bde37ca2a711", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "231", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a93f23e3-7853-4ecf-9e16-b70ca7f2296f", - "Date" : "Mon, 19 Apr 2021 07:58:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075813Z:a93f23e3-7853-4ecf-9e16-b70ca7f2296f", - "Expires" : "-1", - "x-ms-request-id" : "a93f23e3-7853-4ecf-9e16-b70ca7f2296f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220\",\"name\":\"rgcomv0785220\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"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/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip89867dd9?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f45d0339-6dab-4892-ba20-3467b43d4e55", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "794", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "9fb10aa0-154c-4c9c-aadd-113401538500", - "Date" : "Mon, 19 Apr 2021 07:58:16 GMT", - "x-ms-arm-service-request-id" : "9e34d025-cb82-4ca6-9c37-1f84fd35ee31", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075816Z:9fb10aa0-154c-4c9c-aadd-113401538500", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f61d1f2e-ed01-4eb2-94dc-7dad0d3a2f30?api-version=2023-02-01", - "x-ms-request-id" : "f61d1f2e-ed01-4eb2-94dc-7dad0d3a2f30", - "Body" : "{\r\n \"name\": \"pip89867dd9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip89867dd9\",\r\n \"etag\": \"W/\\\"755ab3ef-7961-4c79-8146-83123e9efac8\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e9623470-686e-4125-8ede-c3ab537eb9a1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-204257e2e\",\r\n \"fqdn\": \"pip-204257e2e.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "f45d0339-6dab-4892-ba20-3467b43d4e55", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg10835d445da4a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "40ef375f-e504-4e4a-87f3-52c87e9cfe72", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "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" : "1189", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "e3542c05-5db0-4b1f-8833-5df442b05a21", - "Date" : "Mon, 19 Apr 2021 07:58:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075816Z:e3542c05-5db0-4b1f-8833-5df442b05a21", - "Expires" : "-1", - "x-ms-request-id" : "a3bd62d9-71e3-4aa4-b92d-f5f7d2f6630a", - "Body" : "", - "x-ms-client-request-id" : "40ef375f-e504-4e4a-87f3-52c87e9cfe72", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a3bd62d9-71e3-4aa4-b92d-f5f7d2f6630a?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f61d1f2e-ed01-4eb2-94dc-7dad0d3a2f30?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c416bf1-df62-449b-adf3-51fc42071a6d" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7bb3cf7-fb99-4a62-9a79-d33e355247f7", - "Date" : "Mon, 19 Apr 2021 07:58:17 GMT", - "x-ms-arm-service-request-id" : "62c45469-7910-413f-bd58-febaf829465e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075818Z:a7bb3cf7-fb99-4a62-9a79-d33e355247f7", - "Expires" : "-1", - "x-ms-request-id" : "139c0569-8ef4-45c2-97af-f7c7320296e8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "8c416bf1-df62-449b-adf3-51fc42071a6d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip89867dd9?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7afbfaf0-8617-43e5-8376-61e9dd0b8393" - }, - "Response" : { - "content-length" : "795", - "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" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aae89692-2f6e-4581-ab25-e664984fa172", - "Date" : "Mon, 19 Apr 2021 07:58:18 GMT", - "x-ms-arm-service-request-id" : "a7509428-6894-4bec-bac6-06ca1f58ced1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"f5977491-f758-47f6-acd0-8081e3b68c0f\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075818Z:aae89692-2f6e-4581-ab25-e664984fa172", - "Expires" : "-1", - "x-ms-request-id" : "9d380354-9422-4b8e-9e8b-6616ff58ef50", - "Body" : "{\r\n \"name\": \"pip89867dd9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip89867dd9\",\r\n \"etag\": \"W/\\\"f5977491-f758-47f6-acd0-8081e3b68c0f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9623470-686e-4125-8ede-c3ab537eb9a1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-204257e2e\",\r\n \"fqdn\": \"pip-204257e2e.southcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "7afbfaf0-8617-43e5-8376-61e9dd0b8393", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c44d452e-56b4-446c-b5ab-1811e32af35c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1314", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "1a525444-fdc1-422d-ba0e-5765cb1278c1", - "Date" : "Mon, 19 Apr 2021 07:58:18 GMT", - "x-ms-arm-service-request-id" : "db2d35d1-b1fc-443b-87b1-a19e7336f862", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075819Z:1a525444-fdc1-422d-ba0e-5765cb1278c1", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f614f7d5-3d8d-492b-8ac5-5353716502d3?api-version=2023-02-01", - "x-ms-request-id" : "f614f7d5-3d8d-492b-8ac5-5353716502d3", - "Body" : "{\r\n \"name\": \"vnet3898509c1c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c\",\r\n \"etag\": \"W/\\\"c5c4a62d-4761-4bcd-bbe4-aa01a8943b88\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f651f23d-20a8-49aa-9dbc-1010e2515a68\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c5c4a62d-4761-4bcd-bbe4-aa01a8943b88\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "c44d452e-56b4-446c-b5ab-1811e32af35c", - "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/southcentralus/operations/f614f7d5-3d8d-492b-8ac5-5353716502d3?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "59fd1bcb-23e8-4e0e-bdd2-1e14c2c79bb1" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d6429a1-dcde-4b99-947a-f67c0c0269dc", - "Date" : "Mon, 19 Apr 2021 07:58:21 GMT", - "x-ms-arm-service-request-id" : "e85283d9-9326-420b-9d7b-082d6476b2f9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075822Z:0d6429a1-dcde-4b99-947a-f67c0c0269dc", - "Expires" : "-1", - "x-ms-request-id" : "cb4e69e7-6772-4976-a284-96d20f97bee2", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "59fd1bcb-23e8-4e0e-bdd2-1e14c2c79bb1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f28495c-c3fa-4f9b-b4e9-69c8b091476b" - }, - "Response" : { - "content-length" : "1316", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e42bb36a-48e0-494d-b296-f0d012925486", - "Date" : "Mon, 19 Apr 2021 07:58:22 GMT", - "x-ms-arm-service-request-id" : "ec3529f0-46f1-426e-a749-51f8e2868a02", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"aa0a587a-60cc-4587-bcd6-b14dbd94eeba\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075822Z:e42bb36a-48e0-494d-b296-f0d012925486", - "Expires" : "-1", - "x-ms-request-id" : "34d664c2-a36a-4e94-abb5-ba6bdb022571", - "Body" : "{\r\n \"name\": \"vnet3898509c1c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c\",\r\n \"etag\": \"W/\\\"aa0a587a-60cc-4587-bcd6-b14dbd94eeba\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f651f23d-20a8-49aa-9dbc-1010e2515a68\",\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/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"aa0a587a-60cc-4587-bcd6-b14dbd94eeba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "4f28495c-c3fa-4f9b-b4e9-69c8b091476b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic745599b7621?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3176c298-66e5-46c6-8823-f1abe902b2a7", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1874", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "db373437-268c-49e9-a8a1-de0d62e08a2e", - "Date" : "Mon, 19 Apr 2021 07:58:27 GMT", - "x-ms-arm-service-request-id" : "745c5bc8-874c-4308-bc86-c744b55951dc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075827Z:db373437-268c-49e9-a8a1-de0d62e08a2e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/37824546-4a97-4205-baf6-1f26e1838faf?api-version=2023-02-01", - "x-ms-request-id" : "37824546-4a97-4205-baf6-1f26e1838faf", - "Body" : "{\r\n \"name\": \"nic745599b7621\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic745599b7621\",\r\n \"etag\": \"W/\\\"6d694a2d-7a3f-45b2-882a-aaefe7ae82b5\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"250d380c-94b0-4cce-9a08-26e0587ac433\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic745599b7621/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6d694a2d-7a3f-45b2-882a-aaefe7ae82b5\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/publicIPAddresses/pip89867dd9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Network/virtualNetworks/vnet3898509c1c/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\": \"hxzfd3viecvethn2caioeuk0na.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "3176c298-66e5-46c6-8823-f1abe902b2a7", - "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/southcentralus/asyncoperations/a3bd62d9-71e3-4aa4-b92d-f5f7d2f6630a?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "91b925d0-76e3-49cd-ad05-32645e625e08" - }, - "Response" : { - "content-length" : "1839", - "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" : "11962", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "af3ac446-c40d-47a6-b18e-475770dc671a", - "Date" : "Mon, 19 Apr 2021 07:58:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075834Z:af3ac446-c40d-47a6-b18e-475770dc671a", - "Expires" : "-1", - "x-ms-request-id" : "e07ad3b5-eb85-4d35-ba67-718ae1b8e134", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg10835d445da4a\",\"name\":\"stg10835d445da4a\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:58:15.4047311Z\",\"key2\":\"2021-04-19T07:58:15.4047311Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:58:15.4047311Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:58:15.4047311Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:58:15.3266253Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg10835d445da4a.dfs.core.windows.net/\",\"web\":\"https://stg10835d445da4a.z21.web.core.windows.net/\",\"blob\":\"https://stg10835d445da4a.blob.core.windows.net/\",\"queue\":\"https://stg10835d445da4a.queue.core.windows.net/\",\"table\":\"https://stg10835d445da4a.table.core.windows.net/\",\"file\":\"https://stg10835d445da4a.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg10835d445da4a-secondary.dfs.core.windows.net/\",\"web\":\"https://stg10835d445da4a-secondary.z21.web.core.windows.net/\",\"blob\":\"https://stg10835d445da4a-secondary.blob.core.windows.net/\",\"queue\":\"https://stg10835d445da4a-secondary.queue.core.windows.net/\",\"table\":\"https://stg10835d445da4a-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "91b925d0-76e3-49cd-ad05-32645e625e08", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg10835d445da4a?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "33efd54f-1acb-469f-9fe7-6257815527b4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1839", - "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" : "11987", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf314d02-4826-40ba-9c33-f4ae1d9ec57c", - "Date" : "Mon, 19 Apr 2021 07:58:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075834Z:bf314d02-4826-40ba-9c33-f4ae1d9ec57c", - "Expires" : "-1", - "x-ms-request-id" : "85139764-e6cc-4c23-bc0e-0fff484763f3", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Storage/storageAccounts/stg10835d445da4a\",\"name\":\"stg10835d445da4a\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-04-19T07:58:15.4047311Z\",\"key2\":\"2021-04-19T07:58:15.4047311Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:58:15.4047311Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-04-19T07:58:15.4047311Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-04-19T07:58:15.3266253Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg10835d445da4a.dfs.core.windows.net/\",\"web\":\"https://stg10835d445da4a.z21.web.core.windows.net/\",\"blob\":\"https://stg10835d445da4a.blob.core.windows.net/\",\"queue\":\"https://stg10835d445da4a.queue.core.windows.net/\",\"table\":\"https://stg10835d445da4a.table.core.windows.net/\",\"file\":\"https://stg10835d445da4a.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg10835d445da4a-secondary.dfs.core.windows.net/\",\"web\":\"https://stg10835d445da4a-secondary.z21.web.core.windows.net/\",\"blob\":\"https://stg10835d445da4a-secondary.blob.core.windows.net/\",\"queue\":\"https://stg10835d445da4a-secondary.queue.core.windows.net/\",\"table\":\"https://stg10835d445da4a-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "33efd54f-1acb-469f-9fe7-6257815527b4", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "48e1a980-c4de-49c3-a8d6-5b93c973168b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2676", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "2935be72-2aed-47b1-b936-13e87b5da2b8", - "Date" : "Mon, 19 Apr 2021 07:58:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;565,Microsoft.Compute/PutVM30Min;2828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075837Z:2935be72-2aed-47b1-b936-13e87b5da2b8", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/74aa2a7f-84aa-491f-beb5-2790b54416b1?api-version=2021-11-01", - "x-ms-request-id" : "74aa2a7f-84aa-491f-beb5-2790b54416b1", - "Body" : "{\r\n \"name\": \"vm-64777c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"02027ce2-d974-47c4-99d8-75709a00a170\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-64777c-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10835d445da4a.blob.core.windows.net/vhds/vm-64777c-os-disk-358ae6e6-0270-4a3a-a538-09417006393e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-64777c-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10835d445da4a.blob.core.windows.net/vhds/vm-64777c-data-disk-0-8787816f-4fc1-412c-8b11-636f3cfdde6a.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-64777c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic745599b7621\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "48e1a980-c4de-49c3-a8d6-5b93c973168b", - "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/southcentralus/operations/74aa2a7f-84aa-491f-beb5-2790b54416b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a01ebe9b-3390-4ed2-b873-25fb5e90ea12" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaa87bfa-39b9-4c03-98a3-a6d221803cbe", - "Date" : "Mon, 19 Apr 2021 07:58:48 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075848Z:aaa87bfa-39b9-4c03-98a3-a6d221803cbe", - "Expires" : "-1", - "x-ms-request-id" : "ded698ab-f9d2-494a-acef-0ff8c8a991ea", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:58:36.5449203+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74aa2a7f-84aa-491f-beb5-2790b54416b1\"\r\n}", - "x-ms-client-request-id" : "a01ebe9b-3390-4ed2-b873-25fb5e90ea12", - "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/southcentralus/operations/74aa2a7f-84aa-491f-beb5-2790b54416b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dda7d05c-0796-4f95-97bd-cf973aac73b9" - }, - "Response" : { - "content-length" : "184", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8ce80c10-c5be-4c9c-9ffb-65f01b3ca42c", - "Date" : "Mon, 19 Apr 2021 07:59:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075923Z:8ce80c10-c5be-4c9c-9ffb-65f01b3ca42c", - "Expires" : "-1", - "x-ms-request-id" : "c5599950-ea74-42e0-aea3-1747f5cdfd78", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:58:36.5449203+00:00\",\r\n \"endTime\": \"2021-04-19T07:58:58.9982174+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"74aa2a7f-84aa-491f-beb5-2790b54416b1\"\r\n}", - "x-ms-client-request-id" : "dda7d05c-0796-4f95-97bd-cf973aac73b9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "68282dd2-5f90-47f9-b1a5-06cf271a18e9" - }, - "Response" : { - "content-length" : "2704", - "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" : "11965", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29010633-4a51-4190-9ba0-2ed73d071e84", - "Date" : "Mon, 19 Apr 2021 07:59:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075923Z:29010633-4a51-4190-9ba0-2ed73d071e84", - "Expires" : "-1", - "x-ms-request-id" : "17904023-cf2c-4b08-b1f9-cf13d863ff87", - "Body" : "{\r\n \"name\": \"vm-64777c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"02027ce2-d974-47c4-99d8-75709a00a170\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-64777c-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10835d445da4a.blob.core.windows.net/vhds/vm-64777c-os-disk-358ae6e6-0270-4a3a-a538-09417006393e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-64777c-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg10835d445da4a.blob.core.windows.net/vhds/vm-64777c-data-disk-0-8787816f-4fc1-412c-8b11-636f3cfdde6a.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-64777c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic745599b7621\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "68282dd2-5f90-47f9-b1a5-06cf271a18e9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9550e7f0-6e82-4ad3-ac93-f7e4c3051722", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "ee4bd079-7412-48aa-ac3d-eb243e1766b6", - "Date" : "Mon, 19 Apr 2021 07:59:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075924Z:ee4bd079-7412-48aa-ac3d-eb243e1766b6", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/2c3a5440-2220-4813-a45b-d185d36216a0?api-version=2021-11-01", - "x-ms-request-id" : "2c3a5440-2220-4813-a45b-d185d36216a0", - "x-ms-client-request-id" : "9550e7f0-6e82-4ad3-ac93-f7e4c3051722", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/2c3a5440-2220-4813-a45b-d185d36216a0?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/2c3a5440-2220-4813-a45b-d185d36216a0?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b31b0fa6-288e-4abe-9a68-a77b240e5aed" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "27c25bc7-1405-49de-9a26-66649b144aa4", - "Date" : "Mon, 19 Apr 2021 07:59:33 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T075934Z:27c25bc7-1405-49de-9a26-66649b144aa4", - "Expires" : "-1", - "x-ms-request-id" : "4ce8429f-9896-4406-b770-b1a313ed4861", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:59:23.9670692+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2c3a5440-2220-4813-a45b-d185d36216a0\"\r\n}", - "x-ms-client-request-id" : "b31b0fa6-288e-4abe-9a68-a77b240e5aed", - "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/southcentralus/operations/2c3a5440-2220-4813-a45b-d185d36216a0?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5cbbad5-8ab5-416f-8021-d9b89ae73461" - }, - "Response" : { - "content-length" : "183", - "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" : "11968", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "da19546c-162a-4c2e-a918-e8d873f55cf7", - "Date" : "Mon, 19 Apr 2021 08:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080010Z:da19546c-162a-4c2e-a918-e8d873f55cf7", - "Expires" : "-1", - "x-ms-request-id" : "7de97f4a-841d-4f05-844c-ad50c2a489d6", - "Body" : "{\r\n \"startTime\": \"2021-04-19T07:59:23.9670692+00:00\",\r\n \"endTime\": \"2021-04-19T07:59:54.889161+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2c3a5440-2220-4813-a45b-d185d36216a0\"\r\n}", - "x-ms-client-request-id" : "e5cbbad5-8ab5-416f-8021-d9b89ae73461", - "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/southcentralus/operations/2c3a5440-2220-4813-a45b-d185d36216a0?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3dd57e6-c7ff-4595-aa79-9d2352c06775" - }, - "Response" : { - "content-length" : "0", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "49f3c599-9f72-460f-9a8c-017821576f35", - "Date" : "Mon, 19 Apr 2021 08:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080011Z:49f3c599-9f72-460f-9a8c-017821576f35", - "Expires" : "-1", - "x-ms-request-id" : "83d8d6dd-6417-4cd8-a687-31b6eb0ad890", - "x-ms-client-request-id" : "c3dd57e6-c7ff-4595-aa79-9d2352c06775" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c/convertToManagedDisks?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6f52fca-e93f-40fe-a271-3efc185a3767", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "729d387a-ca49-49f9-8e7c-ea0a6b1e8da5", - "Date" : "Mon, 19 Apr 2021 08:00:10 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080011Z:729d387a-ca49-49f9-8e7c-ea0a6b1e8da5", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5805239b-99df-4804-a6ab-6cc57f873e02?api-version=2021-11-01", - "x-ms-request-id" : "5805239b-99df-4804-a6ab-6cc57f873e02", - "x-ms-client-request-id" : "f6f52fca-e93f-40fe-a271-3efc185a3767", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5805239b-99df-4804-a6ab-6cc57f873e02?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5805239b-99df-4804-a6ab-6cc57f873e02?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0df1f803-92e6-4ada-a429-ecd6f6d2b610" - }, - "Response" : { - "content-length" : "184", - "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" : "11967", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "91049654-8b7e-4b17-bca1-4f09585e1426", - "Date" : "Mon, 19 Apr 2021 08:00:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080041Z:91049654-8b7e-4b17-bca1-4f09585e1426", - "Expires" : "-1", - "x-ms-request-id" : "3c04cae6-555a-4b47-95db-b586584adbd3", - "Body" : "{\r\n \"startTime\": \"2021-04-19T08:00:11.2017539+00:00\",\r\n \"endTime\": \"2021-04-19T08:00:34.3269243+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5805239b-99df-4804-a6ab-6cc57f873e02\"\r\n}", - "x-ms-client-request-id" : "0df1f803-92e6-4ada-a429-ecd6f6d2b610", - "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/southcentralus/operations/5805239b-99df-4804-a6ab-6cc57f873e02?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc79dc50-98a0-4603-abef-0e40f655a313" - }, - "Response" : { - "content-length" : "0", - "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" : "11959", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34163639-73d8-43fd-8d18-b1cd80334a35", - "Date" : "Mon, 19 Apr 2021 08:00:42 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080042Z:34163639-73d8-43fd-8d18-b1cd80334a35", - "Expires" : "-1", - "x-ms-request-id" : "1e4a5915-cbd6-40f3-b32d-caf49fc52db8", - "x-ms-client-request-id" : "cc79dc50-98a0-4603-abef-0e40f655a313" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0d3860d-9f18-4e06-85e4-747bdcc8b430", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2994", - "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" : "11984", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f4d72cb7-ba04-436f-abe7-f1536d6f90a4", - "Date" : "Mon, 19 Apr 2021 08:00:43 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080043Z:f4d72cb7-ba04-436f-abe7-f1536d6f90a4", - "Expires" : "-1", - "x-ms-request-id" : "7d5a1841-73f2-49ff-9a3d-df6958fe5f50", - "Body" : "{\r\n \"name\": \"vm-64777c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/virtualMachines/vm-64777c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"02027ce2-d974-47c4-99d8-75709a00a170\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202104160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-64777c-os-disk_e2fba41a3e3f40a6bbf169f5e202eeb2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-64777c-os-disk_e2fba41a3e3f40a6bbf169f5e202eeb2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-64777c-data-disk-0_25e8e569d2d348e286f5ef4ca8fe0730\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0785220/providers/Microsoft.Compute/disks/vm-64777c-data-disk-0_25e8e569d2d348e286f5ef4ca8fe0730\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-64777c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0785220/providers/Microsoft.Network/networkInterfaces/nic745599b7621\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "c0d3860d-9f18-4e06-85e4-747bdcc8b430", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0785220?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.4.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c46af86e-4517-42e3-b825-3d0a215551bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "2f37a840-6574-4621-9b53-ae28ee8e75b1", - "Date" : "Mon, 19 Apr 2021 08:00:47 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210419T080047Z:2f37a840-6574-4621-9b53-ae28ee8e75b1", - "Expires" : "-1", - "x-ms-request-id" : "2f37a840-6574-4621-9b53-ae28ee8e75b1", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwNzg1MjIwLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcomv0785220", "vm-1939105adc", "pip-52834b9ed", "nic7650007ba59", "vnet021472fa92", "pip97026820", "vmss-154772a72", "vnet6496981c033b", "intlb-413597e3", "vmss-vm53643", "dsk-898432a36", "vm-97235c", "pip-65103b57a", "nic42840551dd6", "vnet99848c6a29", "pip92001419", "vm-69962d", "pip-856768bd52", "nic254852edd38", "vnet01207c6379", "pip06850505", "stg964421a65b158", "cimg-43586", "vm-275554", "nic42935fb2962", "vnet237238b2ac", "vm-486961", "nic95401fbb356", "vnet33227e808c", "vm-777464", "pip-65645cdae0", "nic2885056328c", "vnet823515d278", "pip494892e8", "snp-74250", "dsk-49281", "dsk-73116", "dsk-81379", "vm-94697a", "nic42673dfed56", "vnet43953c0c72", "vm-64777c", "pip-204257e2e", "nic745599b7621", "vnet3898509c1c", "pip89867dd9", "stg10835d445da4a" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.json deleted file mode 100644 index 72f41f6b2df8..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.json +++ /dev/null @@ -1,806 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "POST", - "Uri" : "http://localhost:1234/v1.0/groups", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4f193f09-b69b-4b56-95d7-8a0cd930dad6", - "Content-Type" : "application/json" - }, - "Response" : { - "Transfer-Encoding" : "chunked", - "retry-after" : "0", - "request-id" : "6c910c82-0a70-4175-ae3c-e5c3c29e0817", - "StatusCode" : "201", - "Date" : "Thu, 24 Mar 2022 05:13:55 GMT", - "Strict-Transport-Security" : "max-age=31536000", - "Cache-Control" : "no-cache", - "x-ms-ags-diagnostic" : "{\"ServerInfo\":{\"DataCenter\":\"Southeast Asia\",\"Slice\":\"E\",\"Ring\":\"5\",\"ScaleUnit\":\"002\",\"RoleInstance\":\"SG1PEPF00002526\"}}", - "client-request-id" : "6c910c82-0a70-4175-ae3c-e5c3c29e0817", - "OData-Version" : "4.0", - "x-ms-resource-unit" : "1", - "Body" : "{\"@odata.context\":\"http://localhost:1234/v1.0/$metadata#groups/$entity\",\"id\":\"007c09de-dcd7-4592-99df-2aebeb26e2b4\",\"deletedDateTime\":null,\"classification\":null,\"createdDateTime\":\"2022-03-24T05:13:55Z\",\"creationOptions\":[],\"description\":null,\"displayName\":\"group44290d2\",\"expirationDateTime\":null,\"groupTypes\":[],\"isAssignableToRole\":null,\"mail\":null,\"mailEnabled\":false,\"mailNickname\":\"group44290d2\",\"membershipRule\":null,\"membershipRuleProcessingState\":null,\"onPremisesDomainName\":null,\"onPremisesLastSyncDateTime\":null,\"onPremisesNetBiosName\":null,\"onPremisesSamAccountName\":null,\"onPremisesSecurityIdentifier\":null,\"onPremisesSyncEnabled\":null,\"preferredDataLocation\":null,\"preferredLanguage\":null,\"proxyAddresses\":[],\"renewedDateTime\":\"2022-03-24T05:13:55Z\",\"resourceBehaviorOptions\":[],\"resourceProvisioningOptions\":[],\"securityEnabled\":true,\"securityIdentifier\":\"S-1-12-1-8128990-1167252695-3945455513-3034719979\",\"theme\":null,\"visibility\":null,\"onPremisesProvisioningErrors\":[]}", - "Content-Type" : "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8", - "Location" : "http://localhost:1234/v2/00000000-0000-0000-0000-000000000000/directoryObjects/007c09de-dcd7-4592-99df-2aebeb26e2b4/Microsoft.DirectoryServices.Group" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv6549155?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7a8fbcd0-def5-44c3-86a7-2afb1b4111ae", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "4e4f1ec2-c9f5-4366-8223-b1feaf4034dc", - "Date" : "Thu, 24 Mar 2022 05:14:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051401Z:4e4f1ec2-c9f5-4366-8223-b1feaf4034dc", - "Expires" : "-1", - "x-ms-request-id" : "4e4f1ec2-c9f5-4366-8223-b1feaf4034dc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155\",\"name\":\"rgcomv6549155\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "843f003c-c023-4069-82ec-17e83e513e2e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "984", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0ca46142-3d4a-47fd-b381-8fc8c21ad455", - "Date" : "Thu, 24 Mar 2022 05:14:45 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051446Z:0ca46142-3d4a-47fd-b381-8fc8c21ad455", - "Set-Cookie" : "x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly", - "Expires" : "-1", - "x-ms-request-id" : "c51f7701-a072-4835-bd33-1d95d07b4aa3", - "Body" : "{\"value\":[{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants full access to manage all resources, but does not allow you to assign roles in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\",\"Microsoft.Compute/galleries/share/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"}]}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Authorization/roleAssignments/989baecc-b963-46d8-83c4-6bcf61c5c0af?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9b46f572-4a22-4f8e-b673-2aac7006af26", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "870", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "94d83417-1f93-474d-bf42-54dbadc559ff", - "Date" : "Thu, 24 Mar 2022 05:14:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051451Z:94d83417-1f93-474d-bf42-54dbadc559ff", - "Set-Cookie" : "x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly", - "Expires" : "-1", - "x-ms-request-id" : "e5b10e1e-6484-4c1c-97b6-0c0a67d2a50e", - "Body" : "{\"properties\":{\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"principalId\":\"007c09de-dcd7-4592-99df-2aebeb26e2b4\",\"principalType\":\"Group\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155\",\"condition\":null,\"conditionVersion\":null,\"createdOn\":\"2022-03-24T05:14:47.4148342Z\",\"updatedOn\":\"2022-03-24T05:14:47.8992136Z\",\"createdBy\":null,\"updatedBy\":\"b14978fb-8ceb-4517-88b7-cec0b377b164\",\"delegatedManagedIdentityResourceId\":null,\"description\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Authorization/roleAssignments/989baecc-b963-46d8-83c4-6bcf61c5c0af\",\"type\":\"Microsoft.Authorization/roleAssignments\",\"name\":\"989baecc-b963-46d8-83c4-6bcf61c5c0af\"}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv6549155?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "500a5428-4529-4066-8e16-7d5acd5db53a", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f24a4995-d5f5-4d25-af8c-3259cf701833", - "Date" : "Thu, 24 Mar 2022 05:14:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051452Z:f24a4995-d5f5-4d25-af8c-3259cf701833", - "Expires" : "-1", - "x-ms-request-id" : "f24a4995-d5f5-4d25-af8c-3259cf701833", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155\",\"name\":\"rgcomv6549155\",\"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/rgcomv6549155/providers/Microsoft.Network/publicIPAddresses/pip29523af8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fc76a033-c744-4dda-ba5e-2ae70e7f0315", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "776", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "adea79ea-6ee7-42cf-9fe7-cc95ef72e718", - "Date" : "Thu, 24 Mar 2022 05:14:59 GMT", - "x-ms-arm-service-request-id" : "1aae796d-0587-4a79-8ee4-0a12e5050116", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051500Z:adea79ea-6ee7-42cf-9fe7-cc95ef72e718", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85f2b33b-8908-4270-b065-59c9094e7774?api-version=2023-02-01", - "x-ms-request-id" : "85f2b33b-8908-4270-b065-59c9094e7774", - "Body" : "{\r\n \"name\": \"pip29523af8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/publicIPAddresses/pip29523af8\",\r\n \"etag\": \"W/\\\"c5a4e78b-0965-4d1a-9ee5-813b7ec5333c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ca522d59-7914-4349-84e7-b3ebdceb8565\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip15660018d\",\r\n \"fqdn\": \"pip15660018d.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "fc76a033-c744-4dda-ba5e-2ae70e7f0315", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e49a511c-51aa-48f3-9414-4f21459ee953", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "326e5b12-e5f7-4804-92c4-662a9be8bfd0", - "Date" : "Thu, 24 Mar 2022 05:15:01 GMT", - "x-ms-arm-service-request-id" : "c211a8f5-d7b1-471b-a4ff-7e7820ad988c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051501Z:326e5b12-e5f7-4804-92c4-662a9be8bfd0", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6f9bcd9a-ada9-429e-963a-21f18f51fc26?api-version=2023-02-01", - "x-ms-request-id" : "6f9bcd9a-ada9-429e-963a-21f18f51fc26", - "Body" : "{\r\n \"name\": \"vnet830197bd2c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c\",\r\n \"etag\": \"W/\\\"858f37b4-a90d-4c05-abad-02cb811c3bca\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5066ecd-f217-431f-ac25-3b444ed47444\",\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/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"858f37b4-a90d-4c05-abad-02cb811c3bca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e49a511c-51aa-48f3-9414-4f21459ee953", - "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/eastus/operations/85f2b33b-8908-4270-b065-59c9094e7774?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "cb8a5411-5c89-45bb-a3b9-a4fadc7771b9" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "33e636b3-8034-44af-9d28-e9c6516d38bd", - "Date" : "Thu, 24 Mar 2022 05:15:01 GMT", - "x-ms-arm-service-request-id" : "49464be4-ac4c-41ba-aaa4-1c6d5d4567a4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051502Z:33e636b3-8034-44af-9d28-e9c6516d38bd", - "Expires" : "-1", - "x-ms-request-id" : "6b0a22b1-a050-4323-ae70-6bc242dde3ad", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "cb8a5411-5c89-45bb-a3b9-a4fadc7771b9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/publicIPAddresses/pip29523af8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5466be8e-8871-4eb4-a93d-ffe25570b2c4" - }, - "Response" : { - "content-length" : "777", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "335106f9-1e01-4fd7-a70b-74e78c37e105", - "Date" : "Thu, 24 Mar 2022 05:15:02 GMT", - "x-ms-arm-service-request-id" : "4e3f83e9-33b7-46e5-9f04-9cc6ff08e17b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"893b7a46-19d5-4c98-8b3b-a2783ab93a84\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051502Z:335106f9-1e01-4fd7-a70b-74e78c37e105", - "Expires" : "-1", - "x-ms-request-id" : "719dc310-ed38-4e05-98cf-b1f00c33b502", - "Body" : "{\r\n \"name\": \"pip29523af8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/publicIPAddresses/pip29523af8\",\r\n \"etag\": \"W/\\\"893b7a46-19d5-4c98-8b3b-a2783ab93a84\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca522d59-7914-4349-84e7-b3ebdceb8565\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip15660018d\",\r\n \"fqdn\": \"pip15660018d.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "5466be8e-8871-4eb4-a93d-ffe25570b2c4", - "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/eastus/operations/6f9bcd9a-ada9-429e-963a-21f18f51fc26?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "6dfdb0e0-8471-4e90-8f8d-fabe12e07dc0" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e9304a7f-138e-4d1a-a88d-727a52a45c4a", - "Date" : "Thu, 24 Mar 2022 05:15:03 GMT", - "x-ms-arm-service-request-id" : "5a88898f-8dda-4396-b264-9772b331df56", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051504Z:e9304a7f-138e-4d1a-a88d-727a52a45c4a", - "Expires" : "-1", - "x-ms-request-id" : "a50b642f-1f12-4bbc-800f-2e91eef49978", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "6dfdb0e0-8471-4e90-8f8d-fabe12e07dc0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "862b18e8-ba43-448b-bdcd-a624ce830483" - }, - "Response" : { - "content-length" : "1308", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6deffce0-ca83-4ca0-a915-9d0de12b8192", - "Date" : "Thu, 24 Mar 2022 05:15:05 GMT", - "x-ms-arm-service-request-id" : "c643d2ec-3ea5-4c32-90fe-f4a7ee9ee643", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"c8835501-a880-4e01-a7d5-06ae164b4eff\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051505Z:6deffce0-ca83-4ca0-a915-9d0de12b8192", - "Expires" : "-1", - "x-ms-request-id" : "7c5dd096-da5d-40d0-819f-6572d24c2e83", - "Body" : "{\r\n \"name\": \"vnet830197bd2c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c\",\r\n \"etag\": \"W/\\\"c8835501-a880-4e01-a7d5-06ae164b4eff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5066ecd-f217-431f-ac25-3b444ed47444\",\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/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c8835501-a880-4e01-a7d5-06ae164b4eff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "862b18e8-ba43-448b-bdcd-a624ce830483", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/networkInterfaces/nic32189f977bd?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "cc90390c-cf94-4279-b7da-3c2ad6054269", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1905", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "754179ac-cc48-46f6-afa5-94dcf024ad3e", - "Date" : "Thu, 24 Mar 2022 05:15:10 GMT", - "x-ms-arm-service-request-id" : "449092bd-837e-4306-95b4-33c216c4a48d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051511Z:754179ac-cc48-46f6-afa5-94dcf024ad3e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2223589a-9984-457d-bd9f-2b5ca58e4b96?api-version=2023-02-01", - "x-ms-request-id" : "2223589a-9984-457d-bd9f-2b5ca58e4b96", - "Body" : "{\r\n \"name\": \"nic32189f977bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/networkInterfaces/nic32189f977bd\",\r\n \"etag\": \"W/\\\"7ba1c150-6d73-4210-ac5d-31b5173eb8c0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2f75985f-3d26-4c3f-b740-123336dd5025\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/networkInterfaces/nic32189f977bd/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7ba1c150-6d73-4210-ac5d-31b5173eb8c0\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/publicIPAddresses/pip29523af8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Network/virtualNetworks/vnet830197bd2c/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\": \"zvxanrix4ipuhlbfhnce3vduie.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "cc90390c-cf94-4279-b7da-3c2ad6054269", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "5c7273c5-c881-4588-92d5-9b556b2d4d34", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2309", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "f120ea5c-7761-427b-bbc2-83dae0727d77", - "Date" : "Thu, 24 Mar 2022 05:15:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;745,Microsoft.Compute/PutVM30Min;3729", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051520Z:f120ea5c-7761-427b-bbc2-83dae0727d77", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2cdcaf87-b43c-4afb-9612-1d1ce8266827?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "x-ms-request-id" : "2cdcaf87-b43c-4afb-9612-1d1ce8266827", - "Body" : "{\r\n \"name\": \"vm1852690cc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f3f6942-fa97-400b-883f-d67f792a40d0\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"04f23738-1c51-4e27-96d5-d89cca72924f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1852690cc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCJGJkc+8WsW2n6F8gmTjMisZvr6qD2AmM3YGqoYWsKSjVkIolho7psk1GmykrEKpcJeOf+RdXklJp8g4oRsPccjzhelbzR/7QaBEZskgiXXynE7lUVu1xjDQ9bR7cJFKuzRQx56h4Fvsqagr9esXl9haf6ClvWhq5UqAOZ/DfaDw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv6549155/providers/Microsoft.Network/networkInterfaces/nic32189f977bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-03-24T05:15:19.0504041+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "5c7273c5-c881-4588-92d5-9b556b2d4d34", - "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/2cdcaf87-b43c-4afb-9612-1d1ce8266827?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e60aa916-0184-4525-9ed9-da326ab57bad" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a99d2691-2346-4178-9c9e-a52e2a582917", - "Date" : "Thu, 24 Mar 2022 05:15:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051530Z:a99d2691-2346-4178-9c9e-a52e2a582917", - "Expires" : "-1", - "x-ms-request-id" : "93859b1d-c619-4918-a469-c85af2a1d2eb", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:15:15.8785179+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2cdcaf87-b43c-4afb-9612-1d1ce8266827\"\r\n}", - "x-ms-client-request-id" : "e60aa916-0184-4525-9ed9-da326ab57bad", - "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/2cdcaf87-b43c-4afb-9612-1d1ce8266827?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d0c85349-2958-4bd1-bcb0-2b0158bb43ab" - }, - "Response" : { - "content-length" : "184", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ec81c61-26f6-4af6-9243-995185a3b89d", - "Date" : "Thu, 24 Mar 2022 05:16:05 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051606Z:6ec81c61-26f6-4af6-9243-995185a3b89d", - "Expires" : "-1", - "x-ms-request-id" : "76343fe2-a91b-44f6-9da0-d598c533e9cb", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:15:15.8785179+00:00\",\r\n \"endTime\": \"2022-03-24T05:15:52.9724417+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2cdcaf87-b43c-4afb-9612-1d1ce8266827\"\r\n}", - "x-ms-client-request-id" : "d0c85349-2958-4bd1-bcb0-2b0158bb43ab", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "098be906-90fe-44e5-8050-f48ef1d25a2c" - }, - "Response" : { - "content-length" : "2573", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "3293cfa3-094d-4eb1-a8cf-8c516bc0a56b", - "Date" : "Thu, 24 Mar 2022 05:16:06 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T051606Z:3293cfa3-094d-4eb1-a8cf-8c516bc0a56b", - "Expires" : "-1", - "x-ms-request-id" : "4e250311-bb1a-44ba-95ce-ed68189e30dc", - "Body" : "{\r\n \"name\": \"vm1852690cc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f3f6942-fa97-400b-883f-d67f792a40d0\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"04f23738-1c51-4e27-96d5-d89cca72924f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1852690cc_OsDisk_1_70df8c3360c445b6a0fa817bdfcbf622\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/disks/vm1852690cc_OsDisk_1_70df8c3360c445b6a0fa817bdfcbf622\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1852690cc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCJGJkc+8WsW2n6F8gmTjMisZvr6qD2AmM3YGqoYWsKSjVkIolho7psk1GmykrEKpcJeOf+RdXklJp8g4oRsPccjzhelbzR/7QaBEZskgiXXynE7lUVu1xjDQ9bR7cJFKuzRQx56h4Fvsqagr9esXl9haf6ClvWhq5UqAOZ/DfaDw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv6549155/providers/Microsoft.Network/networkInterfaces/nic32189f977bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-24T05:15:19.0504041+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "098be906-90fe-44e5-8050-f48ef1d25a2c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/v1.0/groups/007c09de-dcd7-4592-99df-2aebeb26e2b4/members/$ref", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d15897df-bc08-48aa-a291-a24ee131093b", - "Content-Type" : "application/json" - }, - "Response" : { - "Strict-Transport-Security" : "max-age=31536000", - "Cache-Control" : "no-cache", - "x-ms-ags-diagnostic" : "{\"ServerInfo\":{\"DataCenter\":\"Southeast Asia\",\"Slice\":\"E\",\"Ring\":\"5\",\"ScaleUnit\":\"002\",\"RoleInstance\":\"SG1PEPF00001303\"}}", - "client-request-id" : "897fa200-b2cc-468a-b08b-e63410c59aac", - "x-ms-resource-unit" : "1", - "retry-after" : "0", - "request-id" : "897fa200-b2cc-468a-b08b-e63410c59aac", - "StatusCode" : "204", - "Date" : "Thu, 24 Mar 2022 05:16:08 GMT" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc/extensions/az-create-storage-account?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0dffe4fb-3334-47c1-b892-66bdb35dc27b", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "825", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "b1f5ed42-03ab-4f26-afbf-b3fea9f351c6", - "Date" : "Thu, 24 Mar 2022 05:26:20 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052621Z:b1f5ed42-03ab-4f26-afbf-b3fea9f351c6", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "x-ms-request-id" : "cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56", - "Body" : "{\r\n \"name\": \"az-create-storage-account\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc/extensions/az-create-storage-account\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/mgmt_fix-msi-sample/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/create_resources_with_msi.sh\"],\"commandToExecute\":\"bash create_resources_with_msi.sh st4474006f12 rgcomv6549155 eastus\"}\r\n }\r\n}", - "x-ms-client-request-id" : "0dffe4fb-3334-47c1-b892-66bdb35dc27b", - "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/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "736f157f-71e5-4da9-a067-a432a8e75e41" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9491d689-4e38-4f07-8eb2-7c05cf27cf48", - "Date" : "Thu, 24 Mar 2022 05:26:51 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052652Z:9491d689-4e38-4f07-8eb2-7c05cf27cf48", - "Expires" : "-1", - "x-ms-request-id" : "44fcb0f0-64b8-4037-a0be-153cdf2768b4", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:26:19.3662593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56\"\r\n}", - "x-ms-client-request-id" : "736f157f-71e5-4da9-a067-a432a8e75e41", - "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/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "81c9b07b-c22f-4261-ac43-43e353d4992e" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "0d987f01-dda2-4d86-8633-020212928438", - "Date" : "Thu, 24 Mar 2022 05:27:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052722Z:0d987f01-dda2-4d86-8633-020212928438", - "Expires" : "-1", - "x-ms-request-id" : "e516b78f-ec3c-4b1c-b226-eae9ba52d711", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:26:19.3662593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56\"\r\n}", - "x-ms-client-request-id" : "81c9b07b-c22f-4261-ac43-43e353d4992e", - "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/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "26145535-48d7-4ddc-98fb-7347f9a03595" - }, - "Response" : { - "content-length" : "134", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bc4e668b-8fa9-43c9-bbf7-0290dc5d4212", - "Date" : "Thu, 24 Mar 2022 05:27:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052752Z:bc4e668b-8fa9-43c9-bbf7-0290dc5d4212", - "Expires" : "-1", - "x-ms-request-id" : "d9028bb4-1fb4-4d1d-8867-25cdb9e29e2f", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:26:19.3662593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56\"\r\n}", - "x-ms-client-request-id" : "26145535-48d7-4ddc-98fb-7347f9a03595", - "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/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ed7b1c0a-8905-43e6-82be-7a77f222bb3c" - }, - "Response" : { - "content-length" : "134", - "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" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b95d927d-e66d-4e7d-b640-d8933fc0124f", - "Date" : "Thu, 24 Mar 2022 05:28:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052823Z:b95d927d-e66d-4e7d-b640-d8933fc0124f", - "Expires" : "-1", - "x-ms-request-id" : "809d9306-620c-4c90-b38f-1b0765f466fd", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:26:19.3662593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56\"\r\n}", - "x-ms-client-request-id" : "ed7b1c0a-8905-43e6-82be-7a77f222bb3c", - "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/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ee162d1e-9fd8-48cb-85c0-30417f8fc03e" - }, - "Response" : { - "content-length" : "134", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d3b35ed-328c-405b-93ee-4fc3a61605e1", - "Date" : "Thu, 24 Mar 2022 05:28:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052853Z:9d3b35ed-328c-405b-93ee-4fc3a61605e1", - "Expires" : "-1", - "x-ms-request-id" : "fc7a85ea-532e-464e-b2b0-e56e41ae2c4b", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:26:19.3662593+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56\"\r\n}", - "x-ms-client-request-id" : "ee162d1e-9fd8-48cb-85c0-30417f8fc03e", - "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/cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e619dbb2-fcf9-49f9-a03a-2b164b48fb4f" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4096312d-5f50-4c03-b731-de4153b76048", - "Date" : "Thu, 24 Mar 2022 05:29:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052923Z:4096312d-5f50-4c03-b731-de4153b76048", - "Expires" : "-1", - "x-ms-request-id" : "dd386099-bef5-4209-9ae5-352ecf643449", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:26:19.3662593+00:00\",\r\n \"endTime\": \"2022-03-24T05:29:06.0701664+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cfe0e4ea-2b9d-4599-bd4a-606bfbcdea56\"\r\n}", - "x-ms-client-request-id" : "e619dbb2-fcf9-49f9-a03a-2b164b48fb4f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc/extensions/az-create-storage-account?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "289326ff-cfd4-4801-9281-77f85d877107" - }, - "Response" : { - "content-length" : "826", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "79b8ad60-968a-41af-93d3-62447b201614", - "Date" : "Thu, 24 Mar 2022 05:29:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052924Z:79b8ad60-968a-41af-93d3-62447b201614", - "Expires" : "-1", - "x-ms-request-id" : "92d0b04d-202a-4ca5-b5cb-8897f3e84e0b", - "Body" : "{\r\n \"name\": \"az-create-storage-account\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc/extensions/az-create-storage-account\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/mgmt_fix-msi-sample/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/create_resources_with_msi.sh\"],\"commandToExecute\":\"bash create_resources_with_msi.sh st4474006f12 rgcomv6549155 eastus\"}\r\n }\r\n}", - "x-ms-client-request-id" : "289326ff-cfd4-4801-9281-77f85d877107", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ed9941e0-b7cd-423d-a917-1597d7151333", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "3481", - "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" : "6ebf99d1-61cd-44f5-91a5-f573d3cfea32", - "Date" : "Thu, 24 Mar 2022 05:29:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052925Z:6ebf99d1-61cd-44f5-91a5-f573d3cfea32", - "Expires" : "-1", - "x-ms-request-id" : "d212c937-fff7-4187-a81a-3d66799b7c7c", - "Body" : "{\r\n \"name\": \"vm1852690cc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9f3f6942-fa97-400b-883f-d67f792a40d0\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"04f23738-1c51-4e27-96d5-d89cca72924f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1852690cc_OsDisk_1_70df8c3360c445b6a0fa817bdfcbf622\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/disks/vm1852690cc_OsDisk_1_70df8c3360c445b6a0fa817bdfcbf622\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1852690cc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCJGJkc+8WsW2n6F8gmTjMisZvr6qD2AmM3YGqoYWsKSjVkIolho7psk1GmykrEKpcJeOf+RdXklJp8g4oRsPccjzhelbzR/7QaBEZskgiXXynE7lUVu1xjDQ9bR7cJFKuzRQx56h4Fvsqagr9esXl9haf6ClvWhq5UqAOZ/DfaDw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv6549155/providers/Microsoft.Network/networkInterfaces/nic32189f977bd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-24T05:15:19.0504041+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"az-create-storage-account\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Compute/virtualMachines/vm1852690cc/extensions/az-create-storage-account\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/mgmt_fix-msi-sample/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/create_resources_with_msi.sh\"],\"commandToExecute\":\"bash create_resources_with_msi.sh st4474006f12 rgcomv6549155 eastus\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "ed9941e0-b7cd-423d-a917-1597d7151333", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Storage/storageAccounts/st4474006f12?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7c394955-d09b-450d-baaf-64b418ba4987", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1171", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b2c06ef5-d0ec-4c8b-a34f-2328db5d8cc9", - "Date" : "Thu, 24 Mar 2022 05:29:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052927Z:b2c06ef5-d0ec-4c8b-a34f-2328db5d8cc9", - "Expires" : "-1", - "x-ms-request-id" : "53507fea-08f6-4949-b0ae-847d5bd82b12", - "Body" : "{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv6549155/providers/Microsoft.Storage/storageAccounts/st4474006f12\",\"name\":\"st4474006f12\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2022-03-24T05:28:38.9330825Z\",\"key2\":\"2022-03-24T05:28:38.9330825Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-24T05:28:38.9330825Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-24T05:28:38.9330825Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2022-03-24T05:28:38.7924560Z\",\"primaryEndpoints\":{\"web\":\"https://st4474006f12.z13.web.core.windows.net/\",\"blob\":\"https://st4474006f12.blob.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}}", - "x-ms-client-request-id" : "7c394955-d09b-450d-baaf-64b418ba4987", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/v1.0/groups/007c09de-dcd7-4592-99df-2aebeb26e2b4", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7bb7f696-9e01-4ee5-bd7b-8daf48289579", - "Content-Type" : "application/json" - }, - "Response" : { - "Strict-Transport-Security" : "max-age=31536000", - "Cache-Control" : "no-cache", - "x-ms-ags-diagnostic" : "{\"ServerInfo\":{\"DataCenter\":\"Southeast Asia\",\"Slice\":\"E\",\"Ring\":\"5\",\"ScaleUnit\":\"000\",\"RoleInstance\":\"SI1PEPF00005AD4\"}}", - "client-request-id" : "9497641c-2bad-4a33-b5fd-5a4b0033f17b", - "x-ms-resource-unit" : "1", - "retry-after" : "0", - "request-id" : "9497641c-2bad-4a33-b5fd-5a4b0033f17b", - "StatusCode" : "204", - "Date" : "Thu, 24 Mar 2022 05:29:30 GMT" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv6549155?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "eee3813d-e67d-42b5-99d5-f5407eab8e97", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "0c9aae42-1979-428d-b9d1-f50d719ab56e", - "Date" : "Thu, 24 Mar 2022 05:29:35 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T052936Z:0c9aae42-1979-428d-b9d1-f50d719ab56e", - "Expires" : "-1", - "x-ms-request-id" : "0c9aae42-1979-428d-b9d1-f50d719ab56e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY2NTQ5MTU1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2021-01-01" - }, - "Exception" : null - } ], - "variables" : [ "group44290d2", "rgcomv6549155", "989baecc-b963-46d8-83c4-6bcf61c5c0af", "vm1852690cc", "pip15660018d", "nic32189f977bd", "vnet830197bd2c", "pip29523af8", "st4474006f12" ] -} diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageStorageFromMSIEnabledVirtualMachine.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageStorageFromMSIEnabledVirtualMachine.json deleted file mode 100644 index 91bcdbed18db..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageStorageFromMSIEnabledVirtualMachine.json +++ /dev/null @@ -1,744 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv7056275?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "bd06e349-45ba-41cb-86f5-82822ab347bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "223", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "ce3eb07e-d4e6-4431-b390-eb9975572bcc", - "Date" : "Thu, 24 Mar 2022 05:04:02 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050403Z:ce3eb07e-d4e6-4431-b390-eb9975572bcc", - "Expires" : "-1", - "x-ms-request-id" : "ce3eb07e-d4e6-4431-b390-eb9975572bcc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275\",\"name\":\"rgcomv7056275\",\"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/rgcomv7056275/providers/Microsoft.Network/publicIPAddresses/pip67019521?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "43400b47-3348-46cf-897a-d1cda82bb14c", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "776", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "d1b0c0ce-ea8a-4457-b3f9-09f42db2127b", - "Date" : "Thu, 24 Mar 2022 05:04:10 GMT", - "x-ms-arm-service-request-id" : "919e2dd2-c1b6-47ca-a2e4-83087f2a022b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050410Z:d1b0c0ce-ea8a-4457-b3f9-09f42db2127b", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0e1b3fd5-76c6-49ea-aad2-eeb67a075ab0?api-version=2023-02-01", - "x-ms-request-id" : "0e1b3fd5-76c6-49ea-aad2-eeb67a075ab0", - "Body" : "{\r\n \"name\": \"pip67019521\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/publicIPAddresses/pip67019521\",\r\n \"etag\": \"W/\\\"1baf337c-8848-4af1-aa45-0a1ef61d608d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e2b0395f-15f3-4f65-b870-e09cec0f2204\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip172470067\",\r\n \"fqdn\": \"pip172470067.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "43400b47-3348-46cf-897a-d1cda82bb14c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "0b5c3790-454e-41f4-adf0-5bbcbcc224a4", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1306", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "dfdece41-27a1-49c3-b1c5-1f204fe6851e", - "Date" : "Thu, 24 Mar 2022 05:04:10 GMT", - "x-ms-arm-service-request-id" : "f3a2beea-4924-4161-beef-ae20a7cfccc2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050410Z:dfdece41-27a1-49c3-b1c5-1f204fe6851e", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b2f917d7-d28e-439f-aeb3-93039a397529?api-version=2023-02-01", - "x-ms-request-id" : "b2f917d7-d28e-439f-aeb3-93039a397529", - "Body" : "{\r\n \"name\": \"vnet22267ad829\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829\",\r\n \"etag\": \"W/\\\"81544992-a2b0-4b78-9a39-bb778603a69f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ad280188-14bf-4893-835c-9b477f8e0652\",\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/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829/subnets/subnet1\",\r\n \"etag\": \"W/\\\"81544992-a2b0-4b78-9a39-bb778603a69f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "0b5c3790-454e-41f4-adf0-5bbcbcc224a4", - "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/eastus/operations/0e1b3fd5-76c6-49ea-aad2-eeb67a075ab0?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9657b44c-d925-4a61-a160-de640a6f18ff" - }, - "Response" : { - "content-length" : "29", - "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" : "bac70ff6-4d8d-49d6-90b5-e22745b2d956", - "Date" : "Thu, 24 Mar 2022 05:04:12 GMT", - "x-ms-arm-service-request-id" : "4581121a-ba9d-4950-b30e-a7f28fb1a8f7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050412Z:bac70ff6-4d8d-49d6-90b5-e22745b2d956", - "Expires" : "-1", - "x-ms-request-id" : "c19a8d41-c6a6-46e1-97e6-62a0f3290c1f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "9657b44c-d925-4a61-a160-de640a6f18ff", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/publicIPAddresses/pip67019521?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "2715fc07-1a65-4a2f-8e22-45523bef4a51" - }, - "Response" : { - "content-length" : "777", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaf971ec-6847-4888-9a19-b82c325637b6", - "Date" : "Thu, 24 Mar 2022 05:04:12 GMT", - "x-ms-arm-service-request-id" : "20bcdbbf-7432-4c3d-9514-a63a9e99453b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"aae78027-24b0-4858-9fc3-18ce66dc6375\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050412Z:aaf971ec-6847-4888-9a19-b82c325637b6", - "Expires" : "-1", - "x-ms-request-id" : "05c0c5e1-aa0b-4d90-9336-17f0ea2d90f2", - "Body" : "{\r\n \"name\": \"pip67019521\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/publicIPAddresses/pip67019521\",\r\n \"etag\": \"W/\\\"aae78027-24b0-4858-9fc3-18ce66dc6375\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e2b0395f-15f3-4f65-b870-e09cec0f2204\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip172470067\",\r\n \"fqdn\": \"pip172470067.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "2715fc07-1a65-4a2f-8e22-45523bef4a51", - "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/eastus/operations/b2f917d7-d28e-439f-aeb3-93039a397529?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "00190e3e-056b-49d8-b805-51f7485df1f2" - }, - "Response" : { - "content-length" : "29", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6699c69-0296-4ee6-8e08-40d86a8024df", - "Date" : "Thu, 24 Mar 2022 05:04:14 GMT", - "x-ms-arm-service-request-id" : "3090798c-f26b-40bb-b168-dd2512b23809", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050414Z:d6699c69-0296-4ee6-8e08-40d86a8024df", - "Expires" : "-1", - "x-ms-request-id" : "0c6e2152-9c21-4293-8300-78e62dadd59d", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "00190e3e-056b-49d8-b805-51f7485df1f2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "dedf0f39-065f-49bd-a134-380fb4fdccbc" - }, - "Response" : { - "content-length" : "1308", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b22adc86-e29a-459f-9ee6-fe9d4be5814e", - "Date" : "Thu, 24 Mar 2022 05:04:14 GMT", - "x-ms-arm-service-request-id" : "71b95416-bfb1-4304-afed-5aeefb006a4d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"1d681692-65f5-406a-95cf-c1af1940609c\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050414Z:b22adc86-e29a-459f-9ee6-fe9d4be5814e", - "Expires" : "-1", - "x-ms-request-id" : "a51ba993-0d83-45d4-aeef-611082edea2b", - "Body" : "{\r\n \"name\": \"vnet22267ad829\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829\",\r\n \"etag\": \"W/\\\"1d681692-65f5-406a-95cf-c1af1940609c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad280188-14bf-4893-835c-9b477f8e0652\",\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/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1d681692-65f5-406a-95cf-c1af1940609c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "dedf0f39-065f-49bd-a134-380fb4fdccbc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "4968e46e-2c88-49c4-a855-99edb937fc5d", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1905", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "770e874d-5662-4c41-8e72-1cadce0cf529", - "Date" : "Thu, 24 Mar 2022 05:04:17 GMT", - "x-ms-arm-service-request-id" : "b203e854-e339-4ac0-b402-7eb7feb62827", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050417Z:770e874d-5662-4c41-8e72-1cadce0cf529", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f827e34e-4394-45c9-a7a3-783ca6e74fa7?api-version=2023-02-01", - "x-ms-request-id" : "f827e34e-4394-45c9-a7a3-783ca6e74fa7", - "Body" : "{\r\n \"name\": \"nic85813acd2b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7\",\r\n \"etag\": \"W/\\\"9362af05-4bfb-40ca-a6fc-938bd8a3c3cd\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e760157e-db8e-48b7-9bc2-72099beb49bb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9362af05-4bfb-40ca-a6fc-938bd8a3c3cd\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/publicIPAddresses/pip67019521\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Network/virtualNetworks/vnet22267ad829/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\": \"raasrln5csjura02tndx5dqgkc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "4968e46e-2c88-49c4-a855-99edb937fc5d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "581ddff7-ab43-4132-9ba6-500c12855b3e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2430", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "63bce263-9d5c-4432-9841-f44919061fdf", - "Date" : "Thu, 24 Mar 2022 05:04:26 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050426Z:63bce263-9d5c-4432-9841-f44919061fdf", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/472038e7-0460-4181-af32-6ded7d1db573?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "x-ms-request-id" : "472038e7-0460-4181-af32-6ded7d1db573", - "Body" : "{\r\n \"name\": \"vm140541b46\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46\",\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 \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1064446c-c7b0-48fc-aeb8-22309d3d0ed6\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"58e5f9b6-e386-46dd-9f0a-01bedad5f9d9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm140541b46\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCabrd8zmR9C0bJ7u9Jzx/IyKj+0U/HBZ6uCkXgMHpCWzRKhGniby5osJVysatCN2VyB5SjnBElkHkt6rbmyJCt41Nm/FOORLpxHb36dga+Gg8D/4Asm5GBsHXxds0HqgusKytRkwM633uOL4GT69bONDRfGA/DSuAFdE/9ndWPfw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-03-24T05:04:24.3013208+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "581ddff7-ab43-4132-9ba6-500c12855b3e", - "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/472038e7-0460-4181-af32-6ded7d1db573?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7e3f70fb-e322-452e-949a-775d7a06b7f8" - }, - "Response" : { - "content-length" : "134", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "86085e0a-4b40-48f9-bae6-c0e88d105aa3", - "Date" : "Thu, 24 Mar 2022 05:04:36 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050436Z:86085e0a-4b40-48f9-bae6-c0e88d105aa3", - "Expires" : "-1", - "x-ms-request-id" : "5fba8900-3054-4d95-b585-9f5e33ae5d6f", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:04:23.9106682+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"472038e7-0460-4181-af32-6ded7d1db573\"\r\n}", - "x-ms-client-request-id" : "7e3f70fb-e322-452e-949a-775d7a06b7f8", - "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/472038e7-0460-4181-af32-6ded7d1db573?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ad86a7eb-d926-4d52-968d-02ca94dccaeb" - }, - "Response" : { - "content-length" : "184", - "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" : "11997", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "b95c888a-5c36-4c75-a5a5-8d722a3d99e6", - "Date" : "Thu, 24 Mar 2022 05:05:11 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050512Z:b95c888a-5c36-4c75-a5a5-8d722a3d99e6", - "Expires" : "-1", - "x-ms-request-id" : "1191c785-dfe8-4979-9124-d95eb5086703", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:04:23.9106682+00:00\",\r\n \"endTime\": \"2022-03-24T05:04:45.7544586+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"472038e7-0460-4181-af32-6ded7d1db573\"\r\n}", - "x-ms-client-request-id" : "ad86a7eb-d926-4d52-968d-02ca94dccaeb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "1a161790-7b8f-442c-a657-2856e571b010" - }, - "Response" : { - "content-length" : "2694", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "ddda053d-256d-4518-b48f-4f12479eac8e", - "Date" : "Thu, 24 Mar 2022 05:05:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050513Z:ddda053d-256d-4518-b48f-4f12479eac8e", - "Expires" : "-1", - "x-ms-request-id" : "095ff88f-ced0-452b-b53d-eee98271d17c", - "Body" : "{\r\n \"name\": \"vm140541b46\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46\",\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 \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1064446c-c7b0-48fc-aeb8-22309d3d0ed6\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"58e5f9b6-e386-46dd-9f0a-01bedad5f9d9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm140541b46_OsDisk_1_9224cf5bd49c4418856c4644fd1ed019\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/disks/vm140541b46_OsDisk_1_9224cf5bd49c4418856c4644fd1ed019\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm140541b46\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCabrd8zmR9C0bJ7u9Jzx/IyKj+0U/HBZ6uCkXgMHpCWzRKhGniby5osJVysatCN2VyB5SjnBElkHkt6rbmyJCt41Nm/FOORLpxHb36dga+Gg8D/4Asm5GBsHXxds0HqgusKytRkwM633uOL4GT69bONDRfGA/DSuAFdE/9ndWPfw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-24T05:04:24.3013208+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "1a161790-7b8f-442c-a657-2856e571b010", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "7a83245a-069d-4901-9b41-246757afb4bd", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "984", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "bba00ce7-5614-44d7-bb26-07b5659227d0", - "Date" : "Thu, 24 Mar 2022 05:05:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050513Z:bba00ce7-5614-44d7-bb26-07b5659227d0", - "Set-Cookie" : "x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly", - "Expires" : "-1", - "x-ms-request-id" : "e284f9a4-ff75-4b7e-a0c0-366d3993c6d2", - "Body" : "{\"value\":[{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants full access to manage all resources, but does not allow you to assign roles in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\",\"Microsoft.Compute/galleries/share/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"}]}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Authorization/roleAssignments/317c1cf1-dc4e-49d4-8ad1-78158b703391?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "d10fcede-024d-4e92-9baa-159d681faa4e", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "881", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "4a25b386-b516-4ecf-bb59-6e769109b23c", - "Date" : "Thu, 24 Mar 2022 05:05:16 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050516Z:4a25b386-b516-4ecf-bb59-6e769109b23c", - "Set-Cookie" : "x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly", - "Expires" : "-1", - "x-ms-request-id" : "5be29fcb-7e5d-4037-b880-9c0eed9536af", - "Body" : "{\"properties\":{\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"principalId\":\"1064446c-c7b0-48fc-aeb8-22309d3d0ed6\",\"principalType\":\"ServicePrincipal\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275\",\"condition\":null,\"conditionVersion\":null,\"createdOn\":\"2022-03-24T05:05:13.7659757Z\",\"updatedOn\":\"2022-03-24T05:05:14.0941736Z\",\"createdBy\":null,\"updatedBy\":\"00fb0876-b380-4333-a3c7-c6bdb9024a25\",\"delegatedManagedIdentityResourceId\":null,\"description\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Authorization/roleAssignments/317c1cf1-dc4e-49d4-8ad1-78158b703391\",\"type\":\"Microsoft.Authorization/roleAssignments\",\"name\":\"317c1cf1-dc4e-49d4-8ad1-78158b703391\"}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "06547b06-9cde-48cc-a843-7e24098617f1", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "2694", - "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" : "11995", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "41ee017d-5742-4fcb-8edf-a110a729ecd1", - "Date" : "Thu, 24 Mar 2022 05:05:17 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31935", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050517Z:41ee017d-5742-4fcb-8edf-a110a729ecd1", - "Expires" : "-1", - "x-ms-request-id" : "78fe2012-8c93-48b2-9f8a-87bfe4bc394a", - "Body" : "{\r\n \"name\": \"vm140541b46\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46\",\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 \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1064446c-c7b0-48fc-aeb8-22309d3d0ed6\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"58e5f9b6-e386-46dd-9f0a-01bedad5f9d9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm140541b46_OsDisk_1_9224cf5bd49c4418856c4644fd1ed019\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/disks/vm140541b46_OsDisk_1_9224cf5bd49c4418856c4644fd1ed019\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm140541b46\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCabrd8zmR9C0bJ7u9Jzx/IyKj+0U/HBZ6uCkXgMHpCWzRKhGniby5osJVysatCN2VyB5SjnBElkHkt6rbmyJCt41Nm/FOORLpxHb36dga+Gg8D/4Asm5GBsHXxds0HqgusKytRkwM633uOL4GT69bONDRfGA/DSuAFdE/9ndWPfw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-24T05:04:24.3013208+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "06547b06-9cde-48cc-a843-7e24098617f1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/az-create-storage-account?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "52d1bbe2-7b46-4581-93a9-7ac7c683aec5", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "825", - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "62226424-f5c1-42b6-82d2-6348cec90349", - "Date" : "Thu, 24 Mar 2022 05:05:21 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050522Z:62226424-f5c1-42b6-82d2-6348cec90349", - "Expires" : "-1", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "x-ms-request-id" : "770c3ae8-cfc9-4086-81dd-a2daf1d46fe4", - "Body" : "{\r\n \"name\": \"az-create-storage-account\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/az-create-storage-account\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/mgmt_fix-msi-sample/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/create_resources_with_msi.sh\"],\"commandToExecute\":\"bash create_resources_with_msi.sh st448210502e rgcomv7056275 eastus\"}\r\n }\r\n}", - "x-ms-client-request-id" : "52d1bbe2-7b46-4581-93a9-7ac7c683aec5", - "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/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "ee8f8c17-b470-44a1-89eb-869b41de1e13" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f70de94-7d0b-4a5d-99ae-7b690ca61e90", - "Date" : "Thu, 24 Mar 2022 05:05:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29955", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050552Z:4f70de94-7d0b-4a5d-99ae-7b690ca61e90", - "Expires" : "-1", - "x-ms-request-id" : "6e7234e7-d833-48e3-8caa-ac96b07618c8", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:05:20.9422701+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"770c3ae8-cfc9-4086-81dd-a2daf1d46fe4\"\r\n}", - "x-ms-client-request-id" : "ee8f8c17-b470-44a1-89eb-869b41de1e13", - "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/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "23494678-5812-45ed-b342-97c52367ee66" - }, - "Response" : { - "content-length" : "134", - "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" : "11989", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a2445d5-fa13-4e71-899e-b3b7a94ecac2", - "Date" : "Thu, 24 Mar 2022 05:06:22 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29954", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050623Z:1a2445d5-fa13-4e71-899e-b3b7a94ecac2", - "Expires" : "-1", - "x-ms-request-id" : "d191c355-430a-4251-912b-b9478adc256d", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:05:20.9422701+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"770c3ae8-cfc9-4086-81dd-a2daf1d46fe4\"\r\n}", - "x-ms-client-request-id" : "23494678-5812-45ed-b342-97c52367ee66", - "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/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "f00628a0-60a1-40d2-a0f2-1b29c86500b9" - }, - "Response" : { - "content-length" : "134", - "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" : "4c879887-54b8-4fd7-955d-0f4ed1ab9bf9", - "Date" : "Thu, 24 Mar 2022 05:06:52 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050653Z:4c879887-54b8-4fd7-955d-0f4ed1ab9bf9", - "Expires" : "-1", - "x-ms-request-id" : "02790a98-3344-4569-8cda-acef5518ff54", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:05:20.9422701+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"770c3ae8-cfc9-4086-81dd-a2daf1d46fe4\"\r\n}", - "x-ms-client-request-id" : "f00628a0-60a1-40d2-a0f2-1b29c86500b9", - "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/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "fea62f44-4469-47a6-951b-6c9fb646a736" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "111d9aa8-42d1-417b-a876-76aa4d46f4c0", - "Date" : "Thu, 24 Mar 2022 05:07:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050723Z:111d9aa8-42d1-417b-a876-76aa4d46f4c0", - "Expires" : "-1", - "x-ms-request-id" : "5c0ea9a8-8ada-4259-8363-5abaf7696454", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:05:20.9422701+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"770c3ae8-cfc9-4086-81dd-a2daf1d46fe4\"\r\n}", - "x-ms-client-request-id" : "fea62f44-4469-47a6-951b-6c9fb646a736", - "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/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "34283390-93c1-4064-8ed0-5d1e3c54f63b" - }, - "Response" : { - "content-length" : "134", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "f669347e-a1ad-40e7-bf0d-8d10de76a870", - "Date" : "Thu, 24 Mar 2022 05:07:53 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050754Z:f669347e-a1ad-40e7-bf0d-8d10de76a870", - "Expires" : "-1", - "x-ms-request-id" : "04856c2c-d884-4fda-b5f9-40de791eb994", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:05:20.9422701+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"770c3ae8-cfc9-4086-81dd-a2daf1d46fe4\"\r\n}", - "x-ms-client-request-id" : "34283390-93c1-4064-8ed0-5d1e3c54f63b", - "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/770c3ae8-cfc9-4086-81dd-a2daf1d46fe4?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "c73f201e-8fc7-42e9-8de1-99630628c31e" - }, - "Response" : { - "content-length" : "184", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "34dfb55f-a3ad-4cb2-99e7-d0c0eeb109e2", - "Date" : "Thu, 24 Mar 2022 05:08:23 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050824Z:34dfb55f-a3ad-4cb2-99e7-d0c0eeb109e2", - "Expires" : "-1", - "x-ms-request-id" : "54c52429-a6dd-424f-8679-ec64cbf7df59", - "Body" : "{\r\n \"startTime\": \"2022-03-24T05:05:20.9422701+00:00\",\r\n \"endTime\": \"2022-03-24T05:07:58.3023826+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"770c3ae8-cfc9-4086-81dd-a2daf1d46fe4\"\r\n}", - "x-ms-client-request-id" : "c73f201e-8fc7-42e9-8de1-99630628c31e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/az-create-storage-account?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e066ec06-a916-45a4-904d-decf5a1deb28" - }, - "Response" : { - "content-length" : "826", - "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", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "29395d74-67cc-4336-a439-857732b78b74", - "Date" : "Thu, 24 Mar 2022 05:08:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31921", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050824Z:29395d74-67cc-4336-a439-857732b78b74", - "Expires" : "-1", - "x-ms-request-id" : "8183b13d-7b73-4a32-a1ca-bf006927a9ab", - "Body" : "{\r\n \"name\": \"az-create-storage-account\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/az-create-storage-account\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/mgmt_fix-msi-sample/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/create_resources_with_msi.sh\"],\"commandToExecute\":\"bash create_resources_with_msi.sh st448210502e rgcomv7056275 eastus\"}\r\n }\r\n}", - "x-ms-client-request-id" : "e066ec06-a916-45a4-904d-decf5a1deb28", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "e64e01de-48d4-464f-9c1b-3156f7dd59bf", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "5142", - "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" : "11986", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "a3adfca8-3f62-4aaa-afa3-ffab87811e7f", - "Date" : "Thu, 24 Mar 2022 05:08:24 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050825Z:a3adfca8-3f62-4aaa-afa3-ffab87811e7f", - "Expires" : "-1", - "x-ms-request-id" : "6ce918d8-cc9c-4aa9-9b05-f8d59545fdd6", - "Body" : "{\r\n \"name\": \"vm140541b46\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46\",\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 \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1064446c-c7b0-48fc-aeb8-22309d3d0ed6\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"58e5f9b6-e386-46dd-9f0a-01bedad5f9d9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109280\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm140541b46_OsDisk_1_9224cf5bd49c4418856c4644fd1ed019\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/disks/vm140541b46_OsDisk_1_9224cf5bd49c4418856c4644fd1ed019\"\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm140541b46\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCabrd8zmR9C0bJ7u9Jzx/IyKj+0U/HBZ6uCkXgMHpCWzRKhGniby5osJVysatCN2VyB5SjnBElkHkt6rbmyJCt41Nm/FOORLpxHb36dga+Gg8D/4Asm5GBsHXxds0HqgusKytRkwM633uOL4GT69bONDRfGA/DSuAFdE/9ndWPfw==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/rgcomv7056275/providers/Microsoft.Network/networkInterfaces/nic85813acd2b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-03-24T05:04:24.3013208+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"az-create-storage-account\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/az-create-storage-account\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/mgmt_fix-msi-sample/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/create_resources_with_msi.sh\"],\"commandToExecute\":\"bash create_resources_with_msi.sh st448210502e rgcomv7056275 eastus\"}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\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/rgcomv7056275/providers/Microsoft.Compute/virtualMachines/vm140541b46/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\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}", - "x-ms-client-request-id" : "e64e01de-48d4-464f-9c1b-3156f7dd59bf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Storage/storageAccounts/st448210502e?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "9c62f440-2c86-4f92-bab1-eb9fa58948ec", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1171", - "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" : "11990", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "e10f98a7-1098-435c-834a-7fb55caed6d4", - "Date" : "Thu, 24 Mar 2022 05:08:25 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050825Z:e10f98a7-1098-435c-834a-7fb55caed6d4", - "Expires" : "-1", - "x-ms-request-id" : "867c04d4-6a7f-4305-9dd6-8efbc4da1fd3", - "Body" : "{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7056275/providers/Microsoft.Storage/storageAccounts/st448210502e\",\"name\":\"st448210502e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2022-03-24T05:07:17.5363274Z\",\"key2\":\"2022-03-24T05:07:17.5363274Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-24T05:07:17.5363274Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-24T05:07:17.5363274Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2022-03-24T05:07:17.4112837Z\",\"primaryEndpoints\":{\"web\":\"https://st448210502e.z13.web.core.windows.net/\",\"blob\":\"https://st448210502e.blob.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}}", - "x-ms-client-request-id" : "9c62f440-2c86-4f92-bab1-eb9fa58948ec", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv7056275?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.14.0-beta.1 (17.0.1; Windows 11; 10.0)", - "x-ms-client-request-id" : "8d91921a-4548-4820-8c69-3de845dd9f42", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "28da3e59-aa32-4b42-894c-a00b5f84aea6", - "Date" : "Thu, 24 Mar 2022 05:08:28 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20220324T050829Z:28da3e59-aa32-4b42-894c-a00b5f84aea6", - "Expires" : "-1", - "x-ms-request-id" : "28da3e59-aa32-4b42-894c-a00b5f84aea6", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3MDU2Mjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2021-01-01" - }, - "Exception" : null - } ], - "variables" : [ "vm140541b46", "rgcomv7056275", "pip172470067", "nic85813acd2b7", "vnet22267ad829", "pip67019521", "7b7e3705-543c-4d31-a243-ccdc44437f0e", "317c1cf1-dc4e-49d4-8ad1-78158b703391", "st448210502e" ] -} diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageUserAssignedMSIEnabledVirtualMachine.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageUserAssignedMSIEnabledVirtualMachine.json deleted file mode 100644 index 808e6d038e1c..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageUserAssignedMSIEnabledVirtualMachine.json +++ /dev/null @@ -1,2867 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-179548?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:28 GMT", - "content-length" : "324", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "820b0537-5964-48b4-8446-b16057dcbece", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082828Z:820b0537-5964-48b4-8446-b16057dcbece", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "820b0537-5964-48b4-8446-b16057dcbece", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548\",\"name\":\"uamsi-rg-179548\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-08-03T08:28:27.406054100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:30 GMT", - "content-length" : "324", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8c5307ff-0a32-4ca2-a09c-113967936020", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082830Z:8c5307ff-0a32-4ca2-a09c-113967936020", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8c5307ff-0a32-4ca2-a09c-113967936020", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121\",\"name\":\"uamsi-rg-244121\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2020-08-03T08:28:29.164593100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3a89571676?api-version=2023-01-31", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.msi/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "448", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f36596a2-e476-42dc-be5b-7ca21b0c8934", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082838Z:f36596a2-e476-42dc-be5b-7ca21b0c8934", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "location" : "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3a89571676", - "cache-control" : "no-cache", - "x-ms-request-id" : "f36596a2-e476-42dc-be5b-7ca21b0c8934", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3a89571676\",\"name\":\"id3a89571676\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"principalId\":\"c6fa9327-339e-42c5-b1fb-cd29896f7381\",\"clientId\":\"1d213a64-8f25-4018-a747-53b581faf136\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:38 GMT", - "content-length" : "832", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "98c71541-32d3-4cd5-9540-131e48df7255", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "set-cookie" : "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082839Z:98c71541-32d3-4cd5-9540-131e48df7255", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "75c25709-0dca-4dc0-892c-515d31ab352a", - "Body" : "{\"value\":[{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage everything except access to resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2019-02-05T21:24:38.4580610Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"}]}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Authorization/roleAssignments/151bbc6a-cb40-4465-a151-3dc7b24189b1?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:41 GMT", - "content-length" : "163", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "retry-after" : "0", - "StatusCode" : "400", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f3e3af98-6edc-4f1e-8e11-b4a8da04fef9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "set-cookie" : "x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082841Z:f3e3af98-6edc-4f1e-8e11-b4a8da04fef9", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b232c9f0-f3b1-43cc-b4d1-aec4fdf29b3b", - "Body" : "{\"error\":{\"code\":\"PrincipalNotFound\",\"message\":\"Principal c6fa9327339e42c5b1fbcd29896f7381 does not exist in the directory 00000000-0000-0000-0000-000000000000.\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Authorization/roleAssignments/151bbc6a-cb40-4465-a151-3dc7b24189b1?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.authorization/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:47 GMT", - "content-length" : "783", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "676bd728-667a-41ac-adfa-024ab6fbb611", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "set-cookie" : "x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082848Z:676bd728-667a-41ac-adfa-024ab6fbb611", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b1425fc1-a71f-4682-954b-45f9fae3e518", - "Body" : "{\"properties\":{\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"principalId\":\"c6fa9327-339e-42c5-b1fb-cd29896f7381\",\"principalType\":\"ServicePrincipal\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548\",\"createdOn\":\"2020-08-03T08:28:44.2720012Z\",\"updatedOn\":\"2020-08-03T08:28:44.2720012Z\",\"createdBy\":null,\"updatedBy\":\"4f9eda12-45b5-45bb-ad92-294962ccae95\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Authorization/roleAssignments/151bbc6a-cb40-4465-a151-3dc7b24189b1\",\"type\":\"Microsoft.Authorization/roleAssignments\",\"name\":\"151bbc6a-cb40-4465-a151-3dc7b24189b1\"}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/publicIPAddresses/pip03466042?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "769", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1132", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8febc85f-71b5-4a1e-9d7a-266bb90e1d13", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5bd7177e-aa2d-4d3d-b012-2192a13fe53b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082852Z:8febc85f-71b5-4a1e-9d7a-266bb90e1d13", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ccc9c9a2-28c0-4130-8cd9-f7a126cd4d30", - "Body" : "{\r\n \"name\": \"pip03466042\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/publicIPAddresses/pip03466042\",\r\n \"etag\": \"W/\\\"c3ff429d-5e22-4e4b-a3d3-6b08157a66ea\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6fd6ca56-a07c-47b9-8e53-3e9fe37efef8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1ed3617344\",\r\n \"fqdn\": \"pip1ed3617344.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ccc9c9a2-28c0-4130-8cd9-f7a126cd4d30?api-version=2023-02-01" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1351", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "80ae2a2a-bbc6-4df9-9255-790b6335b4d1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ea34dc7c-0226-4470-8477-ddec3208c3d3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082852Z:80ae2a2a-bbc6-4df9-9255-790b6335b4d1", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "37563f9f-9f35-4043-b5ba-c7d83049b154", - "Body" : "{\r\n \"name\": \"vnet78317bad58\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58\",\r\n \"etag\": \"W/\\\"752c70e8-18d8-4686-b56a-9ea83f226187\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aa941dea-4474-4a57-9ccb-fb199041e416\",\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/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58/subnets/subnet1\",\r\n \"etag\": \"W/\\\"752c70e8-18d8-4686-b56a-9ea83f226187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/37563f9f-9f35-4043-b5ba-c7d83049b154?api-version=2023-02-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ccc9c9a2-28c0-4130-8cd9-f7a126cd4d30?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:53 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eabb59df-cce3-410d-8417-1b35ea008147", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2b4822db-0971-4f80-be77-31cb56438103", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082854Z:eabb59df-cce3-410d-8417-1b35ea008147", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9eba398a-abd5-493b-a9f1-1cdc72bbefe5", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/publicIPAddresses/pip03466042?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "770", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "741fa5ff-6236-40ba-b7c5-ee7932a0a22e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "17e03059-64d8-4fa0-aad4-42fc109868a9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082854Z:741fa5ff-6236-40ba-b7c5-ee7932a0a22e", - "connection" : "keep-alive", - "etag" : "W/\"6339a11f-e596-400d-8546-43d0ead482be\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6d130ebe-1caa-4cee-8351-040242b502e2", - "Body" : "{\r\n \"name\": \"pip03466042\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/publicIPAddresses/pip03466042\",\r\n \"etag\": \"W/\\\"6339a11f-e596-400d-8546-43d0ead482be\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fd6ca56-a07c-47b9-8e53-3e9fe37efef8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1ed3617344\",\r\n \"fqdn\": \"pip1ed3617344.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/37563f9f-9f35-4043-b5ba-c7d83049b154?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:55 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "76bb3b8c-ce61-4df3-acfb-ed3d7daf295e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5303c6a5-2110-4580-8a1a-b43810f3e36b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082856Z:76bb3b8c-ce61-4df3-acfb-ed3d7daf295e", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d0a925f9-422c-4d66-abd9-a38a88f1f708", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:55 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1353", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f5fbf126-ef96-485b-b060-9f7c0e6965ab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f90356db-bf16-4307-af66-a40e64744653", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082856Z:f5fbf126-ef96-485b-b060-9f7c0e6965ab", - "connection" : "keep-alive", - "etag" : "W/\"64d5434b-6866-460e-8f7b-91481e5c202b\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5f94319b-efe3-46bd-801b-b937239e6ca1", - "Body" : "{\r\n \"name\": \"vnet78317bad58\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58\",\r\n \"etag\": \"W/\\\"64d5434b-6866-460e-8f7b-91481e5c202b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa941dea-4474-4a57-9ccb-fb199041e416\",\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/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58/subnets/subnet1\",\r\n \"etag\": \"W/\\\"64d5434b-6866-460e-8f7b-91481e5c202b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:28:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1881", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1135", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "69d8230e-c4af-4e84-8bb3-ccad2af37f8d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ed059235-6956-45fe-a23a-5b4ec424c8a1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082900Z:69d8230e-c4af-4e84-8bb3-ccad2af37f8d", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3fead6ad-fb61-4daa-818b-027e34eb8f4b", - "Body" : "{\r\n \"name\": \"nic7404235937f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f\",\r\n \"etag\": \"W/\\\"709407e0-4cce-4e67-abd1-2b67b76ae06e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30f7e785-b2d1-46e1-9d6e-637dbe0a9d1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"709407e0-4cce-4e67-abd1-2b67b76ae06e\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/publicIPAddresses/pip03466042\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58/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\": \"3iozjktuirluvhgl5mmzaqpecg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3fead6ad-fb61-4daa-818b-027e34eb8f4b?api-version=2023-02-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3fead6ad-fb61-4daa-818b-027e34eb8f4b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b96473c-63bc-46f3-b19d-d02f4449e304", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0580357e-a446-4a12-a2d4-03627b40a5b1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082931Z:1b96473c-63bc-46f3-b19d-d02f4449e304", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "669129c9-2e11-4d5f-a0e9-47527be79a58", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1881", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11869", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad780c7d-7dfb-4d92-80b7-f433d8844e18", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "832e74b1-aebf-4738-ad5f-5d8a98bd545a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082932Z:ad780c7d-7dfb-4d92-80b7-f433d8844e18", - "connection" : "keep-alive", - "etag" : "W/\"709407e0-4cce-4e67-abd1-2b67b76ae06e\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "eb633072-a09f-4471-a6d2-db4035d736c5", - "Body" : "{\r\n \"name\": \"nic7404235937f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f\",\r\n \"etag\": \"W/\\\"709407e0-4cce-4e67-abd1-2b67b76ae06e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30f7e785-b2d1-46e1-9d6e-637dbe0a9d1e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"709407e0-4cce-4e67-abd1-2b67b76ae06e\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/publicIPAddresses/pip03466042\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/virtualNetworks/vnet78317bad58/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\": \"3iozjktuirluvhgl5mmzaqpecg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1796", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1126", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eed2721e-cd88-42e7-b43e-d9586cc3ea65", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1194", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082947Z:eed2721e-cd88-42e7-b43e-d9586cc3ea65", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "97f69b05-ea14-4d29-bdce-545e6ebe6713", - "Body" : "{\r\n \"name\": \"vm1cb8455649a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3a89571676\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"841159f8-412a-4bce-a491-60c2406f1c15\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202007290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1cb8455649a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97f69b05-ea14-4d29-bdce-545e6ebe6713?api-version=2021-11-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97f69b05-ea14-4d29-bdce-545e6ebe6713?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:29:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "708f9e2b-d933-432f-ba20-bd6a19ff2b6f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T082957Z:708f9e2b-d933-432f-ba20-bd6a19ff2b6f", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2d50779d-3444-49d7-b7da-852b014753cf", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:29:45.4428409+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f69b05-ea14-4d29-bdce-545e6ebe6713\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97f69b05-ea14-4d29-bdce-545e6ebe6713?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:30:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1a0f4a44-ed67-4a4a-9d9a-cf17f9f21333", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083033Z:1a0f4a44-ed67-4a4a-9d9a-cf17f9f21333", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "28eb520c-f80d-47aa-b6df-e4dc5b79229b", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:29:45.4428409+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f69b05-ea14-4d29-bdce-545e6ebe6713\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97f69b05-ea14-4d29-bdce-545e6ebe6713?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f4e5d42a-5033-4386-a826-45c3025ccbc3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083105Z:f4e5d42a-5033-4386-a826-45c3025ccbc3", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0b6a6139-0f0c-4dfd-b3b6-259e0bf5efff", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:29:45.4428409+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f69b05-ea14-4d29-bdce-545e6ebe6713\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97f69b05-ea14-4d29-bdce-545e6ebe6713?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fc29f485-6609-4c46-b344-309964f9f9d5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083135Z:fc29f485-6609-4c46-b344-309964f9f9d5", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7183f43c-38bc-47b2-ad99-53599806f2aa", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:29:45.4428409+00:00\",\r\n \"endTime\": \"2020-08-03T08:31:05.2240696+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"97f69b05-ea14-4d29-bdce-545e6ebe6713\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2198", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d577e27c-c717-4c91-815d-027eaa8a70ab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083136Z:d577e27c-c717-4c91-815d-027eaa8a70ab", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3e70c212-9e03-42d2-b1ce-413e383a9d32", - "Body" : "{\r\n \"name\": \"vm1cb8455649a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3a89571676\": {\r\n \"principalId\": \"c6fa9327-339e-42c5-b1fb-cd29896f7381\",\r\n \"clientId\": \"1d213a64-8f25-4018-a747-53b581faf136\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"841159f8-412a-4bce-a491-60c2406f1c15\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202007290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1cb8455649a_OsDisk_1_dc4b62415f3f4b8b9d546367b4ee75b6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UAMSI-RG-244121/providers/Microsoft.Compute/disks/vm1cb8455649a_OsDisk_1_dc4b62415f3f4b8b9d546367b4ee75b6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1cb8455649a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:31:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "743", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "30e60477-b908-4b2b-a2ef-036946cfe07b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T083145Z:30e60477-b908-4b2b-a2ef-036946cfe07b", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "42fff34f-1032-4a77-a32e-f0d8d5403fbc", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_jva_mvn_git.sh\"],\"commandToExecute\":\"bash install_jva_mvn_git.sh\"}\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/42fff34f-1032-4a77-a32e-f0d8d5403fbc?api-version=2021-11-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/42fff34f-1032-4a77-a32e-f0d8d5403fbc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cdd401d8-b977-4ee0-b7f8-296adb9ee194", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083215Z:cdd401d8-b977-4ee0-b7f8-296adb9ee194", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "713ac907-845b-4ffb-95f4-58f2b3ac57a3", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:31:43.4425805+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"42fff34f-1032-4a77-a32e-f0d8d5403fbc\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/42fff34f-1032-4a77-a32e-f0d8d5403fbc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:32:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11710", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56a8677f-fe70-4b77-a22f-4140d2428879", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29936", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083246Z:56a8677f-fe70-4b77-a22f-4140d2428879", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b7461c1f-6c92-4681-987b-c4fedd0df314", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:31:43.4425805+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"42fff34f-1032-4a77-a32e-f0d8d5403fbc\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/42fff34f-1032-4a77-a32e-f0d8d5403fbc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:33:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11730", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c601fc4a-0c63-4ced-9eb5-e2e3da8a251b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14936,Microsoft.Compute/GetOperation30Min;29917", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083317Z:c601fc4a-0c63-4ced-9eb5-e2e3da8a251b", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c67bc734-cd63-490d-a758-d7c196c8079e", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:31:43.4425805+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"42fff34f-1032-4a77-a32e-f0d8d5403fbc\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/42fff34f-1032-4a77-a32e-f0d8d5403fbc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:33:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11715", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3896b1f-f1a7-4994-98ac-ff358e8819fe", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29905", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083348Z:b3896b1f-f1a7-4994-98ac-ff358e8819fe", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3e4c7743-a967-4b70-964d-15945dd5cb21", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:31:43.4425805+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"42fff34f-1032-4a77-a32e-f0d8d5403fbc\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/42fff34f-1032-4a77-a32e-f0d8d5403fbc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:34:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11689", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8c4402b1-b54d-4470-9029-d6f194565fc7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29894", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083419Z:8c4402b1-b54d-4470-9029-d6f194565fc7", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5ef5c9d0-401d-46d9-96dd-99ec3c3992ef", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:31:43.4425805+00:00\",\r\n \"endTime\": \"2020-08-03T08:34:09.770848+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"42fff34f-1032-4a77-a32e-f0d8d5403fbc\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:34:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "744", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11697", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "76100de4-e216-40cc-87b8-f8d73ae25ec9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3952,Microsoft.Compute/LowCostGet30Min;31929", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083419Z:76100de4-e216-40cc-87b8-f8d73ae25ec9", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "57830a76-b56d-4d02-b6b9-81a251a68b77", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_jva_mvn_git.sh\"],\"commandToExecute\":\"bash install_jva_mvn_git.sh\"}\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:34:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3024", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11696", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2d1869cf-9046-4d4c-a8e7-d45fc49c5e27", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3951,Microsoft.Compute/LowCostGet30Min;31928", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083420Z:2d1869cf-9046-4d4c-a8e7-d45fc49c5e27", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "27067067-02cf-4f0d-bc7a-14c2e69ec4c1", - "Body" : "{\r\n \"name\": \"vm1cb8455649a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id3a89571676\": {\r\n \"principalId\": \"c6fa9327-339e-42c5-b1fb-cd29896f7381\",\r\n \"clientId\": \"1d213a64-8f25-4018-a747-53b581faf136\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"841159f8-412a-4bce-a491-60c2406f1c15\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202007290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1cb8455649a_OsDisk_1_dc4b62415f3f4b8b9d546367b4ee75b6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UAMSI-RG-244121/providers/Microsoft.Compute/disks/vm1cb8455649a_OsDisk_1_dc4b62415f3f4b8b9d546367b4ee75b6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1cb8455649a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Network/networkInterfaces/nic7404235937f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-libraries-for-java/master/azure-samples/src/main/resources/install_jva_mvn_git.sh\"],\"commandToExecute\":\"bash install_jva_mvn_git.sh\"}\r\n }\r\n }\r\n ]\r\n}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-244121/providers/Microsoft.Compute/virtualMachines/vm1cb8455649a/runCommand?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:34:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0efcaec7-ca01-45c0-a350-902eeecb9f17", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1193", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083421Z:0efcaec7-ca01-45c0-a350-902eeecb9f17", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?monitor=true&api-version=2021-11-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6d6404ef-0171-4653-9985-8243a874ec23", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:34:52 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11688", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f7bf7792-4fee-4d0e-a56f-fe74f3574363", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14923,Microsoft.Compute/GetOperation30Min;29879", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083452Z:f7bf7792-4fee-4d0e-a56f-fe74f3574363", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "aea4bb35-a4ec-4e0a-8b64-144b3f2d050e", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:35:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11647", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "118f85ef-068a-4bfa-87f1-703558176009", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14913,Microsoft.Compute/GetOperation30Min;29857", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083523Z:118f85ef-068a-4bfa-87f1-703558176009", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "323d81d2-5a71-4309-b748-053239a151f2", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:35:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11634", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06fd9ddd-1a50-4148-9b4a-ef7073986680", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14920,Microsoft.Compute/GetOperation30Min;29844", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083554Z:06fd9ddd-1a50-4148-9b4a-ef7073986680", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4d15ee02-e8e6-40de-ae39-19734550100e", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:36:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11643", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "69cd552c-45b6-4983-a49a-111376e6faa6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29824", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083625Z:69cd552c-45b6-4983-a49a-111376e6faa6", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "fbf34b83-baad-43d5-bb42-420f65cf1d57", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:36:56 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11550", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "57db8a61-4ad4-4f94-9f03-e6c80f10712d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14908,Microsoft.Compute/GetOperation30Min;29813", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083656Z:57db8a61-4ad4-4f94-9f03-e6c80f10712d", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "07cfd150-b27e-4888-ba91-d095ffde8213", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:37:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11598", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a7a9041e-8ad9-44a2-b45c-dd4ac5dd38c2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14908,Microsoft.Compute/GetOperation30Min;29797", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083727Z:a7a9041e-8ad9-44a2-b45c-dd4ac5dd38c2", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "78bff2df-8966-49cb-8f99-0b5943c59232", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:37:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11612", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2fdc3449-e9cf-4493-9d1a-e42f70559a23", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14901,Microsoft.Compute/GetOperation30Min;29775", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083758Z:2fdc3449-e9cf-4493-9d1a-e42f70559a23", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f730f33c-0be4-44c1-a86b-40eb02a4c4e4", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:38:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11522", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eaaf49d0-d984-40e3-add2-26239e95f627", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14904,Microsoft.Compute/GetOperation30Min;29756", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083829Z:eaaf49d0-d984-40e3-add2-26239e95f627", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "78f0c04f-d196-4b8b-896b-59ed6312b679", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:38:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4969", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11511", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "813cbe81-3a5c-4578-b2c6-9cd2fb15f6bc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14893,Microsoft.Compute/GetOperation30Min;29736", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083859Z:813cbe81-3a5c-4578-b2c6-9cd2fb15f6bc", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5d18ea57-3f8d-4893-95b3-a37b8b0e1578", - "Body" : "{\r\n \"startTime\": \"2020-08-03T08:34:21.630171+00:00\",\r\n \"endTime\": \"2020-08-03T08:38:58.4266794+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded: \\n[stdout]\\n_v2\\n\\tStorageProfile: \\n\\t\\tImageReference:\\n\\t\\t\\tPublisher: Canonical\\n\\t\\t\\tOffer: UbuntuServer\\n\\t\\t\\tSKU: 16.04.0-LTS\\n\\t\\t\\tVersion: latest\\n\\t\\tOSDisk:\\n\\t\\t\\tOSType: Linux\\n\\t\\t\\tName: vm1afd14074a1371492e_OsDisk_1_6ff47d2cf2e24e89b5348212d79a62d4\\n\\t\\t\\tCaching: ReadWrite\\n\\t\\t\\tCreateOption: FromImage\\n\\t\\t\\tDiskSizeGB: 30\\n\\tOSProfile: \\n\\t\\tComputerName:vm6157588190\\n\\t\\t\\tLinuxConfiguration: \\n\\t\\t\\t\\tDisablePasswordAuthentication: false\\n\\tNetworkProfile: \\n\\t\\tId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Network/networkInterfaces/nic43073118e12\\n\\tExtensions: \\n\\tMSI: \\n\\t\\t\\tMSI enabled:false\\n\\t\\t\\tSystem Assigned MSI Active Directory Service Principal Id:null\\n\\t\\t\\tSystem Assigned MSI Active Directory Tenant Id:null\\n\\tZones: []\\n[WARNING] thread Thread[RxIoScheduler-1 (Evictor),5,com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine] was interrupted but is still alive after waiting at least 15000msecs\\n[WARNING] thread Thread[RxIoScheduler-1 (Evictor),5,com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine] will linger despite being asked to die via interruption\\n[WARNING] thread Thread[OkHttp ConnectionPool,5,com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine] will linger despite being asked to die via interruption\\n[WARNING] NOTE: 2 thread(s) did not finish despite being asked to via interruption. This is not a problem with exec:java, it is a problem with the running code. Although not serious, it should be remedied.\\n[WARNING] Couldn't destroy threadgroup org.codehaus.mojo.exec.ExecJavaMojo$IsolatedThreadGroup[name=com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine,maxpri=10]\\njava.lang.IllegalThreadStateException\\n\\tat java.lang.ThreadGroup.destroy(ThreadGroup.java:778)\\n\\tat org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:328)\\n\\tat org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)\\n\\tat org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)\\n\\tat org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)\\n\\tat org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)\\n\\tat org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)\\n\\tat org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)\\n\\tat org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)\\n\\tat org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)\\n\\tat org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)\\n\\tat org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)\\n\\tat org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)\\n\\tat org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)\\n\\tat org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)\\n\\tat org.apache.maven.cli.MavenCli.main(MavenCli.java:199)\\n\\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\\n\\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\\n\\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\\n\\tat java.lang.reflect.Method.invoke(Method.java:498)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)\\n[INFO] ------------------------------------------------------------------------\\n[INFO] BUILD SUCCESS\\n[INFO] ------------------------------------------------------------------------\\n[INFO] Total time: 04:17 min\\n[INFO] Finished at: 2020-08-03T08:38:54+00:00\\n[INFO] Final Memory: 63M/664M\\n[INFO] ------------------------------------------------------------------------\\n\\n[stderr]\\nCloning into 'compute-java-manage-vm-from-vm-with-msi-credentials'...\\nSLF4J: Failed to load class \\\"org.slf4j.impl.StaticLoggerBinder\\\".\\nSLF4J: Defaulting to no-operation (NOP) logger implementation\\nSLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.\\n\"\r\n }\r\n ]\r\n}\r\n },\r\n \"name\": \"6d6404ef-0171-4653-9985-8243a874ec23\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d6404ef-0171-4653-9985-8243a874ec23?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:39:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4686", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11510", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56e6525f-d6b9-46ed-a307-27e82502a55f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14910,Microsoft.Compute/GetOperation30Min;29734", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083900Z:56e6525f-d6b9-46ed-a307-27e82502a55f", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8bd51183-7082-4961-8bef-2553736b1749", - "Body" : "{\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n_v2\\n\\tStorageProfile: \\n\\t\\tImageReference:\\n\\t\\t\\tPublisher: Canonical\\n\\t\\t\\tOffer: UbuntuServer\\n\\t\\t\\tSKU: 16.04.0-LTS\\n\\t\\t\\tVersion: latest\\n\\t\\tOSDisk:\\n\\t\\t\\tOSType: Linux\\n\\t\\t\\tName: vm1afd14074a1371492e_OsDisk_1_6ff47d2cf2e24e89b5348212d79a62d4\\n\\t\\t\\tCaching: ReadWrite\\n\\t\\t\\tCreateOption: FromImage\\n\\t\\t\\tDiskSizeGB: 30\\n\\tOSProfile: \\n\\t\\tComputerName:vm6157588190\\n\\t\\t\\tLinuxConfiguration: \\n\\t\\t\\t\\tDisablePasswordAuthentication: false\\n\\tNetworkProfile: \\n\\t\\tId:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Network/networkInterfaces/nic43073118e12\\n\\tExtensions: \\n\\tMSI: \\n\\t\\t\\tMSI enabled:false\\n\\t\\t\\tSystem Assigned MSI Active Directory Service Principal Id:null\\n\\t\\t\\tSystem Assigned MSI Active Directory Tenant Id:null\\n\\tZones: []\\n[WARNING] thread Thread[RxIoScheduler-1 (Evictor),5,com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine] was interrupted but is still alive after waiting at least 15000msecs\\n[WARNING] thread Thread[RxIoScheduler-1 (Evictor),5,com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine] will linger despite being asked to die via interruption\\n[WARNING] thread Thread[OkHttp ConnectionPool,5,com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine] will linger despite being asked to die via interruption\\n[WARNING] NOTE: 2 thread(s) did not finish despite being asked to via interruption. This is not a problem with exec:java, it is a problem with the running code. Although not serious, it should be remedied.\\n[WARNING] Couldn't destroy threadgroup org.codehaus.mojo.exec.ExecJavaMojo$IsolatedThreadGroup[name=com.microsoft.azure.management.compute.samples.ManageVirtualMachineFromMSIEnabledVirtualMachine,maxpri=10]\\njava.lang.IllegalThreadStateException\\n\\tat java.lang.ThreadGroup.destroy(ThreadGroup.java:778)\\n\\tat org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:328)\\n\\tat org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)\\n\\tat org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)\\n\\tat org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)\\n\\tat org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)\\n\\tat org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)\\n\\tat org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)\\n\\tat org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)\\n\\tat org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)\\n\\tat org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)\\n\\tat org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)\\n\\tat org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)\\n\\tat org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)\\n\\tat org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)\\n\\tat org.apache.maven.cli.MavenCli.main(MavenCli.java:199)\\n\\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\\n\\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\\n\\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\\n\\tat java.lang.reflect.Method.invoke(Method.java:498)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)\\n\\tat org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)\\n[INFO] ------------------------------------------------------------------------\\n[INFO] BUILD SUCCESS\\n[INFO] ------------------------------------------------------------------------\\n[INFO] Total time: 04:17 min\\n[INFO] Finished at: 2020-08-03T08:38:54+00:00\\n[INFO] Final Memory: 63M/664M\\n[INFO] ------------------------------------------------------------------------\\n\\n[stderr]\\nCloning into 'compute-java-manage-vm-from-vm-with-msi-credentials'...\\nSLF4J: Failed to load class \\\"org.slf4j.impl.StaticLoggerBinder\\\".\\nSLF4J: Defaulting to no-operation (NOP) logger implementation\\nSLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.\\n\"}]}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Compute/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:39:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2046", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11599", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7fa47e88-c2f1-4b93-b04b-28ba95dde192", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;697", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083901Z:7fa47e88-c2f1-4b93-b04b-28ba95dde192", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "10d7fc70-3515-4c9d-860c-3fbcbf47cca3", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1afd14074a1371492e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Compute/virtualMachines/vm1afd14074a1371492e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"68dc4b45-ae50-48a6-8dc0-ceb9b59ea589\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202007290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1afd14074a1371492e_OsDisk_1_6ff47d2cf2e24e89b5348212d79a62d4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UAMSI-RG-179548/providers/Microsoft.Compute/disks/vm1afd14074a1371492e_OsDisk_1_6ff47d2cf2e24e89b5348212d79a62d4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm6157588190\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/uamsi-rg-179548/providers/Microsoft.Network/networkInterfaces/nic43073118e12\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-179548?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:39:03 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14981", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b683fdb-e4cf-43f9-920f-2d7f80b442f1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083904Z:1b683fdb-e4cf-43f9-920f-2d7f80b442f1", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1b683fdb-e4cf-43f9-920f-2d7f80b442f1", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:39:20 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11594", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee4a3598-c709-4937-be0f-8c96baf0acd9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083920Z:ee4a3598-c709-4937-be0f-8c96baf0acd9", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ee4a3598-c709-4937-be0f-8c96baf0acd9", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:39:36 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11505", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfa073be-0d5b-4ff8-a065-1ca2642a4fff", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083937Z:cfa073be-0d5b-4ff8-a065-1ca2642a4fff", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cfa073be-0d5b-4ff8-a065-1ca2642a4fff", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:39:52 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11584", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2bbf91e4-b0fd-4353-be6d-58e600e83864", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T083953Z:2bbf91e4-b0fd-4353-be6d-58e600e83864", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2bbf91e4-b0fd-4353-be6d-58e600e83864", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:40:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11560", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8357b93d-f781-4f23-85c3-1a613298631a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084010Z:8357b93d-f781-4f23-85c3-1a613298631a", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8357b93d-f781-4f23-85c3-1a613298631a", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:40:25 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11492", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2ea6809b-72c4-45f1-a809-5c4a527db55a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084026Z:2ea6809b-72c4-45f1-a809-5c4a527db55a", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ea6809b-72c4-45f1-a809-5c4a527db55a", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:40:42 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11551", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eb0e013e-6d4b-4ebd-a3e7-c255f0c1f3ce", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084042Z:eb0e013e-6d4b-4ebd-a3e7-c255f0c1f3ce", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "eb0e013e-6d4b-4ebd-a3e7-c255f0c1f3ce", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:40:57 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11547", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c1573950-2d67-4e9b-83c5-64e5e1c82a69", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084058Z:c1573950-2d67-4e9b-83c5-64e5e1c82a69", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c1573950-2d67-4e9b-83c5-64e5e1c82a69", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:41:13 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11480", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9c0b0978-cbf3-4d74-b536-05abf2aad3ef", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084114Z:9c0b0978-cbf3-4d74-b536-05abf2aad3ef", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "9c0b0978-cbf3-4d74-b536-05abf2aad3ef", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:41:29 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11473", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c3957ac0-fdae-44b7-900c-c3926905e192", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084130Z:c3957ac0-fdae-44b7-900c-c3926905e192", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c3957ac0-fdae-44b7-900c-c3926905e192", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:41:45 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11538", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "723a823c-4965-48f9-b843-d1da67aafc10", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084145Z:723a823c-4965-48f9-b843-d1da67aafc10", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "723a823c-4965-48f9-b843-d1da67aafc10", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:42:01 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "99658924-04a2-4721-850d-3737d3c91620", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T084202Z:99658924-04a2-4721-850d-3737d3c91620", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "99658924-04a2-4721-850d-3737d3c91620", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:42:18 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "313f088c-eaa9-49a5-956e-12b5c7430f92", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T084218Z:313f088c-eaa9-49a5-956e-12b5c7430f92", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "313f088c-eaa9-49a5-956e-12b5c7430f92", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:42:34 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "68e49d6d-47e0-4ae5-b353-2baa9ae9434d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T084235Z:68e49d6d-47e0-4ae5-b353-2baa9ae9434d", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "68e49d6d-47e0-4ae5-b353-2baa9ae9434d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:42:50 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b82b2655-181e-4021-82aa-e59e884e6226", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T084251Z:b82b2655-181e-4021-82aa-e59e884e6226", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b82b2655-181e-4021-82aa-e59e884e6226", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:43:07 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11547", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f1742b71-3d8e-4d2f-b63f-8f3d02bb2c0f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084307Z:f1742b71-3d8e-4d2f-b63f-8f3d02bb2c0f", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f1742b71-3d8e-4d2f-b63f-8f3d02bb2c0f", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:43:23 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11529", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "22cb7513-8fc4-4c92-8d13-5b56f114a0d0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084324Z:22cb7513-8fc4-4c92-8d13-5b56f114a0d0", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "22cb7513-8fc4-4c92-8d13-5b56f114a0d0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:43:40 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11459", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a493350b-ee9f-46e2-aed1-039d69639b3b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084340Z:a493350b-ee9f-46e2-aed1-039d69639b3b", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a493350b-ee9f-46e2-aed1-039d69639b3b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:43:56 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11541", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d72f9ce2-ba00-4171-886b-15e730de59cc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084356Z:d72f9ce2-ba00-4171-886b-15e730de59cc", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d72f9ce2-ba00-4171-886b-15e730de59cc", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:44:12 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11539", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aad9687f-a357-404d-8b1b-08ab020c59d4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084412Z:aad9687f-a357-404d-8b1b-08ab020c59d4", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "aad9687f-a357-404d-8b1b-08ab020c59d4", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:44:29 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11519", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7921b5be-e6bc-48ee-acc4-06a61b238836", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084429Z:7921b5be-e6bc-48ee-acc4-06a61b238836", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "7921b5be-e6bc-48ee-acc4-06a61b238836", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:44:44 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11516", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cdc8369a-abfd-4e53-9910-743451a2ac0d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084445Z:cdc8369a-abfd-4e53-9910-743451a2ac0d", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cdc8369a-abfd-4e53-9910-743451a2ac0d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:45:00 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11534", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b9db9c1-2fc2-4ec8-8c75-222a51252bf0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084501Z:9b9db9c1-2fc2-4ec8-8c75-222a51252bf0", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "9b9db9c1-2fc2-4ec8-8c75-222a51252bf0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:45:16 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11532", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "be40525b-5c2a-4bbd-b30b-5f8e73d2cf19", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084517Z:be40525b-5c2a-4bbd-b30b-5f8e73d2cf19", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "be40525b-5c2a-4bbd-b30b-5f8e73d2cf19", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:45:33 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11508", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7263faa3-3048-4dca-b149-001481a5f4a1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084533Z:7263faa3-3048-4dca-b149-001481a5f4a1", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "7263faa3-3048-4dca-b149-001481a5f4a1", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:45:49 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11507", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cee30e95-531b-4c8b-ae1b-70d42bfb737e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084549Z:cee30e95-531b-4c8b-ae1b-70d42bfb737e", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cee30e95-531b-4c8b-ae1b-70d42bfb737e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:46:05 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11444", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34690a26-9d42-47e8-9e05-6ee43f14742e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084605Z:34690a26-9d42-47e8-9e05-6ee43f14742e", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "34690a26-9d42-47e8-9e05-6ee43f14742e", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:46:21 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11442", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b326c337-bcba-441d-9498-d6d1383d398b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084621Z:b326c337-bcba-441d-9498-d6d1383d398b", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b326c337-bcba-441d-9498-d6d1383d398b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:46:37 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11534", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d20ee1ef-8a89-481a-89a4-5cf411a29dde", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084638Z:d20ee1ef-8a89-481a-89a4-5cf411a29dde", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d20ee1ef-8a89-481a-89a4-5cf411a29dde", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:46:53 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11439", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eaa083e9-5df9-4709-96ee-dfeb49584dec", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084654Z:eaa083e9-5df9-4709-96ee-dfeb49584dec", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "eaa083e9-5df9-4709-96ee-dfeb49584dec", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:47:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11436", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "adcd1495-8930-4c3c-b96b-f56644f6ff37", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084710Z:adcd1495-8930-4c3c-b96b-f56644f6ff37", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "adcd1495-8930-4c3c-b96b-f56644f6ff37", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:47:25 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11434", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ff5f27cf-98a8-48e5-ad94-51261d60b837", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084726Z:ff5f27cf-98a8-48e5-ad94-51261d60b837", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ff5f27cf-98a8-48e5-ad94-51261d60b837", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:47:41 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11520", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "46a81623-4f3b-4aa8-9082-a6b8e33bea29", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084742Z:46a81623-4f3b-4aa8-9082-a6b8e33bea29", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "46a81623-4f3b-4aa8-9082-a6b8e33bea29", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:47:58 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11500", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fa0ecbee-0bb6-47e9-8323-d232b901c372", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084758Z:fa0ecbee-0bb6-47e9-8323-d232b901c372", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "fa0ecbee-0bb6-47e9-8323-d232b901c372", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:48:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11497", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "212d1880-dcc5-4d75-ade9-388886f58c06", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084815Z:212d1880-dcc5-4d75-ade9-388886f58c06", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "212d1880-dcc5-4d75-ade9-388886f58c06", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:48:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11522", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33226d52-7c81-4566-bd22-c5f0448ae438", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084831Z:33226d52-7c81-4566-bd22-c5f0448ae438", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "33226d52-7c81-4566-bd22-c5f0448ae438", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMTc5NTQ4LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:48:47 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11416", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31b6c54d-0bee-4046-ba41-17993e775993", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084848Z:31b6c54d-0bee-4046-ba41-17993e775993", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "31b6c54d-0bee-4046-ba41-17993e775993", - "Body" : "" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/uamsi-rg-244121?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.3; Windows 10; 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:48:50 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14967", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4ea64294-0d48-44e3-8744-9af267ee9eee", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084851Z:4ea64294-0d48-44e3-8744-9af267ee9eee", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4ea64294-0d48-44e3-8744-9af267ee9eee", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:49:06 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11413", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "731ea766-34a2-497d-be59-59a910bd206c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084907Z:731ea766-34a2-497d-be59-59a910bd206c", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "731ea766-34a2-497d-be59-59a910bd206c", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:49:22 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11410", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7141d52d-0136-4635-b8f4-6e5c942e195b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084923Z:7141d52d-0136-4635-b8f4-6e5c942e195b", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "7141d52d-0136-4635-b8f4-6e5c942e195b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:49:38 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11518", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "da806a8a-3726-48bd-890d-92943a405c43", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084938Z:da806a8a-3726-48bd-890d-92943a405c43", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "da806a8a-3726-48bd-890d-92943a405c43", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:49:54 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11504", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d712a557-1153-49e5-ad53-03bc5b0ab147", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T084955Z:d712a557-1153-49e5-ad53-03bc5b0ab147", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d712a557-1153-49e5-ad53-03bc5b0ab147", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:50:11 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11501", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eee57f98-ac53-4a8c-8f54-aae46713a024", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085011Z:eee57f98-ac53-4a8c-8f54-aae46713a024", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "eee57f98-ac53-4a8c-8f54-aae46713a024", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:50:26 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11402", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4e796d31-fdc5-4ceb-b0e9-06428a8ae8b1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085027Z:4e796d31-fdc5-4ceb-b0e9-06428a8ae8b1", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4e796d31-fdc5-4ceb-b0e9-06428a8ae8b1", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:50:42 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11400", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "65d35844-062b-4e53-bf56-b50a0a33cff5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085043Z:65d35844-062b-4e53-bf56-b50a0a33cff5", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "65d35844-062b-4e53-bf56-b50a0a33cff5", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:50:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11398", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cdee65c1-6bca-4788-9c1c-ecdbbc7b4137", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085059Z:cdee65c1-6bca-4788-9c1c-ecdbbc7b4137", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "cdee65c1-6bca-4788-9c1c-ecdbbc7b4137", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:51:16 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11478", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "597e1869-11e2-473f-b770-01d76c3bc0be", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085116Z:597e1869-11e2-473f-b770-01d76c3bc0be", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "597e1869-11e2-473f-b770-01d76c3bc0be", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:51:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11397", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ba99e179-1dac-4215-bc56-2c1c7c5019fb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085132Z:ba99e179-1dac-4215-bc56-2c1c7c5019fb", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ba99e179-1dac-4215-bc56-2c1c7c5019fb", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:51:48 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11489", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "81fcf24e-a0b7-4ed8-ac40-c288adfee6d1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085148Z:81fcf24e-a0b7-4ed8-ac40-c288adfee6d1", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "81fcf24e-a0b7-4ed8-ac40-c288adfee6d1", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:52:04 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11487", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "522a73c8-4ed9-473c-8ce9-61ba3767739f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085204Z:522a73c8-4ed9-473c-8ce9-61ba3767739f", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "522a73c8-4ed9-473c-8ce9-61ba3767739f", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:52:20 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11393", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b8a14ec-1619-41de-8e49-37ca10b30bc2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085220Z:1b8a14ec-1619-41de-8e49-37ca10b30bc2", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1b8a14ec-1619-41de-8e49-37ca10b30bc2", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:52:35 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11471", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "11446330-1b86-490e-8a5a-aedc5efbc476", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085236Z:11446330-1b86-490e-8a5a-aedc5efbc476", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "11446330-1b86-490e-8a5a-aedc5efbc476", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:52:52 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11391", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "41660355-8dd4-4f84-8818-a41714531cc4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085252Z:41660355-8dd4-4f84-8818-a41714531cc4", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "41660355-8dd4-4f84-8818-a41714531cc4", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:53:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11483", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe5acf18-1ffe-40a8-8357-48ef90ae3c17", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085309Z:fe5acf18-1ffe-40a8-8357-48ef90ae3c17", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "fe5acf18-1ffe-40a8-8357-48ef90ae3c17", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:53:25 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4c8eea34-3c8b-4c8e-b0b7-e3560b984956", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T085326Z:4c8eea34-3c8b-4c8e-b0b7-e3560b984956", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4c8eea34-3c8b-4c8e-b0b7-e3560b984956", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:53:42 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ce97996e-fb30-44ad-9a59-b6ce5885867a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T085342Z:ce97996e-fb30-44ad-9a59-b6ce5885867a", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ce97996e-fb30-44ad-9a59-b6ce5885867a", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:53:58 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6ca97ab5-48b9-4326-a204-634d9409bde8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T085359Z:6ca97ab5-48b9-4326-a204-634d9409bde8", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6ca97ab5-48b9-4326-a204-634d9409bde8", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:54:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1cab8078-1594-4d7a-8f57-f80940e8c44f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200803T085415Z:1cab8078-1594-4d7a-8f57-f80940e8c44f", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1cab8078-1594-4d7a-8f57-f80940e8c44f", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:54:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11468", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bda8f1d2-8027-40bd-944a-05948938146d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085431Z:bda8f1d2-8027-40bd-944a-05948938146d", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "bda8f1d2-8027-40bd-944a-05948938146d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:54:48 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11385", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a1672f67-6636-4792-a21e-03f6a9f911b5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085448Z:a1672f67-6636-4792-a21e-03f6a9f911b5", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a1672f67-6636-4792-a21e-03f6a9f911b5", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:55:03 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11467", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7f6fb991-d189-4a8c-b33b-c70b663cf1a9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085504Z:7f6fb991-d189-4a8c-b33b-c70b663cf1a9", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "7f6fb991-d189-4a8c-b33b-c70b663cf1a9", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:55:20 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11466", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "92067546-0ee4-4f85-99a7-80956f1601ae", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085520Z:92067546-0ee4-4f85-99a7-80956f1601ae", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "92067546-0ee4-4f85-99a7-80956f1601ae", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:55:36 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11498", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a014a2f6-ce04-4b14-b766-3acaf6ccba80", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085536Z:a014a2f6-ce04-4b14-b766-3acaf6ccba80", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a014a2f6-ce04-4b14-b766-3acaf6ccba80", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:55:52 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11497", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5e1b238a-5b73-490e-8dd1-d15ca57531f6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085552Z:5e1b238a-5b73-490e-8dd1-d15ca57531f6", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5e1b238a-5b73-490e-8dd1-d15ca57531f6", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:56:08 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11479", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2eaab74e-d48a-44da-9b97-6c9dc58ae232", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085609Z:2eaab74e-d48a-44da-9b97-6c9dc58ae232", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2eaab74e-d48a-44da-9b97-6c9dc58ae232", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:56:24 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11464", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "968f6ee2-768d-4d57-9b5b-88c7f926e931", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085625Z:968f6ee2-768d-4d57-9b5b-88c7f926e931", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "968f6ee2-768d-4d57-9b5b-88c7f926e931", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:56:40 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11495", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f5692ba0-67bd-44ff-93cc-2e2777f3accc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085641Z:f5692ba0-67bd-44ff-93cc-2e2777f3accc", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f5692ba0-67bd-44ff-93cc-2e2777f3accc", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:56:56 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11477", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fe0af979-2c33-42f3-90bc-8cf43eb7e171", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085657Z:fe0af979-2c33-42f3-90bc-8cf43eb7e171", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "fe0af979-2c33-42f3-90bc-8cf43eb7e171", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:57:12 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11382", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b79483d4-aeac-4831-848d-505ea71e3ea3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085713Z:b79483d4-aeac-4831-848d-505ea71e3ea3", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b79483d4-aeac-4831-848d-505ea71e3ea3", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:57:28 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11474", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c5ca11a-4acc-4dce-a340-50c2edf7c5c1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085729Z:0c5ca11a-4acc-4dce-a340-50c2edf7c5c1", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0c5ca11a-4acc-4dce-a340-50c2edf7c5c1", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:57:46 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11494", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "354c6a2a-c3d7-43fb-88fb-d104581f2228", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085746Z:354c6a2a-c3d7-43fb-88fb-d104581f2228", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "354c6a2a-c3d7-43fb-88fb-d104581f2228", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:58:01 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11380", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ee41a59f-130c-440e-94a5-80e822fa6b05", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085802Z:ee41a59f-130c-440e-94a5-80e822fa6b05", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ee41a59f-130c-440e-94a5-80e822fa6b05", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:58:18 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11460", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ec282538-a5cc-49a2-a3ef-b253a8ee9f4d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085818Z:ec282538-a5cc-49a2-a3ef-b253a8ee9f4d", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec282538-a5cc-49a2-a3ef-b253a8ee9f4d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1VQU1TSToyRFJHOjJEMjQ0MTIxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.3; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Mon, 03 Aug 2020 08:58:34 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11378", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d1414982-2c4e-4bd6-918b-189b2fa26faa", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200803T085834Z:d1414982-2c4e-4bd6-918b-189b2fa26faa", - "connection" : "keep-alive", - "cache-control" : "no-cache", - "x-ms-request-id" : "d1414982-2c4e-4bd6-918b-189b2fa26faa", - "Body" : "" - } - } ], - "variables" : [ "uamsi-rg-179548", "uamsi-rg-244121", "id3a89571676", "vm1cb8455649a", "pip1ed3617344", "7ef561d1-99e5-4ce4-9476-82f58744bdf9", "151bbc6a-cb40-4465-a151-3dc7b24189b1", "nic7404235937f", "vnet78317bad58", "pip03466042" ] -} diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachine.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachine.json deleted file mode 100644 index 52cf85f171bc..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachine.json +++ /dev/null @@ -1,1354 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0084062?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "97dd85ec-0911-42bb-bcb2-052bb254e57f", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "6e410f6f-3f21-4386-863d-960782c5c103", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:6e410f6f-3f21-4386-863d-960782c5c103", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "6e410f6f-3f21-4386-863d-960782c5c103", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062\",\"name\":\"rgcomv0084062\",\"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/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2c0499b-1a36-4090-8f93-ee3b8ef28e95", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "bef41495-0b54-49d9-9e1c-12c3916eaa26", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172211Z:bef41495-0b54-49d9-9e1c-12c3916eaa26", - "Expires" : "-1", - "Content-Length" : "245", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b8d9baa9-6f8b-4f47-8bdc-4f56b95fcfbc?api-version=2021-11-01", - "x-ms-request-id" : "b8d9baa9-6f8b-4f47-8bdc-4f56b95fcfbc", - "Body" : "{\r\n \"name\": \"dsk-48642de5\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "e2c0499b-1a36-4090-8f93-ee3b8ef28e95", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b8d9baa9-6f8b-4f47-8bdc-4f56b95fcfbc?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b8d9baa9-6f8b-4f47-8bdc-4f56b95fcfbc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d6b26bb-ddf6-473d-be59-d6e340b92905" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "97a0b256-c493-4cf3-bcbb-72706b227e15", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172213Z:97a0b256-c493-4cf3-bcbb-72706b227e15", - "Expires" : "-1", - "Content-Length" : "1052", - "x-ms-request-id" : "93ab5d50-3693-4cbb-a71c-cf9ed2586b2b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:11.3299283+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:11.4862189+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-48642de5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:11.3299283+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"922d780a-bb41-49cb-a59f-07348ff188e0\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"b8d9baa9-6f8b-4f47-8bdc-4f56b95fcfbc\"\r\n}", - "x-ms-client-request-id" : "4d6b26bb-ddf6-473d-be59-d6e340b92905", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "968ecdd4-374e-4fe7-9476-a11e7327366b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "7a56e944-094f-44c3-812f-f7661bd44174", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:7a56e944-094f-44c3-812f-f7661bd44174", - "Expires" : "-1", - "Content-Length" : "827", - "x-ms-request-id" : "1aa16115-aecc-44d5-b52c-6ee217099a90", - "Body" : "{\r\n \"name\": \"dsk-48642de5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:11.3299283+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"922d780a-bb41-49cb-a59f-07348ff188e0\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "968ecdd4-374e-4fe7-9476-a11e7327366b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0084062?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4d0b520-57a8-49d4-ba0d-d6834a148e86", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "86c1f277-59eb-4a80-a783-c45cb30a16ec", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:86c1f277-59eb-4a80-a783-c45cb30a16ec", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "86c1f277-59eb-4a80-a783-c45cb30a16ec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062\",\"name\":\"rgcomv0084062\",\"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/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f707945f-93b8-484a-8c3b-54fdd8897bb8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "a8314aa2-436b-471f-8307-d09110b4183b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:a8314aa2-436b-471f-8307-d09110b4183b", - "Expires" : "-1", - "Content-Length" : "246", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9d1c259f-474f-4ba4-bfdf-89e256645f88?api-version=2021-11-01", - "x-ms-request-id" : "9d1c259f-474f-4ba4-bfdf-89e256645f88", - "Body" : "{\r\n \"name\": \"dsk-75110867\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "f707945f-93b8-484a-8c3b-54fdd8897bb8", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9d1c259f-474f-4ba4-bfdf-89e256645f88?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "806505e9-c24d-4bfa-a6b8-f3726bbd64e1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "72e94a92-5d67-4653-a3f2-7b3236a16063", - "x-ms-arm-service-request-id" : "9280ae8a-f906-4876-9ad9-82c0cbc4c8c3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:72e94a92-5d67-4653-a3f2-7b3236a16063", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/921ac189-31bf-4ecd-88b4-7c11266dc840?api-version=2023-02-01", - "x-ms-request-id" : "921ac189-31bf-4ecd-88b4-7c11266dc840", - "Body" : "{\r\n \"name\": \"vnet71377e30ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee\",\r\n \"etag\": \"W/\\\"e3c158ca-fbfc-49c6-a269-8d3c33e4c5e0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ce9e29ce-b739-44ba-8f0d-11eee73f1385\",\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/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e3c158ca-fbfc-49c6-a269-8d3c33e4c5e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "806505e9-c24d-4bfa-a6b8-f3726bbd64e1", - "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/DiskOperations/9d1c259f-474f-4ba4-bfdf-89e256645f88?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "14765241-496e-402d-b13f-c3997cd82ff2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "73f5ac1d-2093-45e2-8ded-dfeeb935ec59", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:73f5ac1d-2093-45e2-8ded-dfeeb935ec59", - "Expires" : "-1", - "Content-Length" : "1054", - "x-ms-request-id" : "37dbed30-f7d9-4df6-b3dc-0c6cd7e3d21e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:16.5956023+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:16.7049801+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-75110867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.5956023+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"ac56b6aa-f46f-401f-b5bf-2ace4f932755\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"9d1c259f-474f-4ba4-bfdf-89e256645f88\"\r\n}", - "x-ms-client-request-id" : "14765241-496e-402d-b13f-c3997cd82ff2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3855cfee-b2cc-4e21-840f-ac0a3776d3ac" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "afba7a8f-4ea7-4388-a833-adc7c88b640f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:afba7a8f-4ea7-4388-a833-adc7c88b640f", - "Expires" : "-1", - "Content-Length" : "829", - "x-ms-request-id" : "76399c11-a028-4911-ae62-88855bb6036e", - "Body" : "{\r\n \"name\": \"dsk-75110867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.5956023+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"ac56b6aa-f46f-401f-b5bf-2ace4f932755\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "3855cfee-b2cc-4e21-840f-ac0a3776d3ac", - "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/921ac189-31bf-4ecd-88b4-7c11266dc840?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "871d665a-bbd3-446d-807b-b4954ce945c7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:20 GMT", - "x-ms-correlation-request-id" : "cc5c134c-6fa1-44cc-9250-b1091c851c6b", - "x-ms-arm-service-request-id" : "04937a0d-ac7c-494d-8004-cc083b8d4fdd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172221Z:cc5c134c-6fa1-44cc-9250-b1091c851c6b", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "fd43a0e6-fdbf-47ee-90da-ada54c99ac7b", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "871d665a-bbd3-446d-807b-b4954ce945c7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a121ac05-7cb1-4d9e-a73b-a2f8dfaf297d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:21 GMT", - "x-ms-correlation-request-id" : "8ec79c53-5b2e-4144-9c85-11882e802597", - "x-ms-arm-service-request-id" : "b6ab3998-0a90-453b-8f04-360a78380860", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"4e515193-102d-42d8-8631-89dbb742432c\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172221Z:8ec79c53-5b2e-4144-9c85-11882e802597", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "fc9067fc-3701-4410-9f04-0b0402eedaa1", - "Body" : "{\r\n \"name\": \"vnet71377e30ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee\",\r\n \"etag\": \"W/\\\"4e515193-102d-42d8-8631-89dbb742432c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce9e29ce-b739-44ba-8f0d-11eee73f1385\",\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/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4e515193-102d-42d8-8631-89dbb742432c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "a121ac05-7cb1-4d9e-a73b-a2f8dfaf297d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c8cc9bd-e047-4cd8-8a7b-533754e5c737", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:24 GMT", - "x-ms-correlation-request-id" : "8e476eaa-9585-41fa-8b32-f97a3b9abcbb", - "x-ms-arm-service-request-id" : "95e7d1ed-5a08-4c3b-8f86-4f9eee2af8c3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172224Z:8e476eaa-9585-41fa-8b32-f97a3b9abcbb", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/59b7477d-c77f-42ef-87ba-6872b31a4f9d?api-version=2023-02-01", - "x-ms-request-id" : "59b7477d-c77f-42ef-87ba-6872b31a4f9d", - "Body" : "{\r\n \"name\": \"nic50606529fbf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\r\n \"etag\": \"W/\\\"06d8ad1a-353f-4727-be4b-a2794b15370d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f387d075-b7e7-4ea1-bb59-8284288bdf20\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"06d8ad1a-353f-4727-be4b-a2794b15370d\\\"\",\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/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee/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\": \"zyuz3trzw43ejdynchxoopytqf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "1c8cc9bd-e047-4cd8-8a7b-533754e5c737", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "50cc06bc-3873-4de5-a24f-42ee113d0106", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:27 GMT", - "x-ms-correlation-request-id" : "b74a4793-a18e-49e9-b90c-5d8bdcc8131b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:b74a4793-a18e-49e9-b90c-5d8bdcc8131b", - "Expires" : "-1", - "Content-Length" : "2810", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc?api-version=2021-11-01", - "x-ms-request-id" : "0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "50cc06bc-3873-4de5-a24f-42ee113d0106", - "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/0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9de1f126-92df-4995-9b6d-e51b87298ec5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "79dee6de-c4f6-4247-a2c1-6a6b816ef08d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172238Z:79dee6de-c4f6-4247-a2c1-6a6b816ef08d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "518a8f40-72e3-412f-96d4-1d33be14487b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:26.5527876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc\"\r\n}", - "x-ms-client-request-id" : "9de1f126-92df-4995-9b6d-e51b87298ec5", - "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/0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6f3b36e-6232-45f3-a9a4-b64b7806e72c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11915", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:27 GMT", - "x-ms-correlation-request-id" : "98715d55-1dbc-4891-903f-6204e4962bbe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172328Z:98715d55-1dbc-4891-903f-6204e4962bbe", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "f9c254a1-96f9-4144-8189-cb0a7df1531e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:26.5527876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc\"\r\n}", - "x-ms-client-request-id" : "d6f3b36e-6232-45f3-a9a4-b64b7806e72c", - "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/0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d552396a-bef9-4b20-958b-df7c4c82fe18" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11911", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:58 GMT", - "x-ms-correlation-request-id" : "72e207db-488d-4cf6-8f19-0b0673c97310", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172358Z:72e207db-488d-4cf6-8f19-0b0673c97310", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "f7010d67-83a7-4ef3-9f0d-03027520000b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:26.5527876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc\"\r\n}", - "x-ms-client-request-id" : "d552396a-bef9-4b20-958b-df7c4c82fe18", - "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/0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5230be38-490e-4455-8ddf-5c723b4c146b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:28 GMT", - "x-ms-correlation-request-id" : "c77d4165-1347-40d5-9611-015f3ba02d9f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14924,Microsoft.Compute/GetOperation30Min;29924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:c77d4165-1347-40d5-9611-015f3ba02d9f", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "2b42f5ff-bd3a-4052-92b2-e1c09e994dd6", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:26.5527876+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:01.3221501+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0f19d730-d0bd-4b79-a3ce-0b924bf5e6fc\"\r\n}", - "x-ms-client-request-id" : "5230be38-490e-4455-8ddf-5c723b4c146b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8613829a-3de3-4dae-b0e3-9b5a0006e68a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11819", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:29 GMT", - "x-ms-correlation-request-id" : "20d656fc-c3af-4842-bc54-a4882a41fee1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3953,Microsoft.Compute/LowCostGet30Min;31953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:20d656fc-c3af-4842-bc54-a4882a41fee1", - "Expires" : "-1", - "Content-Length" : "3335", - "x-ms-request-id" : "86434328-3334-4d69-9a04-764a4c34d03b", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "8613829a-3de3-4dae-b0e3-9b5a0006e68a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3062a179-dd26-45d8-b82d-9098fe7d0daf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:33 GMT", - "x-ms-correlation-request-id" : "27d10316-7401-4d71-9c31-12ed4c07a092", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;216,Microsoft.Compute/PutVM30Min;1176", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172433Z:27d10316-7401-4d71-9c31-12ed4c07a092", - "Expires" : "-1", - "Content-Length" : "3389", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f1782b9-f9ac-4514-9a5a-50f38ff8c4e3?api-version=2021-11-01", - "x-ms-request-id" : "2f1782b9-f9ac-4514-9a5a-50f38ff8c4e3", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3062a179-dd26-45d8-b82d-9098fe7d0daf", - "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/2f1782b9-f9ac-4514-9a5a-50f38ff8c4e3?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0572fa09-cdcc-4a9f-8158-99958faed00b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:03 GMT", - "x-ms-correlation-request-id" : "8dbb7c84-f7ec-471a-9727-3d2950e11bce", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14893,Microsoft.Compute/GetOperation30Min;29893", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172503Z:8dbb7c84-f7ec-471a-9727-3d2950e11bce", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "cf3c9457-77c0-4f38-85c7-488f0e1795b0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6358543+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:30.7920934+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f1782b9-f9ac-4514-9a5a-50f38ff8c4e3\"\r\n}", - "x-ms-client-request-id" : "0572fa09-cdcc-4a9f-8158-99958faed00b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f9e6b4e-607f-48c6-97e4-d52aaf9a986e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11884", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:03 GMT", - "x-ms-correlation-request-id" : "08fcdf48-42d0-428e-a681-84e6386b4168", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3939,Microsoft.Compute/LowCostGet30Min;31939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172504Z:08fcdf48-42d0-428e-a681-84e6386b4168", - "Expires" : "-1", - "Content-Length" : "3390", - "x-ms-request-id" : "e74ab4e6-a1da-421d-bee1-d3c70cf61ef4", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "8f9e6b4e-607f-48c6-97e4-d52aaf9a986e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "254f4ac3-1e6a-45d7-8ed5-1a194fbd7daf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:07 GMT", - "x-ms-correlation-request-id" : "bc4f62ce-dda0-415a-aa24-675053f328c0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;219,Microsoft.Compute/PutVM30Min;1171", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172508Z:bc4f62ce-dda0-415a-aa24-675053f328c0", - "Expires" : "-1", - "Content-Length" : "3658", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cc487f6e-0c5f-4391-97ab-1060d9ed1cc9?api-version=2021-11-01", - "x-ms-request-id" : "cc487f6e-0c5f-4391-97ab-1060d9ed1cc9", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "254f4ac3-1e6a-45d7-8ed5-1a194fbd7daf", - "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/cc487f6e-0c5f-4391-97ab-1060d9ed1cc9?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1916e933-91b8-4877-b937-4cc3f1ac5867" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:37 GMT", - "x-ms-correlation-request-id" : "c309803d-cc65-44e2-8bc3-ded4827836cd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14881,Microsoft.Compute/GetOperation30Min;29863", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172538Z:c309803d-cc65-44e2-8bc3-ded4827836cd", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e3014d8f-92e7-4c54-95cd-e237dc1692fb", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:05.2465675+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:14.4031864+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc487f6e-0c5f-4391-97ab-1060d9ed1cc9\"\r\n}", - "x-ms-client-request-id" : "1916e933-91b8-4877-b937-4cc3f1ac5867", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a5da364-1879-4db5-9ab8-d59294cf7246" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11777", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:37 GMT", - "x-ms-correlation-request-id" : "29c138ab-7a24-4f71-b7e4-c040ba195f5c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3927,Microsoft.Compute/LowCostGet30Min;31924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172538Z:29c138ab-7a24-4f71-b7e4-c040ba195f5c", - "Expires" : "-1", - "Content-Length" : "3920", - "x-ms-request-id" : "307e3500-d2f7-49d5-ab37-b4b400d4aa55", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "6a5da364-1879-4db5-9ab8-d59294cf7246", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d9fc0bc-0785-43f6-9f5a-03ad6d017599", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:41 GMT", - "x-ms-correlation-request-id" : "553155a9-0b49-4e99-9dce-6a3a7d2efbea", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1169", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172542Z:553155a9-0b49-4e99-9dce-6a3a7d2efbea", - "Expires" : "-1", - "Content-Length" : "3918", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8dc7933b-309c-4cfb-aa8b-5c4a258a648e?api-version=2021-11-01", - "x-ms-request-id" : "8dc7933b-309c-4cfb-aa8b-5c4a258a648e", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-75110867\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-75110867\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "1d9fc0bc-0785-43f6-9f5a-03ad6d017599", - "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/8dc7933b-309c-4cfb-aa8b-5c4a258a648e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d490c7e-3c27-4d21-84a4-fcae06e76c52" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:12 GMT", - "x-ms-correlation-request-id" : "0b8c8944-abdb-42f6-a134-a4dcbebb7113", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14870,Microsoft.Compute/GetOperation30Min;29830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172612Z:0b8c8944-abdb-42f6-a134-a4dcbebb7113", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "97824b0f-66ee-4884-8b9d-7df3ff26776a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:39.7950445+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:51.1705759+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8dc7933b-309c-4cfb-aa8b-5c4a258a648e\"\r\n}", - "x-ms-client-request-id" : "5d490c7e-3c27-4d21-84a4-fcae06e76c52", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa365fd6-ca34-4102-aa02-56a482d9690b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11766", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:12 GMT", - "x-ms-correlation-request-id" : "5d34c610-4bb2-418b-a35b-694b78de02bf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3929,Microsoft.Compute/LowCostGet30Min;31910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172613Z:5d34c610-4bb2-418b-a35b-694b78de02bf", - "Expires" : "-1", - "Content-Length" : "3464", - "x-ms-request-id" : "74ee37c5-a6a9-4679-8136-3a976656a46a", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "aa365fd6-ca34-4102-aa02-56a482d9690b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a/restart?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cfe8535-a19a-48ec-94ae-737ab366ff00", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:13 GMT", - "x-ms-correlation-request-id" : "f4b649f6-093d-4c0b-aa8f-f749f4b6e5ba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;231,Microsoft.Compute/UpdateVM30Min;1189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172613Z:f4b649f6-093d-4c0b-aa8f-f749f4b6e5ba", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81c89c25-a3ad-47e4-acf7-23df45d99c20?api-version=2021-11-01", - "x-ms-request-id" : "81c89c25-a3ad-47e4-acf7-23df45d99c20", - "x-ms-client-request-id" : "5cfe8535-a19a-48ec-94ae-737ab366ff00", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81c89c25-a3ad-47e4-acf7-23df45d99c20?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/81c89c25-a3ad-47e4-acf7-23df45d99c20?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbc74def-c4d5-464f-877b-3d46155d51d3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11719", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:43 GMT", - "x-ms-correlation-request-id" : "46adaee6-c616-42f9-b152-cf863f23482e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14870,Microsoft.Compute/GetOperation30Min;29812", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172643Z:46adaee6-c616-42f9-b152-cf863f23482e", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "230fba35-9cc5-4971-b0ec-8dca2df94df1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:13.4216194+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:13.640358+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"81c89c25-a3ad-47e4-acf7-23df45d99c20\"\r\n}", - "x-ms-client-request-id" : "dbc74def-c4d5-464f-877b-3d46155d51d3", - "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/81c89c25-a3ad-47e4-acf7-23df45d99c20?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e80d119-0e23-4d1f-9ac2-4f71f987004e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:44 GMT", - "x-ms-correlation-request-id" : "327a3f6b-dce0-4f6d-a896-a060a9cbf6ad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14869,Microsoft.Compute/GetOperation30Min;29811", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172644Z:327a3f6b-dce0-4f6d-a896-a060a9cbf6ad", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "b07ed991-b846-4443-ad1f-9703d3f4b830", - "x-ms-client-request-id" : "1e80d119-0e23-4d1f-9ac2-4f71f987004e" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9baba274-26c4-4d04-b09f-32251f91409a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:44 GMT", - "x-ms-correlation-request-id" : "2236f355-198f-4e02-b71a-27ad0549f068", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3935,Microsoft.Compute/LowCostGet30Min;31903", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172644Z:2236f355-198f-4e02-b71a-27ad0549f068", - "Expires" : "-1", - "Content-Length" : "5892", - "x-ms-request-id" : "e0d59e69-c48e-4fe3-a4c9-4dd360d28a05", - "Body" : "{\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and processing the extensions.\",\r\n \"time\": \"2021-01-29T17:26:36+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:22:27.8966221+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dsk-48642de5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:22:27.8966221+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:22:27.8966221+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:25:06.1528538+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\": \"2021-01-29T17:26:13.6247343+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n }\r\n}", - "x-ms-client-request-id" : "9baba274-26c4-4d04-b09f-32251f91409a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a/powerOff?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b94df234-0f48-4721-976c-652993978f27", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:44 GMT", - "x-ms-correlation-request-id" : "4891ec41-72de-48cf-999c-30369a970b37", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;230,Microsoft.Compute/UpdateVM30Min;1187", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172645Z:4891ec41-72de-48cf-999c-30369a970b37", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ccde4ab0-0094-4cbb-8543-730a4e2be9b8?api-version=2021-11-01", - "x-ms-request-id" : "ccde4ab0-0094-4cbb-8543-730a4e2be9b8", - "x-ms-client-request-id" : "b94df234-0f48-4721-976c-652993978f27", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ccde4ab0-0094-4cbb-8543-730a4e2be9b8?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ccde4ab0-0094-4cbb-8543-730a4e2be9b8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c987771f-3a65-4fca-97f2-c1ea5af86153" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:14 GMT", - "x-ms-correlation-request-id" : "9cd49a42-747b-4a6e-ac70-50213b9bed16", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14874,Microsoft.Compute/GetOperation30Min;29795", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172715Z:9cd49a42-747b-4a6e-ac70-50213b9bed16", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "87750533-e415-4295-9114-8bc6190ca6d1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:44.8604325+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:56.7984204+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ccde4ab0-0094-4cbb-8543-730a4e2be9b8\"\r\n}", - "x-ms-client-request-id" : "c987771f-3a65-4fca-97f2-c1ea5af86153", - "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/ccde4ab0-0094-4cbb-8543-730a4e2be9b8?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db73c039-3720-412f-b681-c441f3028b08" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11844", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:14 GMT", - "x-ms-correlation-request-id" : "33545291-8b83-44c7-8fa7-c6076b35d482", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14873,Microsoft.Compute/GetOperation30Min;29794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172715Z:33545291-8b83-44c7-8fa7-c6076b35d482", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "6dcbd740-7293-4363-a6eb-d9300e8820d9", - "x-ms-client-request-id" : "db73c039-3720-412f-b681-c441f3028b08" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7e4dcaa-ca96-42bc-b376-ab79ba38a9c5", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:15 GMT", - "x-ms-correlation-request-id" : "de3a7616-055d-4fe5-b3d0-49b920dfcf7e", - "x-ms-arm-service-request-id" : "f7e830c9-2455-4101-b053-f55ad369d546", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"5daa04cf-9dd2-49cd-8e16-3e14e6a4508c\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172715Z:de3a7616-055d-4fe5-b3d0-49b920dfcf7e", - "Expires" : "-1", - "Content-Length" : "1907", - "x-ms-request-id" : "7ed97c76-bdec-436b-92f6-b0b69afc524c", - "Body" : "{\r\n \"name\": \"nic50606529fbf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\r\n \"etag\": \"W/\\\"5daa04cf-9dd2-49cd-8e16-3e14e6a4508c\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f387d075-b7e7-4ea1-bb59-8284288bdf20\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5daa04cf-9dd2-49cd-8e16-3e14e6a4508c\\\"\",\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/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee/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\": \"zyuz3trzw43ejdynchxoopytqf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-22-48-05-D8-B6\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "a7e4dcaa-ca96-42bc-b376-ab79ba38a9c5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1caf2cee-84cc-4993-9604-f48f53dcc55b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11718", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:15 GMT", - "x-ms-correlation-request-id" : "ca651d4f-faad-4681-8cdc-3f32191afcfc", - "x-ms-arm-service-request-id" : "7c9948f4-1a25-44d6-ae59-e04e5a3f5f6a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"c9983865-d6d8-42b8-b987-1bf9bbd4a36e\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172716Z:ca651d4f-faad-4681-8cdc-3f32191afcfc", - "Expires" : "-1", - "Content-Length" : "1609", - "x-ms-request-id" : "db3c9e38-80bc-4c47-8040-048016038b46", - "Body" : "{\r\n \"name\": \"vnet71377e30ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee\",\r\n \"etag\": \"W/\\\"c9983865-d6d8-42b8-b987-1bf9bbd4a36e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce9e29ce-b739-44ba-8f0d-11eee73f1385\",\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/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c9983865-d6d8-42b8-b987-1bf9bbd4a36e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "1caf2cee-84cc-4993-9604-f48f53dcc55b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic07834aa057b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "426b9bc6-8c48-45ec-8e86-cd1ea8fdc0a8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:27:19 GMT", - "x-ms-correlation-request-id" : "92b7a212-5117-4f6a-bf07-df5bff5073b0", - "x-ms-arm-service-request-id" : "20d28cc8-4ee3-4a5b-a425-9d4c3c8ebdba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172719Z:92b7a212-5117-4f6a-bf07-df5bff5073b0", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5a1a08f-ecfb-4cd8-9922-4049bc1b7ed4?api-version=2023-02-01", - "x-ms-request-id" : "b5a1a08f-ecfb-4cd8-9922-4049bc1b7ed4", - "Body" : "{\r\n \"name\": \"nic07834aa057b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic07834aa057b\",\r\n \"etag\": \"W/\\\"ef60dfd0-c9f1-4fdc-9135-ff2cc426bbe6\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5fe5e700-e335-423b-a5ce-20b9adf420e1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic07834aa057b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ef60dfd0-c9f1-4fdc-9135-ff2cc426bbe6\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Network/virtualNetworks/vnet71377e30ee/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\": \"zyuz3trzw43ejdynchxoopytqf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "426b9bc6-8c48-45ec-8e86-cd1ea8fdc0a8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/lvm89066333?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c137b99-bd19-452c-8dc5-d6162eb304e2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:27:25 GMT", - "x-ms-correlation-request-id" : "f5dff93a-d139-4743-93a8-3a16d77012cc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1160", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172725Z:f5dff93a-d139-4743-93a8-3a16d77012cc", - "Expires" : "-1", - "Content-Length" : "1598", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f6a0043b-6f45-493a-8a91-e7338169968c?api-version=2021-11-01", - "x-ms-request-id" : "f6a0043b-6f45-493a-8a91-e7338169968c", - "Body" : "{\r\n \"name\": \"lvm89066333\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/lvm89066333\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db9ed4b2-8725-450d-99c2-a1e6084164fa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm89066333\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic07834aa057b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "8c137b99-bd19-452c-8dc5-d6162eb304e2", - "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/f6a0043b-6f45-493a-8a91-e7338169968c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1881af9-84cf-4cd7-b466-1e0aa0fcaa44" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:35 GMT", - "x-ms-correlation-request-id" : "af29d249-68fc-4a40-b443-69c6b062254a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14891,Microsoft.Compute/GetOperation30Min;29789", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172735Z:af29d249-68fc-4a40-b443-69c6b062254a", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "daaf0bf4-25da-47d0-afa0-7a113bed858c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:23.5962962+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f6a0043b-6f45-493a-8a91-e7338169968c\"\r\n}", - "x-ms-client-request-id" : "d1881af9-84cf-4cd7-b466-1e0aa0fcaa44", - "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/f6a0043b-6f45-493a-8a91-e7338169968c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f891f266-17da-47cc-a485-2b28dce31ce4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11879", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:10 GMT", - "x-ms-correlation-request-id" : "61eed4b6-7d2e-4355-8adf-7c8632540bff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14899,Microsoft.Compute/GetOperation30Min;29770", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172810Z:61eed4b6-7d2e-4355-8adf-7c8632540bff", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "2dcc22d1-01e4-44c2-aa03-4e466e710bb8", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:23.5962962+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:44.4096961+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f6a0043b-6f45-493a-8a91-e7338169968c\"\r\n}", - "x-ms-client-request-id" : "f891f266-17da-47cc-a485-2b28dce31ce4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/lvm89066333?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fffd518-da56-4a13-b984-f4433a08221e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:10 GMT", - "x-ms-correlation-request-id" : "b4b28503-7f24-4e64-b036-5ea6172dd040", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172811Z:b4b28503-7f24-4e64-b036-5ea6172dd040", - "Expires" : "-1", - "Content-Length" : "1862", - "x-ms-request-id" : "7942df1f-1763-44a4-9c98-7b2dbd2c531a", - "Body" : "{\r\n \"name\": \"lvm89066333\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/lvm89066333\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db9ed4b2-8725-450d-99c2-a1e6084164fa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm89066333_OsDisk_1_02523313d6da4afc9544c90b45e96be3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/lvm89066333_OsDisk_1_02523313d6da4afc9544c90b45e96be3\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm89066333\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic07834aa057b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "0fffd518-da56-4a13-b984-f4433a08221e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7f30efb-ee35-4fee-9da3-cb1fc8d18294", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11826", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:10 GMT", - "x-ms-correlation-request-id" : "9d1adb39-a3d2-49c5-870c-7cb977c95a2b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;698", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172811Z:9d1adb39-a3d2-49c5-870c-7cb977c95a2b", - "Expires" : "-1", - "Content-Length" : "5914", - "x-ms-request-id" : "dfcbc639-b66c-4ffa-8880-330b2b582fa6", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvm89066333\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/lvm89066333\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db9ed4b2-8725-450d-99c2-a1e6084164fa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm89066333_OsDisk_1_02523313d6da4afc9544c90b45e96be3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/lvm89066333_OsDisk_1_02523313d6da4afc9544c90b45e96be3\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm89066333\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic07834aa057b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvm9311415a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"6d185cb6-026e-4e56-90ba-b784b9b24b4b\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_OsDisk_1_4f64c8953ee44b3fb92207377be8a19b\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-48642de5\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/dsk-48642de5\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk4_d9bcf3acffac4c65aed9fc0267d12188\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/disks/wvm9311415a_disk5_457fdaf1080b47b3a50b644880f80ede\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm9311415a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv0084062/providers/Microsoft.Network/networkInterfaces/nic50606529fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "b7f30efb-ee35-4fee-9da3-cb1fc8d18294", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv0084062/providers/Microsoft.Compute/virtualMachines/wvm9311415a?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbb87793-296d-4f95-bb4f-613f9b4548d8", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:11 GMT", - "x-ms-correlation-request-id" : "c23228dc-af6c-4615-b9d4-654758939a57", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;231,Microsoft.Compute/DeleteVM30Min;1179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172812Z:c23228dc-af6c-4615-b9d4-654758939a57", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cad0cc42-7d2c-4d85-8647-5023ca61275f?api-version=2021-11-01", - "x-ms-request-id" : "cad0cc42-7d2c-4d85-8647-5023ca61275f", - "x-ms-client-request-id" : "bbb87793-296d-4f95-bb4f-613f9b4548d8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cad0cc42-7d2c-4d85-8647-5023ca61275f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cad0cc42-7d2c-4d85-8647-5023ca61275f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "014923e9-f2a7-44c5-8952-bee1e3a0a2e7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11905", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:22 GMT", - "x-ms-correlation-request-id" : "051d48e9-82a6-41f0-b1b7-2d4b9fd0a7bb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14896,Microsoft.Compute/GetOperation30Min;29767", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172822Z:051d48e9-82a6-41f0-b1b7-2d4b9fd0a7bb", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "cf570042-da2e-4f22-95f6-bb7d36f0305e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:12.0045355+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cad0cc42-7d2c-4d85-8647-5023ca61275f\"\r\n}", - "x-ms-client-request-id" : "014923e9-f2a7-44c5-8952-bee1e3a0a2e7", - "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/cad0cc42-7d2c-4d85-8647-5023ca61275f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c04ca0f1-9e73-4246-9424-4bb8d86d2068" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:52 GMT", - "x-ms-correlation-request-id" : "dbd479b7-17b3-4cb3-8125-2d06a288bfb6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14912,Microsoft.Compute/GetOperation30Min;29751", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172852Z:dbd479b7-17b3-4cb3-8125-2d06a288bfb6", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "acfe54c0-138c-4abe-9412-f7fc482862f6", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:12.0045355+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:41.7537912+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cad0cc42-7d2c-4d85-8647-5023ca61275f\"\r\n}", - "x-ms-client-request-id" : "c04ca0f1-9e73-4246-9424-4bb8d86d2068", - "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/cad0cc42-7d2c-4d85-8647-5023ca61275f?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3667652-eb53-4da1-831c-80b69fb154d9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:52 GMT", - "x-ms-correlation-request-id" : "a83536a0-0f86-4977-8c23-24d091aaa1fb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29750", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172852Z:a83536a0-0f86-4977-8c23-24d091aaa1fb", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "8b0df21a-89ed-4fc1-a869-8dac3a25bfb4", - "x-ms-client-request-id" : "d3667652-eb53-4da1-831c-80b69fb154d9" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv0084062?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ba32d4e-9786-44e5-ae35-41566625621f", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:56 GMT", - "x-ms-correlation-request-id" : "ba7fd19e-f719-4347-a6cd-32bab8b890a2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172857Z:ba7fd19e-f719-4347-a6cd-32bab8b890a2", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "ba7fd19e-f719-4347-a6cd-32bab8b890a2", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDg0MDYyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "wvm9311415a", "lvm89066333", "rgcomv0084062", "dsk-75110867", "dsk-48642de5", "nic50606529fbf", "vnet71377e30ee", "nic07834aa057b" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineAsync.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineAsync.json deleted file mode 100644 index 89be29ac8b79..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineAsync.json +++ /dev/null @@ -1,1347 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv00161e9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "05131b43-f31f-4117-a7fa-d2a6de129d82", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "4e5aad57-ced9-45c4-94ae-f2ca4e6f28df", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:4e5aad57-ced9-45c4-94ae-f2ca4e6f28df", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "4e5aad57-ced9-45c4-94ae-f2ca4e6f28df", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9\",\"name\":\"rgcomv00161e9\",\"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/rgcomv00161e9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aff7fcb3-b834-4bc0-89ad-f1166eb883af", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:05 GMT", - "x-ms-correlation-request-id" : "b71b2453-d443-4b57-aba4-8aedf38408ad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:b71b2453-d443-4b57-aba4-8aedf38408ad", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "b71b2453-d443-4b57-aba4-8aedf38408ad", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9\",\"name\":\"rgcomv00161e9\",\"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/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "49f1df8f-41d8-4501-abbc-95509be4091b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "15b3f69d-376d-4e2a-9750-8eb690dac242", - "x-ms-arm-service-request-id" : "1f83cbba-58db-4030-9a32-de8f17f2f366", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172211Z:15b3f69d-376d-4e2a-9750-8eb690dac242", - "Expires" : "-1", - "Content-Length" : "1346", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/deeabc7f-5ff8-4f20-a69e-e2894d0745d8?api-version=2023-02-01", - "x-ms-request-id" : "deeabc7f-5ff8-4f20-a69e-e2894d0745d8", - "Body" : "{\r\n \"name\": \"network38605f197\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197\",\r\n \"etag\": \"W/\\\"39475d02-3ede-490a-bccd-13afba138025\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c9e3c368-4c0a-4d3e-83c2-2a02e782772b\",\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/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197/subnets/subnet1\",\r\n \"etag\": \"W/\\\"39475d02-3ede-490a-bccd-13afba138025\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "49f1df8f-41d8-4501-abbc-95509be4091b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8364c4cb-93d8-4076-8543-0cf321dcb476", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "bb1d9b4b-71f3-4d64-ae90-d953b6a0beaa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172212Z:bb1d9b4b-71f3-4d64-ae90-d953b6a0beaa", - "Expires" : "-1", - "Content-Length" : "245", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0e270301-2c24-4fd5-9731-2d1e5eaf6020?api-version=2021-11-01", - "x-ms-request-id" : "0e270301-2c24-4fd5-9731-2d1e5eaf6020", - "Body" : "{\r\n \"name\": \"dsk-20641526\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "8364c4cb-93d8-4076-8543-0cf321dcb476", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0e270301-2c24-4fd5-9731-2d1e5eaf6020?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0e270301-2c24-4fd5-9731-2d1e5eaf6020?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0add7dab-debe-4769-8527-d4a53bb77694" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "5c3e3b4d-6c0d-47f1-ac8a-bbb665e913fe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:5c3e3b4d-6c0d-47f1-ac8a-bbb665e913fe", - "Expires" : "-1", - "Content-Length" : "1052", - "x-ms-request-id" : "cdfaf6fb-6273-4078-93bd-03bf0b8f7e60", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:12.2518278+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:12.3768078+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-20641526\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:12.2518278+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"1c68fc91-e17c-4c9c-a112-09ca6bf73aca\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"0e270301-2c24-4fd5-9731-2d1e5eaf6020\"\r\n}", - "x-ms-client-request-id" : "0add7dab-debe-4769-8527-d4a53bb77694", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bd6e063-42e1-4569-8006-89ad947d8599" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "058a09d4-a918-43a5-8ee6-3b6af7453c33", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:058a09d4-a918-43a5-8ee6-3b6af7453c33", - "Expires" : "-1", - "Content-Length" : "827", - "x-ms-request-id" : "6ce59928-92a6-408b-a6e4-02f74dc9c88b", - "Body" : "{\r\n \"name\": \"dsk-20641526\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:12.2518278+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"1c68fc91-e17c-4c9c-a112-09ca6bf73aca\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "6bd6e063-42e1-4569-8006-89ad947d8599", - "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/deeabc7f-5ff8-4f20-a69e-e2894d0745d8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e10f333-fad3-48f5-9987-3463c0bcb98c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "53ff573d-5528-49a7-b10f-0d4fe4ace057", - "x-ms-arm-service-request-id" : "e786083a-9935-4663-a526-4ecff29719ad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:53ff573d-5528-49a7-b10f-0d4fe4ace057", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "b916dd1e-4b65-46c8-a15b-e698807f4e37", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "9e10f333-fad3-48f5-9987-3463c0bcb98c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "faa3260a-4929-446c-9cd1-c860786b014c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "3ba9d4d3-1d9e-4dfc-9d8e-7ab922e33122", - "x-ms-arm-service-request-id" : "53d8ce2a-397b-43f2-9b67-fdd4ba90e9cf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"e674ea41-8049-4fde-b43e-659637e42245\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:3ba9d4d3-1d9e-4dfc-9d8e-7ab922e33122", - "Expires" : "-1", - "Content-Length" : "1348", - "x-ms-request-id" : "1d86d0e6-4133-4122-bae5-4cb1c38321c7", - "Body" : "{\r\n \"name\": \"network38605f197\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197\",\r\n \"etag\": \"W/\\\"e674ea41-8049-4fde-b43e-659637e42245\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c9e3c368-4c0a-4d3e-83c2-2a02e782772b\",\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/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e674ea41-8049-4fde-b43e-659637e42245\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "faa3260a-4929-446c-9cd1-c860786b014c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f1ed9d8-1274-4bb0-ae59-0db3e2c43353", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "a78002a7-3be9-4fbc-8660-84c799d3a9ff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:a78002a7-3be9-4fbc-8660-84c799d3a9ff", - "Expires" : "-1", - "Content-Length" : "246", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c325b85c-e985-4a71-b68e-5249b91d3dd9?api-version=2021-11-01", - "x-ms-request-id" : "c325b85c-e985-4a71-b68e-5249b91d3dd9", - "Body" : "{\r\n \"name\": \"dsk-24879c16\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "0f1ed9d8-1274-4bb0-ae59-0db3e2c43353", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c325b85c-e985-4a71-b68e-5249b91d3dd9?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5014b31-60d7-4e3b-abe0-0d41e27b7b33", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "1bcbe815-4d09-489c-b743-b80eea76bdcf", - "x-ms-arm-service-request-id" : "7d7246c7-4259-4e39-8615-8002e1a6aec5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:1bcbe815-4d09-489c-b743-b80eea76bdcf", - "Expires" : "-1", - "Content-Length" : "1662", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2de69d0a-3629-4e54-bb44-1ed2d68dc0d8?api-version=2023-02-01", - "x-ms-request-id" : "2de69d0a-3629-4e54-bb44-1ed2d68dc0d8", - "Body" : "{\r\n \"name\": \"nic3286536d973\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973\",\r\n \"etag\": \"W/\\\"2cb0e6b2-0424-423b-b08b-dea3de80282b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5d13de3f-525d-4d1b-99c6-f4fe4db0d6c5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2cb0e6b2-0424-423b-b08b-dea3de80282b\\\"\",\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/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197/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\": \"ndb4hsikjq5e1a4cfibopatxfd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "c5014b31-60d7-4e3b-abe0-0d41e27b7b33", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1578f816-47fb-4235-bcff-8f86151dd81e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "1ab9590d-2ddc-4126-af88-85cee4837c0a", - "x-ms-arm-service-request-id" : "426a3161-e859-4b74-9b51-38e3d40b35d2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:1ab9590d-2ddc-4126-af88-85cee4837c0a", - "Expires" : "-1", - "Content-Length" : "1662", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/53e04f20-2dfe-438b-b0ab-fb622f3827dc?api-version=2023-02-01", - "x-ms-request-id" : "53e04f20-2dfe-438b-b0ab-fb622f3827dc", - "Body" : "{\r\n \"name\": \"nic53222999269\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269\",\r\n \"etag\": \"W/\\\"cc5c0640-4c2a-4bb3-a464-f27848a0fe39\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df413bde-b180-4dc6-b7d8-4ac4677616c9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cc5c0640-4c2a-4bb3-a464-f27848a0fe39\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Network/virtualNetworks/network38605f197/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\": \"ndb4hsikjq5e1a4cfibopatxfd.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "1578f816-47fb-4235-bcff-8f86151dd81e", - "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/DiskOperations/c325b85c-e985-4a71-b68e-5249b91d3dd9?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "51b732c2-1879-4aa9-8b55-52e6aebf992c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "5150c0f2-6b9f-44cd-b565-d9025c4fa355", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172220Z:5150c0f2-6b9f-44cd-b565-d9025c4fa355", - "Expires" : "-1", - "Content-Length" : "1054", - "x-ms-request-id" : "0673c99b-1f04-4d8b-9afd-5f81b87b418a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:17.6893482+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:17.7987524+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-24879c16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:17.6893482+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"d0a15f02-aa12-45e7-8cd9-a8208c73d9a7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"c325b85c-e985-4a71-b68e-5249b91d3dd9\"\r\n}", - "x-ms-client-request-id" : "51b732c2-1879-4aa9-8b55-52e6aebf992c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "baaa3669-3b2f-407a-a055-d84ccb8e3533" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "268a2a30-3d71-4c06-9d28-395e2f2f597a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172220Z:268a2a30-3d71-4c06-9d28-395e2f2f597a", - "Expires" : "-1", - "Content-Length" : "829", - "x-ms-request-id" : "e9d8fc3c-bb2c-4196-a7af-50fa7332f134", - "Body" : "{\r\n \"name\": \"dsk-24879c16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:17.6893482+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"d0a15f02-aa12-45e7-8cd9-a8208c73d9a7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "baaa3669-3b2f-407a-a055-d84ccb8e3533", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3230374-fb2e-444f-91df-638dde71686b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:22 GMT", - "x-ms-correlation-request-id" : "67448bf2-30c6-4033-86bc-0e3218cb3a96", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:67448bf2-30c6-4033-86bc-0e3218cb3a96", - "Expires" : "-1", - "Content-Length" : "1598", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d1541b0-1073-4efc-9341-12b87cf4bd53?api-version=2021-11-01", - "x-ms-request-id" : "4d1541b0-1073-4efc-9341-12b87cf4bd53", - "Body" : "{\r\n \"name\": \"lvm81380cfa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c2ee3447-90bd-4623-8b07-2fcb9fb1d8a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm81380cfa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "b3230374-fb2e-444f-91df-638dde71686b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "72e46757-4230-4ef7-80df-eedbc7d96bd7", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "98ffce3c-6486-4f0f-bed8-e488e117aadb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172224Z:98ffce3c-6486-4f0f-bed8-e488e117aadb", - "Expires" : "-1", - "Content-Length" : "2810", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5?api-version=2021-11-01", - "x-ms-request-id" : "fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5", - "Body" : "{\r\n \"name\": \"wvm1425038c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"063e003c-bd4a-43ff-949a-234038f25587\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24879c16\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-20641526\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm1425038c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "72e46757-4230-4ef7-80df-eedbc7d96bd7", - "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/4d1541b0-1073-4efc-9341-12b87cf4bd53?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4bb90157-42cf-46d5-82db-1d58d6548c43" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "97259992-e33f-4357-b801-6a467be9ec19", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172232Z:97259992-e33f-4357-b801-6a467be9ec19", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "5b39e83b-8e30-4d1f-83a8-186bc65f35bd", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:21.1307285+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d1541b0-1073-4efc-9341-12b87cf4bd53\"\r\n}", - "x-ms-client-request-id" : "4bb90157-42cf-46d5-82db-1d58d6548c43", - "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/fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1a35917-7be8-4585-9799-8cc72892e9d0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:33 GMT", - "x-ms-correlation-request-id" : "ab2eb786-5e8b-4e69-a5e5-f0abc2bc900e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172234Z:ab2eb786-5e8b-4e69-a5e5-f0abc2bc900e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "978a4dbd-6316-4e04-ab3f-781278d9ee9a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:22.3026588+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5\"\r\n}", - "x-ms-client-request-id" : "d1a35917-7be8-4585-9799-8cc72892e9d0", - "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/4d1541b0-1073-4efc-9341-12b87cf4bd53?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "41032017-9074-43f2-89b9-a33873a0e427" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:07 GMT", - "x-ms-correlation-request-id" : "c682ada8-2c28-4746-a934-52b27f7101ce", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172308Z:c682ada8-2c28-4746-a934-52b27f7101ce", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "0b4a5f9d-5dd4-4820-aa7e-faaa90c3517b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:21.1307285+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:53.6476228+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4d1541b0-1073-4efc-9341-12b87cf4bd53\"\r\n}", - "x-ms-client-request-id" : "41032017-9074-43f2-89b9-a33873a0e427", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bcc82ec-c096-471c-80e1-f3e3b042ac1b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:08 GMT", - "x-ms-correlation-request-id" : "132d3d30-cf03-43c3-9481-3b4911457f8b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172308Z:132d3d30-cf03-43c3-9481-3b4911457f8b", - "Expires" : "-1", - "Content-Length" : "1862", - "x-ms-request-id" : "825cf5d2-41c5-421d-9213-a1aad6273b1e", - "Body" : "{\r\n \"name\": \"lvm81380cfa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c2ee3447-90bd-4623-8b07-2fcb9fb1d8a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm81380cfa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "1bcc82ec-c096-471c-80e1-f3e3b042ac1b", - "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/fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a3ea646-8fa8-49b6-89d4-13f264b4fd3a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "cbf395a2-1f51-4f07-b112-9f074a923b3a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172324Z:cbf395a2-1f51-4f07-b112-9f074a923b3a", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "9f3eed5b-c277-45e4-b603-ddfad502041c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:22.3026588+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5\"\r\n}", - "x-ms-client-request-id" : "9a3ea646-8fa8-49b6-89d4-13f264b4fd3a", - "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/fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecc3433f-b7f2-4069-b8e9-ddf24c7f26e2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:54 GMT", - "x-ms-correlation-request-id" : "0cf52922-ee66-4aba-9c8b-8ec63384d22f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172355Z:0cf52922-ee66-4aba-9c8b-8ec63384d22f", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "32ccff42-35f0-47ce-be39-2f39f5ea7823", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:22.3026588+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:40.9619904+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fde2cb27-4044-43fa-9f2b-f6b3fc9ac2e5\"\r\n}", - "x-ms-client-request-id" : "ecc3433f-b7f2-4069-b8e9-ddf24c7f26e2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ce724e6-7afa-4305-bc16-0f1f4a2fd426" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:54 GMT", - "x-ms-correlation-request-id" : "e65d1124-3f55-4ee9-a795-60e2187b4471", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3970,Microsoft.Compute/LowCostGet30Min;31970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172355Z:e65d1124-3f55-4ee9-a795-60e2187b4471", - "Expires" : "-1", - "Content-Length" : "3335", - "x-ms-request-id" : "317c22b1-b7f8-4072-a54e-d1f46541bd6b", - "Body" : "{\r\n \"name\": \"wvm1425038c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"063e003c-bd4a-43ff-949a-234038f25587\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24879c16\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-20641526\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm1425038c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "6ce724e6-7afa-4305-bc16-0f1f4a2fd426", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe25de20-f68d-41a6-95dc-d6cdd6fac519", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:59 GMT", - "x-ms-correlation-request-id" : "32fd3eaf-09f1-4ffd-870f-c081d628bb83", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1180", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172359Z:32fd3eaf-09f1-4ffd-870f-c081d628bb83", - "Expires" : "-1", - "Content-Length" : "1925", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/7e637a66-4941-46c6-b9f9-1dd6d13cd763?api-version=2021-11-01", - "x-ms-request-id" : "7e637a66-4941-46c6-b9f9-1dd6d13cd763", - "Body" : "{\r\n \"name\": \"lvm81380cfa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c2ee3447-90bd-4623-8b07-2fcb9fb1d8a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm81380cfa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "fe25de20-f68d-41a6-95dc-d6cdd6fac519", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "073e3b9a-46d4-4a4a-bf4e-bc597cef4521", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:59 GMT", - "x-ms-correlation-request-id" : "a2b126fd-1231-4fdf-801b-58da2be0ad27", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;219,Microsoft.Compute/PutVM30Min;1179", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172359Z:a2b126fd-1231-4fdf-801b-58da2be0ad27", - "Expires" : "-1", - "Content-Length" : "3604", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/740fc262-5fce-4eb0-9f9e-9154601d67ee?api-version=2021-11-01", - "x-ms-request-id" : "740fc262-5fce-4eb0-9f9e-9154601d67ee", - "Body" : "{\r\n \"name\": \"wvm1425038c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"063e003c-bd4a-43ff-949a-234038f25587\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24879c16\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-20641526\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm1425038c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "073e3b9a-46d4-4a4a-bf4e-bc597cef4521", - "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/7e637a66-4941-46c6-b9f9-1dd6d13cd763?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7f2b368-0551-43b3-a36e-7286fb8ca44d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11831", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:28 GMT", - "x-ms-correlation-request-id" : "32684c1d-ba55-4941-9f20-f8683dcf75fc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14923,Microsoft.Compute/GetOperation30Min;29923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:32684c1d-ba55-4941-9f20-f8683dcf75fc", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "a87b4678-0669-478c-b33b-843d30ff3a4e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:56.4782212+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:56.5719785+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e637a66-4941-46c6-b9f9-1dd6d13cd763\"\r\n}", - "x-ms-client-request-id" : "f7f2b368-0551-43b3-a36e-7286fb8ca44d", - "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/740fc262-5fce-4eb0-9f9e-9154601d67ee?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "63c8f37c-71a6-428c-8c91-549cdc43a94b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:28 GMT", - "x-ms-correlation-request-id" : "bafada5f-79c1-445a-9396-3376832735c8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14922,Microsoft.Compute/GetOperation30Min;29922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:bafada5f-79c1-445a-9396-3376832735c8", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "0c0ba7c1-d49c-4003-91c5-0de8ef563394", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:56.4938468+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:01.3221501+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"740fc262-5fce-4eb0-9f9e-9154601d67ee\"\r\n}", - "x-ms-client-request-id" : "63c8f37c-71a6-428c-8c91-549cdc43a94b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db12456f-8e29-43eb-a4dc-23342cf96650" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:28 GMT", - "x-ms-correlation-request-id" : "e4d72800-a08c-45f2-a871-19543c860e6c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3952,Microsoft.Compute/LowCostGet30Min;31952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:e4d72800-a08c-45f2-a871-19543c860e6c", - "Expires" : "-1", - "Content-Length" : "1926", - "x-ms-request-id" : "07f26f3f-b2fd-4fb8-86cf-4e062bdc9a15", - "Body" : "{\r\n \"name\": \"lvm81380cfa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c2ee3447-90bd-4623-8b07-2fcb9fb1d8a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm81380cfa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "db12456f-8e29-43eb-a4dc-23342cf96650", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "04a2d84c-9a06-4f34-b7ab-828fc2aef422" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:29 GMT", - "x-ms-correlation-request-id" : "32c02075-d072-4011-acd6-2f6e5123f99c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3951,Microsoft.Compute/LowCostGet30Min;31951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172429Z:32c02075-d072-4011-acd6-2f6e5123f99c", - "Expires" : "-1", - "Content-Length" : "3866", - "x-ms-request-id" : "fb7fed47-ccb7-4c65-8ae1-ca3516607e2b", - "Body" : "{\r\n \"name\": \"wvm1425038c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"063e003c-bd4a-43ff-949a-234038f25587\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24879c16\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-20641526\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm1425038c_disk5_15c8a47cfea947568f188360c8a0498f\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_disk5_15c8a47cfea947568f188360c8a0498f\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm1425038c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "04a2d84c-9a06-4f34-b7ab-828fc2aef422", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7949956-c7ac-4b1d-b884-77d34b5889af", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11814", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:29 GMT", - "x-ms-correlation-request-id" : "aa5800cf-a73f-4996-81a3-496d7e747bd8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172430Z:aa5800cf-a73f-4996-81a3-496d7e747bd8", - "Expires" : "-1", - "Content-Length" : "6428", - "x-ms-request-id" : "26d540fe-3235-4259-8f95-23e1c2da93e5", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvm81380cfa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks-on-linux\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c2ee3447-90bd-4623-8b07-2fcb9fb1d8a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/lvm81380cfa_OsDisk_1_a3ce30adce9d4cdd93c22c357c8f9bfa\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm81380cfa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic53222999269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvm1425038c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"063e003c-bd4a-43ff-949a-234038f25587\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_OsDisk_1_d1faf40c02bd4031a39b328150d12f8c\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24879c16\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-24879c16\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"dsk-20641526\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/dsk-20641526\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_disk4_8525cda7694b4b7eb836756e9ab10234\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"wvm1425038c_disk5_15c8a47cfea947568f188360c8a0498f\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/disks/wvm1425038c_disk5_15c8a47cfea947568f188360c8a0498f\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm1425038c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv00161e9/providers/Microsoft.Network/networkInterfaces/nic3286536d973\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "e7949956-c7ac-4b1d-b884-77d34b5889af", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/wvm1425038c?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5bd6fbe-710c-47f7-a79e-35f39882eecd", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:24:30 GMT", - "x-ms-correlation-request-id" : "640a4f09-cd70-43b1-b092-36a000cb9d1f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;232,Microsoft.Compute/DeleteVM30Min;1192", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172430Z:640a4f09-cd70-43b1-b092-36a000cb9d1f", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f225c194-eeca-47f5-9d44-5520ca0fead5?api-version=2021-11-01", - "x-ms-request-id" : "f225c194-eeca-47f5-9d44-5520ca0fead5", - "x-ms-client-request-id" : "b5bd6fbe-710c-47f7-a79e-35f39882eecd", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f225c194-eeca-47f5-9d44-5520ca0fead5?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00161e9/providers/Microsoft.Compute/virtualMachines/lvm81380cfa?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ebc4c60-f4ff-4bc7-867f-8bde91aee134", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:24:30 GMT", - "x-ms-correlation-request-id" : "9933f4ab-aa7f-44b4-9a3b-2e49f12f64d3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;231,Microsoft.Compute/DeleteVM30Min;1191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172430Z:9933f4ab-aa7f-44b4-9a3b-2e49f12f64d3", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40227cf7-430f-4e8a-989e-ba8573592c96?api-version=2021-11-01", - "x-ms-request-id" : "40227cf7-430f-4e8a-989e-ba8573592c96", - "x-ms-client-request-id" : "7ebc4c60-f4ff-4bc7-867f-8bde91aee134", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40227cf7-430f-4e8a-989e-ba8573592c96?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40227cf7-430f-4e8a-989e-ba8573592c96?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ada29b5a-03ab-4b9f-aa5a-0e7e65f228e8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11851", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:40 GMT", - "x-ms-correlation-request-id" : "8e093191-a97f-48ee-9db8-ae045cffc9c6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14907,Microsoft.Compute/GetOperation30Min;29907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172441Z:8e093191-a97f-48ee-9db8-ae045cffc9c6", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "b7d0ddf9-b4a0-49ef-a571-3dfa4e57c582", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6827264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40227cf7-430f-4e8a-989e-ba8573592c96\"\r\n}", - "x-ms-client-request-id" : "ada29b5a-03ab-4b9f-aa5a-0e7e65f228e8", - "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/f225c194-eeca-47f5-9d44-5520ca0fead5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2677022-e20d-4863-9222-0131dbe2e856" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11888", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:41 GMT", - "x-ms-correlation-request-id" : "255ae996-3dfc-482e-8072-8c4c0511a852", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14906,Microsoft.Compute/GetOperation30Min;29906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172441Z:255ae996-3dfc-482e-8072-8c4c0511a852", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "78982675-5bb9-448b-8c95-ffbd1a7e2878", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6670867+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f225c194-eeca-47f5-9d44-5520ca0fead5\"\r\n}", - "x-ms-client-request-id" : "a2677022-e20d-4863-9222-0131dbe2e856", - "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/40227cf7-430f-4e8a-989e-ba8573592c96?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6072159-2c10-4cd1-b833-52b07177951c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:10 GMT", - "x-ms-correlation-request-id" : "9753426d-1e54-4f62-b0c9-f16512a819a5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14880,Microsoft.Compute/GetOperation30Min;29880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:9753426d-1e54-4f62-b0c9-f16512a819a5", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "034fc497-9947-4670-b61e-9847f971699f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6827264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40227cf7-430f-4e8a-989e-ba8573592c96\"\r\n}", - "x-ms-client-request-id" : "f6072159-2c10-4cd1-b833-52b07177951c", - "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/f225c194-eeca-47f5-9d44-5520ca0fead5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf1c871f-98ae-4dff-a7f1-cd9bf3832a1a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11867", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:11 GMT", - "x-ms-correlation-request-id" : "feff85ff-a1e1-428b-b88a-bf52607fe116", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14879,Microsoft.Compute/GetOperation30Min;29879", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:feff85ff-a1e1-428b-b88a-bf52607fe116", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "369ce54d-8bbe-49d6-9b1e-a9a4eff8fd99", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6670867+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f225c194-eeca-47f5-9d44-5520ca0fead5\"\r\n}", - "x-ms-client-request-id" : "cf1c871f-98ae-4dff-a7f1-cd9bf3832a1a", - "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/40227cf7-430f-4e8a-989e-ba8573592c96?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a380e9a5-acf1-426d-a0b1-cecf461095fd" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:40 GMT", - "x-ms-correlation-request-id" : "4f09f5d9-43ff-4102-924f-61839c1c64c6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14877,Microsoft.Compute/GetOperation30Min;29859", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172541Z:4f09f5d9-43ff-4102-924f-61839c1c64c6", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "30241c27-1a5b-4e91-a318-98a17df54c30", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6827264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40227cf7-430f-4e8a-989e-ba8573592c96\"\r\n}", - "x-ms-client-request-id" : "a380e9a5-acf1-426d-a0b1-cecf461095fd", - "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/f225c194-eeca-47f5-9d44-5520ca0fead5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5e266c1-64d6-46f5-b8fb-8a85aea90c82" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11899", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:41 GMT", - "x-ms-correlation-request-id" : "5154b8ad-b7fc-4077-b0f0-34d67d4356ec", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14875,Microsoft.Compute/GetOperation30Min;29857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172542Z:5154b8ad-b7fc-4077-b0f0-34d67d4356ec", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4420ca4c-22c6-4c26-84f2-e5277e72674b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6670867+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:13.7000304+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f225c194-eeca-47f5-9d44-5520ca0fead5\"\r\n}", - "x-ms-client-request-id" : "d5e266c1-64d6-46f5-b8fb-8a85aea90c82", - "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/f225c194-eeca-47f5-9d44-5520ca0fead5?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4ca69ec-0f14-40f8-a139-47a1db49aec9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:41 GMT", - "x-ms-correlation-request-id" : "a88cd050-a872-45d4-a576-be1457f98f72", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14874,Microsoft.Compute/GetOperation30Min;29856", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172542Z:a88cd050-a872-45d4-a576-be1457f98f72", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "9d2c36ca-f3f4-4ef1-aafc-f129e9b0f36c", - "x-ms-client-request-id" : "a4ca69ec-0f14-40f8-a139-47a1db49aec9" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40227cf7-430f-4e8a-989e-ba8573592c96?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "66ce38a2-acd3-4f0e-90dc-4f20d5ddc902" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:11 GMT", - "x-ms-correlation-request-id" : "37e04d91-1e81-42da-9faa-bd7f81d622af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14872,Microsoft.Compute/GetOperation30Min;29832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172612Z:37e04d91-1e81-42da-9faa-bd7f81d622af", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "49a7a21a-1ce5-45e2-b69d-420c4d5a0cb2", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:30.6827264+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:50.1080314+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"40227cf7-430f-4e8a-989e-ba8573592c96\"\r\n}", - "x-ms-client-request-id" : "66ce38a2-acd3-4f0e-90dc-4f20d5ddc902", - "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/40227cf7-430f-4e8a-989e-ba8573592c96?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "58a0f1f8-a41d-4b42-93ac-ffb33df729b9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11768", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:11 GMT", - "x-ms-correlation-request-id" : "6a9bb721-2618-420a-9a8d-597eb62597f0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14871,Microsoft.Compute/GetOperation30Min;29831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172612Z:6a9bb721-2618-420a-9a8d-597eb62597f0", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "dcd1330a-d53a-4077-8c73-7970ed8d1e66", - "x-ms-client-request-id" : "58a0f1f8-a41d-4b42-93ac-ffb33df729b9" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv00161e9?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "202bca2d-4e8f-489d-93f1-179a2453fd6f", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:13 GMT", - "x-ms-correlation-request-id" : "d235cdf8-eeb0-450f-aef0-fb948350b52b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172613Z:d235cdf8-eeb0-450f-aef0-fb948350b52b", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "d235cdf8-eeb0-450f-aef0-fb948350b52b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f3cf8bf-eafa-4f40-ac63-571a3c6531ed" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11721", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:29 GMT", - "x-ms-correlation-request-id" : "09dbf9b4-3f77-44fc-8697-b2a4b5b3a28d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172629Z:09dbf9b4-3f77-44fc-8697-b2a4b5b3a28d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "09dbf9b4-3f77-44fc-8697-b2a4b5b3a28d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "67b9d2ad-fcd2-4f35-8cb4-4079907052e8" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:44 GMT", - "x-ms-correlation-request-id" : "d3032dc5-0a7c-493b-ad25-425d1cf3a7df", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172645Z:d3032dc5-0a7c-493b-ad25-425d1cf3a7df", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "d3032dc5-0a7c-493b-ad25-425d1cf3a7df", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3387da5-74ae-48a8-b3d2-cff6d73bede8" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11768", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:01 GMT", - "x-ms-correlation-request-id" : "75e2bbf9-31fe-469e-80e6-71475e270f74", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172701Z:75e2bbf9-31fe-469e-80e6-71475e270f74", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "75e2bbf9-31fe-469e-80e6-71475e270f74", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f8b2e3c-8229-4528-853b-87255da6d9b1" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11746", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:16 GMT", - "x-ms-correlation-request-id" : "9be084fd-56ca-48d6-84aa-ea517229e778", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172717Z:9be084fd-56ca-48d6-84aa-ea517229e778", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "9be084fd-56ca-48d6-84aa-ea517229e778", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e92b1b0-eb05-4d74-a9d5-7a8377ab0d91" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:33 GMT", - "x-ms-correlation-request-id" : "1bce5674-57dd-4565-b17b-1700f67a04b6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172733Z:1bce5674-57dd-4565-b17b-1700f67a04b6", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "1bce5674-57dd-4565-b17b-1700f67a04b6", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2867765f-6a83-4d03-a531-c63267cc5c24" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11891", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:49 GMT", - "x-ms-correlation-request-id" : "7bede5c1-8a5a-49a9-a926-cfb38c033e6f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172749Z:7bede5c1-8a5a-49a9-a926-cfb38c033e6f", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "7bede5c1-8a5a-49a9-a926-cfb38c033e6f", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDE2MUU5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8f6a15d-995f-4213-82da-939e19ae75d1" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11880", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:04 GMT", - "x-ms-correlation-request-id" : "a0276dc0-c03d-4649-b24b-0c10084f0eb9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172805Z:a0276dc0-c03d-4649-b24b-0c10084f0eb9", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "a0276dc0-c03d-4649-b24b-0c10084f0eb9" - }, - "Exception" : null - } ], - "variables" : [ "wvm1425038c", "lvm81380cfa", "rgcomv00161e9", "dsk-24879c16", "dsk-20641526", "network38605f197", "nic3286536d973", "nic53222999269" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineExtension.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineExtension.json deleted file mode 100644 index d80a6a51526f..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineExtension.json +++ /dev/null @@ -1,2216 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcove1111096?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9de1a2ff-5937-4277-b0e8-9c29c25d1a96", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:38:46 GMT", - "x-ms-correlation-request-id" : "b5950cfe-0499-48bf-a979-dc1020dc42ff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053846Z:b5950cfe-0499-48bf-a979-dc1020dc42ff", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "b5950cfe-0499-48bf-a979-dc1020dc42ff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096\",\"name\":\"rgcove1111096\",\"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/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "02eb8e55-815e-4fa2-8965-19e6796901d0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:38:53 GMT", - "x-ms-correlation-request-id" : "39bbe0c6-96c4-4d6a-9371-e930cb78def3", - "x-ms-arm-service-request-id" : "dd7948f3-749e-44b2-b0b1-1bb974e905b7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053853Z:39bbe0c6-96c4-4d6a-9371-e930cb78def3", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f60234a4-970e-42f8-ab38-919b83a65b5d?api-version=2023-02-01", - "x-ms-request-id" : "f60234a4-970e-42f8-ab38-919b83a65b5d", - "Body" : "{\r\n \"name\": \"vnet88519cd876\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876\",\r\n \"etag\": \"W/\\\"bb5e4127-49eb-433e-b207-9d1afe53b8ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8d963a73-6c08-4a72-a756-cd813ddef8c8\",\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/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bb5e4127-49eb-433e-b207-9d1afe53b8ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "02eb8e55-815e-4fa2-8965-19e6796901d0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip43410980?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7430dcf5-0320-4be4-97f7-d83f4442291d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:38:53 GMT", - "x-ms-correlation-request-id" : "d1797872-bcde-4048-a68d-91cd13828ba6", - "x-ms-arm-service-request-id" : "9d9a02bc-b4e7-44c7-86d4-c1d11a50d88d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053853Z:d1797872-bcde-4048-a68d-91cd13828ba6", - "Expires" : "-1", - "Content-Length" : "788", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e3178659-76f5-456e-b7e3-d320092ddfac?api-version=2023-02-01", - "x-ms-request-id" : "e3178659-76f5-456e-b7e3-d320092ddfac", - "Body" : "{\r\n \"name\": \"pip43410980\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip43410980\",\r\n \"etag\": \"W/\\\"67a125cf-7ec5-4931-bf0b-06ac76f84401\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e6b4b872-1628-46a2-a3e2-baa2a22b1b4a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip18343978760e3\",\r\n \"fqdn\": \"rgpip18343978760e3.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "7430dcf5-0320-4be4-97f7-d83f4442291d", - "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/e3178659-76f5-456e-b7e3-d320092ddfac?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "99108a43-b905-4b5d-a2cd-a4742fb17f21" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:38:54 GMT", - "x-ms-correlation-request-id" : "d611b240-99dd-4d17-87ba-1b2aed85989b", - "x-ms-arm-service-request-id" : "556bc1e2-1b31-47f0-80aa-cbd14de03ec2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053854Z:d611b240-99dd-4d17-87ba-1b2aed85989b", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "17ecf628-5254-47e7-9bb8-30c868cfcbbb", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "99108a43-b905-4b5d-a2cd-a4742fb17f21", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip43410980?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "97b1cc73-a657-4b25-86ac-f1670d0f96a8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:38:54 GMT", - "x-ms-correlation-request-id" : "7e146d2d-7a57-4ae3-b84c-837cc1860014", - "x-ms-arm-service-request-id" : "aced24f9-a5d3-468f-9957-5ae59a577518", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"8a40df35-ca87-43cd-84d4-90198ac8be56\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053854Z:7e146d2d-7a57-4ae3-b84c-837cc1860014", - "Expires" : "-1", - "Content-Length" : "789", - "x-ms-request-id" : "27fd703e-560f-49dc-8cb8-c32c39f2bad9", - "Body" : "{\r\n \"name\": \"pip43410980\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip43410980\",\r\n \"etag\": \"W/\\\"8a40df35-ca87-43cd-84d4-90198ac8be56\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6b4b872-1628-46a2-a3e2-baa2a22b1b4a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip18343978760e3\",\r\n \"fqdn\": \"rgpip18343978760e3.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "97b1cc73-a657-4b25-86ac-f1670d0f96a8", - "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/f60234a4-970e-42f8-ab38-919b83a65b5d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea8c18e6-d770-4dcd-8f3b-732b78d2de9e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:38:56 GMT", - "x-ms-correlation-request-id" : "6416e260-25e2-4602-86ac-52a2e957c1ca", - "x-ms-arm-service-request-id" : "096314d8-4703-4955-b00e-f33c5c9d591b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053856Z:6416e260-25e2-4602-86ac-52a2e957c1ca", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "ac18c5ce-1cc4-4f83-9296-c8c7eab087d5", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "ea8c18e6-d770-4dcd-8f3b-732b78d2de9e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e50d7539-1045-4f9a-b428-366b4898ea48" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:38:56 GMT", - "x-ms-correlation-request-id" : "24b5eb96-cf9c-4938-95f3-5c2151f76894", - "x-ms-arm-service-request-id" : "34305f93-5856-40f7-abc2-1ededa368518", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"78307184-9fee-4e70-815c-b49074b39a3d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053856Z:24b5eb96-cf9c-4938-95f3-5c2151f76894", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "46b57794-0561-4787-9914-e044157ce64b", - "Body" : "{\r\n \"name\": \"vnet88519cd876\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876\",\r\n \"etag\": \"W/\\\"78307184-9fee-4e70-815c-b49074b39a3d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d963a73-6c08-4a72-a756-cd813ddef8c8\",\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/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876/subnets/subnet1\",\r\n \"etag\": \"W/\\\"78307184-9fee-4e70-815c-b49074b39a3d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e50d7539-1045-4f9a-b428-366b4898ea48", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d3f0f90-306d-44b4-9119-e9defb697190", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:39:00 GMT", - "x-ms-correlation-request-id" : "46c9f4c0-a163-43ad-a0a4-c330803fa262", - "x-ms-arm-service-request-id" : "9fb787b2-7f33-4a9f-b7ef-a71d89385e93", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053900Z:46c9f4c0-a163-43ad-a0a4-c330803fa262", - "Expires" : "-1", - "Content-Length" : "1866", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a7b2a05d-b420-4d46-9dcb-929469bd1da7?api-version=2023-02-01", - "x-ms-request-id" : "a7b2a05d-b420-4d46-9dcb-929469bd1da7", - "Body" : "{\r\n \"name\": \"nic24017b63207\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\r\n \"etag\": \"W/\\\"f00c7e09-9f86-45a2-b0ce-d8110010adb3\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06d2059d-c9d6-48b8-9fe8-2de6b8a85add\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f00c7e09-9f86-45a2-b0ce-d8110010adb3\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip43410980\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet88519cd876/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\": \"om3jndiinrzevj0wzwat1xxyza.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "9d3f0f90-306d-44b4-9119-e9defb697190", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "afd51ffa-2e37-4ee6-bb31-153cde93faee", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:39:03 GMT", - "x-ms-correlation-request-id" : "207471bb-66fd-456e-86ee-250227fed3c3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053903Z:207471bb-66fd-456e-86ee-250227fed3c3", - "Expires" : "-1", - "Content-Length" : "1592", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9598d43d-bc44-42a8-a811-5cefee58a31c?api-version=2021-11-01", - "x-ms-request-id" : "9598d43d-bc44-42a8-a811-5cefee58a31c", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "afd51ffa-2e37-4ee6-bb31-153cde93faee", - "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/9598d43d-bc44-42a8-a811-5cefee58a31c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9d71923-9242-4793-b871-b05ac36eb7d5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:39:13 GMT", - "x-ms-correlation-request-id" : "d553bae8-5881-4d6e-b0af-904e04d3fd2b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053914Z:d553bae8-5881-4d6e-b0af-904e04d3fd2b", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "61c329ad-d9e0-40ee-89d4-7b5d8fa85180", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:39:02.372505+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9598d43d-bc44-42a8-a811-5cefee58a31c\"\r\n}", - "x-ms-client-request-id" : "f9d71923-9242-4793-b871-b05ac36eb7d5", - "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/9598d43d-bc44-42a8-a811-5cefee58a31c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "85c352e2-ba62-4eef-8e65-4c7ef496d461" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:39:48 GMT", - "x-ms-correlation-request-id" : "1d8dc538-9e29-4f55-a186-819b96e38879", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053949Z:1d8dc538-9e29-4f55-a186-819b96e38879", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "9f93d2f5-9681-4107-bbf1-2e903ae75721", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:39:02.372505+00:00\",\r\n \"endTime\": \"2021-02-08T05:39:44.0155031+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9598d43d-bc44-42a8-a811-5cefee58a31c\"\r\n}", - "x-ms-client-request-id" : "85c352e2-ba62-4eef-8e65-4c7ef496d461", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e7182e1-b643-4e0c-90b1-65293160bbeb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:39:49 GMT", - "x-ms-correlation-request-id" : "b90b74f0-ad7c-42a5-83f8-abba7ad9c57a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053949Z:b90b74f0-ad7c-42a5-83f8-abba7ad9c57a", - "Expires" : "-1", - "Content-Length" : "1852", - "x-ms-request-id" : "b976f0c5-02cf-4e40-9251-dc0411b36b03", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "4e7182e1-b643-4e0c-90b1-65293160bbeb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb401b34-5cc8-4d97-9b25-36c3ae9daf7d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:39:52 GMT", - "x-ms-correlation-request-id" : "009064cf-1db6-414f-9304-93286fb8fe69", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T053953Z:009064cf-1db6-414f-9304-93286fb8fe69", - "Expires" : "-1", - "Content-Length" : "507", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f460e679-a1ce-43c5-9937-b2a54ebd9922?api-version=2021-11-01", - "x-ms-request-id" : "f460e679-a1ce-43c5-9937-b2a54ebd9922", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "bb401b34-5cc8-4d97-9b25-36c3ae9daf7d", - "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/f460e679-a1ce-43c5-9937-b2a54ebd9922?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd10cd99-c9c7-467e-a7d3-34fcba4f23e0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:23 GMT", - "x-ms-correlation-request-id" : "80b99a9e-c833-4016-b0cd-1841c7a5c476", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054023Z:80b99a9e-c833-4016-b0cd-1841c7a5c476", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "7b8da06a-c1cc-49f9-8545-3e4bff7cbbf3", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:39:51.797113+00:00\",\r\n \"endTime\": \"2021-02-08T05:40:06.1727703+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f460e679-a1ce-43c5-9937-b2a54ebd9922\"\r\n}", - "x-ms-client-request-id" : "dd10cd99-c9c7-467e-a7d3-34fcba4f23e0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3d65ee9-a47e-4336-adb2-e5d31d29b0b7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:23 GMT", - "x-ms-correlation-request-id" : "f6ff61ac-afec-4463-94cb-43d7091d245e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054024Z:f6ff61ac-afec-4463-94cb-43d7091d245e", - "Expires" : "-1", - "Content-Length" : "508", - "x-ms-request-id" : "166cceb1-be04-4e26-928b-0092ce20458b", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "c3d65ee9-a47e-4336-adb2-e5d31d29b0b7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ec34d9b-e3fa-4293-9d97-bf8c433f04d6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:23 GMT", - "x-ms-correlation-request-id" : "ad8675b0-031a-4da1-af78-51c8d61f38f3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054024Z:ad8675b0-031a-4da1-af78-51c8d61f38f3", - "Expires" : "-1", - "Content-Length" : "2438", - "x-ms-request-id" : "968d73e1-6889-4dd6-b05e-3f990d81d749", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "8ec34d9b-e3fa-4293-9d97-bf8c433f04d6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cce87d1-92ce-4f32-a2b8-9e6f32a2462c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:23 GMT", - "x-ms-correlation-request-id" : "9e342b36-00e9-4ab6-ad93-84b0eb13418e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054024Z:9e342b36-00e9-4ab6-ad93-84b0eb13418e", - "Expires" : "-1", - "Content-Length" : "507", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/68ff654a-324b-4371-9d2e-c3da89abfc58?api-version=2021-11-01", - "x-ms-request-id" : "68ff654a-324b-4371-9d2e-c3da89abfc58", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "5cce87d1-92ce-4f32-a2b8-9e6f32a2462c", - "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/68ff654a-324b-4371-9d2e-c3da89abfc58?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f6ac0d2-4a82-42cc-9e8f-62f332339e53" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:54 GMT", - "x-ms-correlation-request-id" : "14bc70cc-2793-40dd-b760-eb6db92568d4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054054Z:14bc70cc-2793-40dd-b760-eb6db92568d4", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "a358e853-4496-467b-a740-e802481f9c84", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:40:24.5017435+00:00\",\r\n \"endTime\": \"2021-02-08T05:40:39.5132974+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"68ff654a-324b-4371-9d2e-c3da89abfc58\"\r\n}", - "x-ms-client-request-id" : "4f6ac0d2-4a82-42cc-9e8f-62f332339e53", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "843545df-210b-4ff7-9d50-374d724aa18b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:54 GMT", - "x-ms-correlation-request-id" : "d0f897b0-d998-4c81-92f6-63e48d7f05ff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054055Z:d0f897b0-d998-4c81-92f6-63e48d7f05ff", - "Expires" : "-1", - "Content-Length" : "508", - "x-ms-request-id" : "bea89af1-28fa-4b22-83f3-3732dd5823e6", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "843545df-210b-4ff7-9d50-374d724aa18b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "77e007b3-c4d2-4d55-a5d4-df5e52c759e4", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:54 GMT", - "x-ms-correlation-request-id" : "84ce6da9-9646-472a-9249-3a7d710d9080", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054055Z:84ce6da9-9646-472a-9249-3a7d710d9080", - "Expires" : "-1", - "Content-Length" : "2438", - "x-ms-request-id" : "007a9a08-fcf3-4dad-81cf-ce1ab134e7bb", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "77e007b3-c4d2-4d55-a5d4-df5e52c759e4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "de781ad3-e3aa-43ea-9851-426acf564bf8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:40:54 GMT", - "x-ms-correlation-request-id" : "ca1d813a-f4bd-43d2-a9d4-b4924d981ec5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054055Z:ca1d813a-f4bd-43d2-a9d4-b4924d981ec5", - "Expires" : "-1", - "Content-Length" : "507", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1555b227-151c-4e9f-be2d-f1aa26e980f8?api-version=2021-11-01", - "x-ms-request-id" : "1555b227-151c-4e9f-be2d-f1aa26e980f8", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "de781ad3-e3aa-43ea-9851-426acf564bf8", - "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/1555b227-151c-4e9f-be2d-f1aa26e980f8?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3821234-fa8c-4a67-8910-3a5fa30f4521" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:25 GMT", - "x-ms-correlation-request-id" : "666ec54f-bb75-445c-bb94-6ede941829ad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054126Z:666ec54f-bb75-445c-bb94-6ede941829ad", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "278a6276-9056-41e3-a133-a1fff38fc6f9", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:40:55.657095+00:00\",\r\n \"endTime\": \"2021-02-08T05:41:09.7685557+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1555b227-151c-4e9f-be2d-f1aa26e980f8\"\r\n}", - "x-ms-client-request-id" : "f3821234-fa8c-4a67-8910-3a5fa30f4521", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "979a0a9a-937f-49be-99cb-f06ee77eed60" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:25 GMT", - "x-ms-correlation-request-id" : "b88f3a25-08f1-4229-a5df-5be6f029d9af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054126Z:b88f3a25-08f1-4229-a5df-5be6f029d9af", - "Expires" : "-1", - "Content-Length" : "508", - "x-ms-request-id" : "f5430dd9-95fe-4eab-ad5a-ef6adbc7f9d2", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "979a0a9a-937f-49be-99cb-f06ee77eed60", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "58574056-dbdd-4064-b224-7ed4ad2f0216", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:26 GMT", - "x-ms-correlation-request-id" : "0653e6e8-1cb8-4d91-8503-00b3f14dee7d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054126Z:0653e6e8-1cb8-4d91-8503-00b3f14dee7d", - "Expires" : "-1", - "Content-Length" : "2438", - "x-ms-request-id" : "a865fb38-9e66-49e8-9acb-40ff7c295dea", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "58574056-dbdd-4064-b224-7ed4ad2f0216", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8e88749-ed86-4b60-b78b-50aa499fda1e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:25 GMT", - "x-ms-correlation-request-id" : "eafa2a92-f0ec-4adb-833f-eaccde362351", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054126Z:eafa2a92-f0ec-4adb-833f-eaccde362351", - "Expires" : "-1", - "Content-Length" : "507", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cbe050a4-bcee-48b4-8d70-2548503208d4?api-version=2021-11-01", - "x-ms-request-id" : "cbe050a4-bcee-48b4-8d70-2548503208d4", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "d8e88749-ed86-4b60-b78b-50aa499fda1e", - "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/cbe050a4-bcee-48b4-8d70-2548503208d4?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "574dbbad-d1dd-45be-93fc-a26e431cb335" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:56 GMT", - "x-ms-correlation-request-id" : "8ef7be05-50b3-4661-a556-f0b1eb1f964b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054157Z:8ef7be05-50b3-4661-a556-f0b1eb1f964b", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e080dbbe-973f-4b7b-a61a-1318639da47e", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:41:26.7856652+00:00\",\r\n \"endTime\": \"2021-02-08T05:41:40.1302317+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cbe050a4-bcee-48b4-8d70-2548503208d4\"\r\n}", - "x-ms-client-request-id" : "574dbbad-d1dd-45be-93fc-a26e431cb335", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb424688-4691-4705-bdb9-281a10362e2d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:57 GMT", - "x-ms-correlation-request-id" : "1b5653b3-fbbc-40e0-9407-67d56bc14512", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054157Z:1b5653b3-fbbc-40e0-9407-67d56bc14512", - "Expires" : "-1", - "Content-Length" : "508", - "x-ms-request-id" : "c230c519-adc3-462a-b60a-b816941cf3fd", - "Body" : "{\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}", - "x-ms-client-request-id" : "fb424688-4691-4705-bdb9-281a10362e2d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7180bdb-52e9-4298-87aa-6c311fce9ae3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:41:57 GMT", - "x-ms-correlation-request-id" : "d1b28dba-b073-4685-88c6-f2e4633c37e9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054157Z:d1b28dba-b073-4685-88c6-f2e4633c37e9", - "Expires" : "-1", - "Content-Length" : "2438", - "x-ms-request-id" : "337147cf-8f34-49e4-923a-8048947455f1", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "e7180bdb-52e9-4298-87aa-6c311fce9ae3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "78cd3690-1ad9-4946-a073-da53f832b20e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:42:00 GMT", - "x-ms-correlation-request-id" : "92832f58-0e93-4f48-aab2-26bb1f06c5ca", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1195", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054200Z:92832f58-0e93-4f48-aab2-26bb1f06c5ca", - "Expires" : "-1", - "Content-Length" : "792", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ed5bcf9a-e35a-4d09-b782-95da8b78003b?api-version=2021-11-01", - "x-ms-request-id" : "ed5bcf9a-e35a-4d09-b782-95da8b78003b", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"}\r\n }\r\n}", - "x-ms-client-request-id" : "78cd3690-1ad9-4946-a073-da53f832b20e", - "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/ed5bcf9a-e35a-4d09-b782-95da8b78003b?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4dae40f-5045-4547-9ff5-8f57630559ae" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:42:30 GMT", - "x-ms-correlation-request-id" : "b5de6fa1-5611-49a0-b8ee-2fc5094934b7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054230Z:b5de6fa1-5611-49a0-b8ee-2fc5094934b7", - "Expires" : "-1", - "Content-Length" : "132", - "x-ms-request-id" : "854b1bd9-b090-4496-842c-a4277e6ffa6d", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:41:59.39665+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed5bcf9a-e35a-4d09-b782-95da8b78003b\"\r\n}", - "x-ms-client-request-id" : "c4dae40f-5045-4547-9ff5-8f57630559ae", - "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/ed5bcf9a-e35a-4d09-b782-95da8b78003b?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d85e8228-ed51-4769-812a-d31b95ffae62" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:43:00 GMT", - "x-ms-correlation-request-id" : "04ea8b55-eea3-4c9c-b97e-e98fc128b915", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054301Z:04ea8b55-eea3-4c9c-b97e-e98fc128b915", - "Expires" : "-1", - "Content-Length" : "132", - "x-ms-request-id" : "2996582f-2793-4537-b687-9abf7192f61e", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:41:59.39665+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed5bcf9a-e35a-4d09-b782-95da8b78003b\"\r\n}", - "x-ms-client-request-id" : "d85e8228-ed51-4769-812a-d31b95ffae62", - "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/ed5bcf9a-e35a-4d09-b782-95da8b78003b?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6bc7269-bc9d-427d-a0aa-a171de1fa0c7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:43:31 GMT", - "x-ms-correlation-request-id" : "48f2f852-a37f-4d48-b457-f35be8b35161", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054331Z:48f2f852-a37f-4d48-b457-f35be8b35161", - "Expires" : "-1", - "Content-Length" : "182", - "x-ms-request-id" : "54349a15-3d71-4ea3-a061-3a2db932c02b", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:41:59.39665+00:00\",\r\n \"endTime\": \"2021-02-08T05:43:14.8844359+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed5bcf9a-e35a-4d09-b782-95da8b78003b\"\r\n}", - "x-ms-client-request-id" : "c6bc7269-bc9d-427d-a0aa-a171de1fa0c7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "945e59d2-b7de-436e-92e1-dec0ba8f8ed4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:43:30 GMT", - "x-ms-correlation-request-id" : "152ca52e-5751-4aa7-bd32-fa9a95a9967e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054331Z:152ca52e-5751-4aa7-bd32-fa9a95a9967e", - "Expires" : "-1", - "Content-Length" : "793", - "x-ms-request-id" : "917b505d-d2c0-4e60-a766-b51273696ca7", - "Body" : "{\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"}\r\n }\r\n}", - "x-ms-client-request-id" : "945e59d2-b7de-436e-92e1-dec0ba8f8ed4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "300d338a-0a11-424c-9629-e75e42d8d253", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:43:31 GMT", - "x-ms-correlation-request-id" : "74331313-2e7c-4ea2-a8d4-d02773a3f1c5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054331Z:74331313-2e7c-4ea2-a8d4-d02773a3f1c5", - "Expires" : "-1", - "Content-Length" : "3290", - "x-ms-request-id" : "7055f90d-f630-4af1-8df0-7ceef766c584", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"}\r\n }\r\n },\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "300d338a-0a11-424c-9629-e75e42d8d253", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/CustomScriptForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee2a0424-01ab-4145-8087-54d8c4739c3e", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Mon, 08 Feb 2021 05:43:33 GMT", - "x-ms-correlation-request-id" : "7c49a33e-9463-4313-b936-3afff3903441", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1194", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054333Z:7c49a33e-9463-4313-b936-3afff3903441", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/20dbf9e5-87e1-45c1-9739-e987fe05aa46?api-version=2021-11-01", - "x-ms-request-id" : "20dbf9e5-87e1-45c1-9739-e987fe05aa46", - "x-ms-client-request-id" : "ee2a0424-01ab-4145-8087-54d8c4739c3e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/20dbf9e5-87e1-45c1-9739-e987fe05aa46?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189/extensions/VMAccessForLinux?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a5a3248-b993-4448-b6d1-2bee2ee28ec6", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Mon, 08 Feb 2021 05:43:32 GMT", - "x-ms-correlation-request-id" : "6de5d889-5591-4f49-8aa9-4a7cda2a36eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054333Z:6de5d889-5591-4f49-8aa9-4a7cda2a36eb", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/aad2dadb-750d-4f3b-a6e8-c55449d50441?api-version=2021-11-01", - "x-ms-request-id" : "aad2dadb-750d-4f3b-a6e8-c55449d50441", - "x-ms-client-request-id" : "2a5a3248-b993-4448-b6d1-2bee2ee28ec6", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/aad2dadb-750d-4f3b-a6e8-c55449d50441?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/20dbf9e5-87e1-45c1-9739-e987fe05aa46?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0740c981-4fc7-4b43-9204-9e2182e53461" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:03 GMT", - "x-ms-correlation-request-id" : "b9f51386-5158-4bf4-9748-72c0bc090404", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054403Z:b9f51386-5158-4bf4-9748-72c0bc090404", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e1ec8f7f-195b-4c66-87b6-92410f33e4cb", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:43:33.2446656+00:00\",\r\n \"endTime\": \"2021-02-08T05:43:58.5114331+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"20dbf9e5-87e1-45c1-9739-e987fe05aa46\"\r\n}", - "x-ms-client-request-id" : "0740c981-4fc7-4b43-9204-9e2182e53461", - "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/20dbf9e5-87e1-45c1-9739-e987fe05aa46?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "29b84c10-554a-4c0e-9ebc-b13298934dca" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:03 GMT", - "x-ms-correlation-request-id" : "a614617e-7aa3-4854-af16-aa76b3a3c22c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054403Z:a614617e-7aa3-4854-af16-aa76b3a3c22c", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "890e1105-8511-4c5c-b3d5-111a0d1b8ba6", - "x-ms-client-request-id" : "29b84c10-554a-4c0e-9ebc-b13298934dca" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/aad2dadb-750d-4f3b-a6e8-c55449d50441?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f22bf37c-ab47-42af-89c8-c808909327c3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:03 GMT", - "x-ms-correlation-request-id" : "d76db557-cb39-4d6d-8775-ef4adbdbd32c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054404Z:d76db557-cb39-4d6d-8775-ef4adbdbd32c", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "8719eae1-1129-4474-8328-196ffed5a389", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:43:33.6196774+00:00\",\r\n \"endTime\": \"2021-02-08T05:43:58.5270561+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aad2dadb-750d-4f3b-a6e8-c55449d50441\"\r\n}", - "x-ms-client-request-id" : "f22bf37c-ab47-42af-89c8-c808909327c3", - "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/aad2dadb-750d-4f3b-a6e8-c55449d50441?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "019a183b-74a2-40a0-867b-a80455af1ee7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:04 GMT", - "x-ms-correlation-request-id" : "476745f2-21c8-4ca4-ab3f-335cc77b44bf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054404Z:476745f2-21c8-4ca4-ab3f-335cc77b44bf", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "5dab818f-eff0-415e-b1bc-84a602445bba", - "x-ms-client-request-id" : "019a183b-74a2-40a0-867b-a80455af1ee7" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e122c27-84e7-43c7-b7b8-1946510bf19e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:04 GMT", - "x-ms-correlation-request-id" : "4ffe8966-5702-4a6b-89a4-f7857d76385c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054404Z:4ffe8966-5702-4a6b-89a4-f7857d76385c", - "Expires" : "-1", - "Content-Length" : "1852", - "x-ms-request-id" : "62170215-c32d-415e-a625-64a77da95a4f", - "Body" : "{\r\n \"name\": \"lvm011189\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/lvm011189\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"11779eef-020a-4ced-ad33-ce4f4ae5c101\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14.04.201911070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/lvm011189_OsDisk_1_059dacf37d90473684209a5b71bafed5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm011189\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic24017b63207\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "6e122c27-84e7-43c7-b7b8-1946510bf19e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5ec7f86-6937-4290-a363-c958181f5adc", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:44:09 GMT", - "x-ms-correlation-request-id" : "25e4e8fb-8b29-4ee4-911e-414c3d657b68", - "x-ms-arm-service-request-id" : "f879cec9-aa3d-4b8d-a118-71d651c8e25a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054410Z:25e4e8fb-8b29-4ee4-911e-414c3d657b68", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/695f4142-ee14-498a-be9b-19a793a5803d?api-version=2023-02-01", - "x-ms-request-id" : "695f4142-ee14-498a-be9b-19a793a5803d", - "Body" : "{\r\n \"name\": \"vnet63811033a2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2\",\r\n \"etag\": \"W/\\\"8d9cc395-6722-4bd9-9b3f-1d462425b406\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"86c6f1b1-25e6-4504-955c-c716ceb1f545\",\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/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8d9cc395-6722-4bd9-9b3f-1d462425b406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "f5ec7f86-6937-4290-a363-c958181f5adc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip135077de?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "af20323c-8ca7-41c5-85a8-b48a23118546", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:44:10 GMT", - "x-ms-correlation-request-id" : "2b481d98-3960-42de-993e-5ab93ca299e4", - "x-ms-arm-service-request-id" : "9d7a1a9c-e32c-4af0-b70d-4dec4157ec6f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054410Z:2b481d98-3960-42de-993e-5ab93ca299e4", - "Expires" : "-1", - "Content-Length" : "788", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/feb58d6b-3541-40df-936e-9f92d370a6d1?api-version=2023-02-01", - "x-ms-request-id" : "feb58d6b-3541-40df-936e-9f92d370a6d1", - "Body" : "{\r\n \"name\": \"pip135077de\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip135077de\",\r\n \"etag\": \"W/\\\"fb90121e-05fe-44b9-951a-c7cc00f7bc9a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8645af16-cf35-470a-9c5f-c9e01a281781\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip22636167d92a6\",\r\n \"fqdn\": \"rgpip22636167d92a6.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "af20323c-8ca7-41c5-85a8-b48a23118546", - "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/feb58d6b-3541-40df-936e-9f92d370a6d1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "29d0c94b-3d84-448a-9c07-1fdfb221a991" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:11 GMT", - "x-ms-correlation-request-id" : "b8a21fd1-0fb0-4d2b-9d24-8a0ff2c27890", - "x-ms-arm-service-request-id" : "11efe013-7508-4467-9509-0e934bffc2e8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054411Z:b8a21fd1-0fb0-4d2b-9d24-8a0ff2c27890", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "b450752d-85b6-41ef-92fa-430b84107b11", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "29d0c94b-3d84-448a-9c07-1fdfb221a991", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip135077de?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "464bcf68-90e0-449c-8401-4203b09a7bff" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:11 GMT", - "x-ms-correlation-request-id" : "296f1779-e118-4f8b-a164-8fc0b49ab5d4", - "x-ms-arm-service-request-id" : "91398caa-5b71-4805-b002-5cd28fbbfad6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"85d4f9b9-fbe4-4872-b26b-3c543e1d7b16\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054412Z:296f1779-e118-4f8b-a164-8fc0b49ab5d4", - "Expires" : "-1", - "Content-Length" : "789", - "x-ms-request-id" : "df7353c8-10d8-4185-a256-c94b46e4c8aa", - "Body" : "{\r\n \"name\": \"pip135077de\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip135077de\",\r\n \"etag\": \"W/\\\"85d4f9b9-fbe4-4872-b26b-3c543e1d7b16\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8645af16-cf35-470a-9c5f-c9e01a281781\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip22636167d92a6\",\r\n \"fqdn\": \"rgpip22636167d92a6.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "464bcf68-90e0-449c-8401-4203b09a7bff", - "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/695f4142-ee14-498a-be9b-19a793a5803d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3fe390c5-e6c0-4c29-9212-37e57bd2cd54" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:13 GMT", - "x-ms-correlation-request-id" : "86622fc8-065c-4a91-8114-8263ff3008a1", - "x-ms-arm-service-request-id" : "c6a98d8b-5115-4e90-8363-005d0c929f86", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054413Z:86622fc8-065c-4a91-8114-8263ff3008a1", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "9633161f-3081-4667-8975-1d6f6ae45321", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "3fe390c5-e6c0-4c29-9212-37e57bd2cd54", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3405d0ef-ded2-41a2-b046-4c713a7c2928" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:13 GMT", - "x-ms-correlation-request-id" : "8cf659c8-9d91-43e2-a422-7c73634e9bca", - "x-ms-arm-service-request-id" : "2167bffd-037b-4ec5-8162-6a38e939931e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"e6cba7a0-9acc-40a8-906f-8fb34878f2fb\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054413Z:8cf659c8-9d91-43e2-a422-7c73634e9bca", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "fd89bd2f-0a0b-4e81-9a0d-6d2cad0112f9", - "Body" : "{\r\n \"name\": \"vnet63811033a2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2\",\r\n \"etag\": \"W/\\\"e6cba7a0-9acc-40a8-906f-8fb34878f2fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"86c6f1b1-25e6-4504-955c-c716ceb1f545\",\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/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e6cba7a0-9acc-40a8-906f-8fb34878f2fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "3405d0ef-ded2-41a2-b046-4c713a7c2928", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bb7c3c4-8fc1-403c-8074-41a56ac58eee", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:44:16 GMT", - "x-ms-correlation-request-id" : "32703443-a06c-44a8-ac64-ea29773a9037", - "x-ms-arm-service-request-id" : "1d95772f-301a-4298-b1bb-f2565f9e8cb0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054417Z:32703443-a06c-44a8-ac64-ea29773a9037", - "Expires" : "-1", - "Content-Length" : "1866", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a868a9f5-3d8d-4b89-938d-7762eff95cef?api-version=2023-02-01", - "x-ms-request-id" : "a868a9f5-3d8d-4b89-938d-7762eff95cef", - "Body" : "{\r\n \"name\": \"nic65657c6fe4b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\r\n \"etag\": \"W/\\\"2853d29e-3d84-4bbf-959d-04a82a9b791f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a203f78-9b36-43e3-a057-f43cd1c6f0a0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2853d29e-3d84-4bbf-959d-04a82a9b791f\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/publicIPAddresses/pip135077de\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Network/virtualNetworks/vnet63811033a2/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\": \"why2nbxgeucelfk2y2lm3mpvif.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "5bb7c3c4-8fc1-403c-8074-41a56ac58eee", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "11e6728a-d91b-4663-8fac-4c87e4dfa9e2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:44:20 GMT", - "x-ms-correlation-request-id" : "56e946a5-7822-4345-b46d-c43537aa9832", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054420Z:56e946a5-7822-4345-b46d-c43537aa9832", - "Expires" : "-1", - "Content-Length" : "1617", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8c96a50c-c930-451a-b69c-961d5985bcbb?api-version=2021-11-01", - "x-ms-request-id" : "8c96a50c-c930-451a-b69c-961d5985bcbb", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "11e6728a-d91b-4663-8fac-4c87e4dfa9e2", - "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/8c96a50c-c930-451a-b69c-961d5985bcbb?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "063cc307-0f40-4a7e-b0c5-8b0a3f692383" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:44:30 GMT", - "x-ms-correlation-request-id" : "a3b23b4a-efaf-4036-9705-c1b688e7dae3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054431Z:a3b23b4a-efaf-4036-9705-c1b688e7dae3", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d2398680-9009-4a87-9253-f0151464ce72", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:44:19.7154883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c96a50c-c930-451a-b69c-961d5985bcbb\"\r\n}", - "x-ms-client-request-id" : "063cc307-0f40-4a7e-b0c5-8b0a3f692383", - "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/8c96a50c-c930-451a-b69c-961d5985bcbb?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7236a3e-be90-4b54-a8fc-063da60061d5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:45:20 GMT", - "x-ms-correlation-request-id" : "5813664d-e6e8-429c-b3eb-0a3a25049e6b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054521Z:5813664d-e6e8-429c-b3eb-0a3a25049e6b", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "201ba012-4c58-49fb-be04-d8dcf5a4d640", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:44:19.7154883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c96a50c-c930-451a-b69c-961d5985bcbb\"\r\n}", - "x-ms-client-request-id" : "f7236a3e-be90-4b54-a8fc-063da60061d5", - "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/8c96a50c-c930-451a-b69c-961d5985bcbb?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "768239f3-35fb-4ae5-84cf-5bff5345a9b1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:45:51 GMT", - "x-ms-correlation-request-id" : "9d1d9dbc-6e96-4d7c-a869-787a7108245e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054551Z:9d1d9dbc-6e96-4d7c-a869-787a7108245e", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "0babdd91-49fb-430f-8f72-7b1cc572e057", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:44:19.7154883+00:00\",\r\n \"endTime\": \"2021-02-08T05:45:43.5630578+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8c96a50c-c930-451a-b69c-961d5985bcbb\"\r\n}", - "x-ms-client-request-id" : "768239f3-35fb-4ae5-84cf-5bff5345a9b1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8741487b-b9ae-4362-8ed4-c753d99ddf8a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:45:52 GMT", - "x-ms-correlation-request-id" : "a4dba2de-c5f4-4d2e-a19a-40cb5e42d3f3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054552Z:a4dba2de-c5f4-4d2e-a19a-40cb5e42d3f3", - "Expires" : "-1", - "Content-Length" : "1877", - "x-ms-request-id" : "9fdb3c03-5a05-479b-9d01-011750e0d6cb", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "8741487b-b9ae-4362-8ed4-c753d99ddf8a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "af55f687-fdbc-4137-8e96-4e73dc33046d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:45:57 GMT", - "x-ms-correlation-request-id" : "5f4de00c-991e-4726-b537-7f98b743b84f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1192", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054557Z:5f4de00c-991e-4726-b537-7f98b743b84f", - "Expires" : "-1", - "Content-Length" : "790", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fc643f29-1204-4c81-909a-8fc4ad98615a?api-version=2021-11-01", - "x-ms-request-id" : "fc643f29-1204-4c81-909a-8fc4ad98615a", - "Body" : "{\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n}", - "x-ms-client-request-id" : "af55f687-fdbc-4137-8e96-4e73dc33046d", - "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/fc643f29-1204-4c81-909a-8fc4ad98615a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f96c9ef-f418-4574-ba99-2bb61dc280c6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:46:27 GMT", - "x-ms-correlation-request-id" : "7a93e6bd-51b2-4a46-ba7e-4bc5d04c0d6f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054628Z:7a93e6bd-51b2-4a46-ba7e-4bc5d04c0d6f", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "723be7b1-5dc8-4115-b02c-49346d59e196", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:45:55.8604704+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc643f29-1204-4c81-909a-8fc4ad98615a\"\r\n}", - "x-ms-client-request-id" : "6f96c9ef-f418-4574-ba99-2bb61dc280c6", - "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/fc643f29-1204-4c81-909a-8fc4ad98615a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c27356d-676f-4f7e-8cf8-dab80e43cfa7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:46:58 GMT", - "x-ms-correlation-request-id" : "23e7d6eb-99ab-4267-af79-cbfceb5e8e32", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054658Z:23e7d6eb-99ab-4267-af79-cbfceb5e8e32", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "be2c509b-7eed-4b4b-8d6c-f71b94d322ab", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:45:55.8604704+00:00\",\r\n \"endTime\": \"2021-02-08T05:46:50.8785691+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc643f29-1204-4c81-909a-8fc4ad98615a\"\r\n}", - "x-ms-client-request-id" : "3c27356d-676f-4f7e-8cf8-dab80e43cfa7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "80cd0d7f-386d-49c3-8cf6-0cfaaba4156b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:46:58 GMT", - "x-ms-correlation-request-id" : "26aefa3f-09db-41e1-97f9-fe333d0e257f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054658Z:26aefa3f-09db-41e1-97f9-fe333d0e257f", - "Expires" : "-1", - "Content-Length" : "791", - "x-ms-request-id" : "1710ca6a-0bd4-463c-81f9-d490af838a88", - "Body" : "{\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n}", - "x-ms-client-request-id" : "80cd0d7f-386d-49c3-8cf6-0cfaaba4156b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e7e16bd-b986-4d43-9d00-38cf4e38dd61", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:46:58 GMT", - "x-ms-correlation-request-id" : "df71f99e-5eda-41ae-8fce-381afe6c3c93", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054659Z:df71f99e-5eda-41ae-8fce-381afe6c3c93", - "Expires" : "-1", - "Content-Length" : "2750", - "x-ms-request-id" : "cc0d96fb-59d5-44f4-92ad-68512f6b372c", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "1e7e16bd-b986-4d43-9d00-38cf4e38dd61", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6650d51-082e-4470-a169-8335855f7c2e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Mon, 08 Feb 2021 05:47:03 GMT", - "x-ms-correlation-request-id" : "4ff0422a-e150-4999-b012-8ff048a1b977", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054704Z:4ff0422a-e150-4999-b012-8ff048a1b977", - "Expires" : "-1", - "Content-Length" : "491", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/39c19580-8f0b-43e0-84f1-05b0d3487ebf?api-version=2021-11-01", - "x-ms-request-id" : "39c19580-8f0b-43e0-84f1-05b0d3487ebf", - "Body" : "{\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n}", - "x-ms-client-request-id" : "b6650d51-082e-4470-a169-8335855f7c2e", - "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/39c19580-8f0b-43e0-84f1-05b0d3487ebf?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ace97db-9962-4424-95fb-2c0529fcd35e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:47:34 GMT", - "x-ms-correlation-request-id" : "154c0d3a-a509-4337-b54e-2e8eb1e9abee", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054734Z:154c0d3a-a509-4337-b54e-2e8eb1e9abee", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "16a21082-47d9-45e2-b5c1-ae22e0b1bf05", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:47:03.4260129+00:00\",\r\n \"endTime\": \"2021-02-08T05:47:33.8493085+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"39c19580-8f0b-43e0-84f1-05b0d3487ebf\"\r\n}", - "x-ms-client-request-id" : "7ace97db-9962-4424-95fb-2c0529fcd35e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7efa36a0-ea72-4485-8313-702a6bf5e65d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:47:34 GMT", - "x-ms-correlation-request-id" : "06d54af6-e098-4c56-9f3b-c05021d2455b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054735Z:06d54af6-e098-4c56-9f3b-c05021d2455b", - "Expires" : "-1", - "Content-Length" : "492", - "x-ms-request-id" : "4d2b405e-f781-4a8b-a16a-693eb71cabb8", - "Body" : "{\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n}", - "x-ms-client-request-id" : "7efa36a0-ea72-4485-8313-702a6bf5e65d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "244f1358-67e7-4291-8406-490145b509a8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:47:34 GMT", - "x-ms-correlation-request-id" : "6a175539-d382-457a-b56b-58340e0b0c70", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054735Z:6a175539-d382-457a-b56b-58340e0b0c70", - "Expires" : "-1", - "Content-Length" : "3297", - "x-ms-request-id" : "f873b296-1046-4d5f-be08-b4e497dd1494", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n },\r\n {\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "244f1358-67e7-4291-8406-490145b509a8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5bbaa54-ed17-4264-97c0-d6f27f3653df", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:47:34 GMT", - "x-ms-correlation-request-id" : "c8e5ef31-9a57-4619-a439-1d22752a3282", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054735Z:c8e5ef31-9a57-4619-a439-1d22752a3282", - "Expires" : "-1", - "Content-Length" : "491", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c560038e-20c6-4da1-92fd-1a0e18ba9293?api-version=2021-11-01", - "x-ms-request-id" : "c560038e-20c6-4da1-92fd-1a0e18ba9293", - "Body" : "{\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n}", - "x-ms-client-request-id" : "e5bbaa54-ed17-4264-97c0-d6f27f3653df", - "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/c560038e-20c6-4da1-92fd-1a0e18ba9293?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff3f0a29-cbcb-41cb-be24-64ae5eaf5f19" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:48:05 GMT", - "x-ms-correlation-request-id" : "506452ca-b4a1-4ccd-b4dd-441744bbf95c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054805Z:506452ca-b4a1-4ccd-b4dd-441744bbf95c", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "be23c02f-b23a-46da-9568-ea0ee7c50d4e", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:47:35.5368592+00:00\",\r\n \"endTime\": \"2021-02-08T05:47:45.8029464+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c560038e-20c6-4da1-92fd-1a0e18ba9293\"\r\n}", - "x-ms-client-request-id" : "ff3f0a29-cbcb-41cb-be24-64ae5eaf5f19", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a394c656-8efd-46a0-bad2-4410070ec22c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:48:06 GMT", - "x-ms-correlation-request-id" : "c93365bf-f78d-4b80-8b99-b246bd4f3936", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054806Z:c93365bf-f78d-4b80-8b99-b246bd4f3936", - "Expires" : "-1", - "Content-Length" : "492", - "x-ms-request-id" : "a75167d4-56f9-4334-b85a-adae9da7486f", - "Body" : "{\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n}", - "x-ms-client-request-id" : "a394c656-8efd-46a0-bad2-4410070ec22c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5ffa1bd-59b5-4270-9c72-6729396cfb91", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:48:05 GMT", - "x-ms-correlation-request-id" : "9549abeb-db69-43bb-bdcf-4b3528aa16d0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054806Z:9549abeb-db69-43bb-bdcf-4b3528aa16d0", - "Expires" : "-1", - "Content-Length" : "3297", - "x-ms-request-id" : "c08ee8fa-5fdb-4413-b945-d1b105e6c8d7", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n },\r\n {\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "c5ffa1bd-59b5-4270-9c72-6729396cfb91", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "aca4d359-e510-479f-8502-fcb3559543ca", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:48:06 GMT", - "x-ms-correlation-request-id" : "815d42ee-b71c-4c3e-859a-1123ab08a12c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1189", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054806Z:815d42ee-b71c-4c3e-859a-1123ab08a12c", - "Expires" : "-1", - "Content-Length" : "491", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/621dba0a-6daa-46f2-9b9e-ed3b0669d216?api-version=2021-11-01", - "x-ms-request-id" : "621dba0a-6daa-46f2-9b9e-ed3b0669d216", - "Body" : "{\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n}", - "x-ms-client-request-id" : "aca4d359-e510-479f-8502-fcb3559543ca", - "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/621dba0a-6daa-46f2-9b9e-ed3b0669d216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "34ee6f44-9e6b-4f40-a0ab-1dea650c30de" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:48:37 GMT", - "x-ms-correlation-request-id" : "c55e5348-fff6-4bfd-a10e-cdeda842f476", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054837Z:c55e5348-fff6-4bfd-a10e-cdeda842f476", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "fdd4ca18-2c53-46ab-bfe3-846521b64c06", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:48:06.6946782+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"621dba0a-6daa-46f2-9b9e-ed3b0669d216\"\r\n}", - "x-ms-client-request-id" : "34ee6f44-9e6b-4f40-a0ab-1dea650c30de", - "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/621dba0a-6daa-46f2-9b9e-ed3b0669d216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "06ef46c7-0bae-47c6-8286-41eeca76c863" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:49:07 GMT", - "x-ms-correlation-request-id" : "88369e07-2589-4ad9-8157-9f2014496752", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054907Z:88369e07-2589-4ad9-8157-9f2014496752", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "a76fd24e-fed0-440f-90eb-a58025cf2214", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:48:06.6946782+00:00\",\r\n \"endTime\": \"2021-02-08T05:48:37.055582+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"621dba0a-6daa-46f2-9b9e-ed3b0669d216\"\r\n}", - "x-ms-client-request-id" : "06ef46c7-0bae-47c6-8286-41eeca76c863", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8e9bcea-741b-4d85-b7ff-09dcde1f5dfd" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:49:07 GMT", - "x-ms-correlation-request-id" : "81e9b467-b7e6-47fe-8f89-ed4bebe11ff9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054907Z:81e9b467-b7e6-47fe-8f89-ed4bebe11ff9", - "Expires" : "-1", - "Content-Length" : "492", - "x-ms-request-id" : "39d406ae-396c-4b62-90fc-4f7b2c8a816c", - "Body" : "{\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n}", - "x-ms-client-request-id" : "d8e9bcea-741b-4d85-b7ff-09dcde1f5dfd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "48b96d12-9931-43cc-bf07-a12beda0a32e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:49:07 GMT", - "x-ms-correlation-request-id" : "75d7344e-b604-479a-bbdc-8688e7d8faff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054907Z:75d7344e-b604-479a-bbdc-8688e7d8faff", - "Expires" : "-1", - "Content-Length" : "3297", - "x-ms-request-id" : "f16b5ca8-b8d4-4c19-bac1-152a666733b4", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n },\r\n {\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "48b96d12-9931-43cc-bf07-a12beda0a32e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/VMAccessAgent?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad641963-fdad-49d8-b501-acf95393044d", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Mon, 08 Feb 2021 05:49:08 GMT", - "x-ms-correlation-request-id" : "e4063aff-5d33-4eb0-b16b-2f21991c2360", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1188", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054908Z:e4063aff-5d33-4eb0-b16b-2f21991c2360", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a40911a-b754-42fb-b270-aa98a71f7ddc?api-version=2021-11-01", - "x-ms-request-id" : "5a40911a-b754-42fb-b270-aa98a71f7ddc", - "x-ms-client-request-id" : "ad641963-fdad-49d8-b501-acf95393044d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a40911a-b754-42fb-b270-aa98a71f7ddc?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a40911a-b754-42fb-b270-aa98a71f7ddc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c209bdd-1b34-4bce-bdb8-f4a936fe71c5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:49:38 GMT", - "x-ms-correlation-request-id" : "e9d4148a-a55b-4750-a09a-e3e6322bc89f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T054939Z:e9d4148a-a55b-4750-a09a-e3e6322bc89f", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "b8f588bf-ec99-4b47-8bc4-fc38c501292d", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:49:08.6196239+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a40911a-b754-42fb-b270-aa98a71f7ddc\"\r\n}", - "x-ms-client-request-id" : "5c209bdd-1b34-4bce-bdb8-f4a936fe71c5", - "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/5a40911a-b754-42fb-b270-aa98a71f7ddc?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "95883d34-6bc1-4f30-9a19-63b34f054c4f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:50:08 GMT", - "x-ms-correlation-request-id" : "5029f6fc-a90a-43e8-9a8d-1793ed35a5ff", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T055009Z:5029f6fc-a90a-43e8-9a8d-1793ed35a5ff", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4f5b55a6-d7be-439a-82a4-9af0fbb9d39b", - "Body" : "{\r\n \"startTime\": \"2021-02-08T05:49:08.6196239+00:00\",\r\n \"endTime\": \"2021-02-08T05:49:38.9804532+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5a40911a-b754-42fb-b270-aa98a71f7ddc\"\r\n}", - "x-ms-client-request-id" : "95883d34-6bc1-4f30-9a19-63b34f054c4f", - "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/5a40911a-b754-42fb-b270-aa98a71f7ddc?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "00a8c836-e758-4be6-a5e3-7c44f586adb9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:50:08 GMT", - "x-ms-correlation-request-id" : "83130efa-a344-4285-a271-33c21528d80f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29960", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T055009Z:83130efa-a344-4285-a271-33c21528d80f", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "260b1c4f-625d-4670-9a64-e06d11b04676", - "x-ms-client-request-id" : "00a8c836-e758-4be6-a5e3-7c44f586adb9" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c884dc2-fcb6-4a77-90c5-4617a38d8c88", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "Date" : "Mon, 08 Feb 2021 05:50:09 GMT", - "x-ms-correlation-request-id" : "ae26de39-79f9-4cbd-981b-974cf46152cb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T055009Z:ae26de39-79f9-4cbd-981b-974cf46152cb", - "Expires" : "-1", - "Content-Length" : "2750", - "x-ms-request-id" : "e252e18d-a007-4756-bade-467c822e3cf4", - "Body" : "{\r\n \"name\": \"wvm98452e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d4dd645-81a2-4b4c-b237-a17feb125d50\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/disks/wvm98452e_OsDisk_1_1c04a9b640434fea987e35f6ae3a1b7a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm98452e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcove1111096/providers/Microsoft.Network/networkInterfaces/nic65657c6fe4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove1111096/providers/Microsoft.Compute/virtualMachines/wvm98452e/extensions/CustomScriptExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "4c884dc2-fcb6-4a77-90c5-4617a38d8c88", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcove1111096?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d528a11-7a58-4d15-8147-319acb1ccad7", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Mon, 08 Feb 2021 05:50:12 GMT", - "x-ms-correlation-request-id" : "7c4376d2-6192-439f-a6da-f30ccdfbbe8d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210208T055013Z:7c4376d2-6192-439f-a6da-f30ccdfbbe8d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "7c4376d2-6192-439f-a6da-f30ccdfbbe8d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUxMTExMDk2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "lvm011189", "wvm98452e", "rgcove1111096", "rgpip18343978760e3", "rgpip22636167d92a6", "nic24017b63207", "vnet88519cd876", "pip43410980", "nic65657c6fe4b", "vnet63811033a2", "pip135077de" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSet.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSet.json deleted file mode 100644 index 06b5fe5f137e..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSet.json +++ /dev/null @@ -1,1637 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs1245563?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f05b0949-1d24-454b-8846-b1483eb70bad", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:07 GMT", - "x-ms-correlation-request-id" : "5fa628d6-8a23-4993-b389-5e15c274437d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:5fa628d6-8a23-4993-b389-5e15c274437d", - "Expires" : "-1", - "Content-Length" : "224", - "x-ms-request-id" : "5fa628d6-8a23-4993-b389-5e15c274437d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563\",\"name\":\"rgcovs1245563\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"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/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cac1eb54-0e74-41d1-b922-e55fc1b4154c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "8e7ea2d4-0fbc-4e55-be6b-2751d1976b4b", - "x-ms-arm-service-request-id" : "408c723b-eb58-4f79-a04e-5627a58ce610", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:8e7ea2d4-0fbc-4e55-be6b-2751d1976b4b", - "Expires" : "-1", - "Content-Length" : "1355", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/23952b11-4e9e-4e9d-a651-d83d343a24cd?api-version=2023-02-01", - "x-ms-request-id" : "23952b11-4e9e-4e9d-a651-d83d343a24cd", - "Body" : "{\r\n \"name\": \"vnet68817363af4b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b\",\r\n \"etag\": \"W/\\\"a7285738-535b-41c6-970d-7b4f7d7946ac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1bd19ab1-9038-4b60-9d9e-52933f0116d8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\",\r\n \"etag\": \"W/\\\"a7285738-535b-41c6-970d-7b4f7d7946ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "cac1eb54-0e74-41d1-b922-e55fc1b4154c", - "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/eastus2/operations/23952b11-4e9e-4e9d-a651-d83d343a24cd?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eba7426f-82f2-487c-bb06-7c9be33743ab" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "4f72d910-f42d-4be5-924a-c3011c363317", - "x-ms-arm-service-request-id" : "316302ea-7848-44ab-874d-125d047a6b14", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:4f72d910-f42d-4be5-924a-c3011c363317", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "c43d70c4-994f-4747-9afc-c0ccde77e409", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "eba7426f-82f2-487c-bb06-7c9be33743ab", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1796da1e-589f-4f60-aabb-e2e96586087a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "ad5d535c-f13c-427d-9e73-a9df36abb3f4", - "x-ms-arm-service-request-id" : "6bc8c62f-4143-4396-9f90-517fd82cd1f0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"87fb973e-32cd-4fd1-9a6f-63b6f655c420\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:ad5d535c-f13c-427d-9e73-a9df36abb3f4", - "Expires" : "-1", - "Content-Length" : "1357", - "x-ms-request-id" : "543b1acd-8609-4606-afc1-4072a0985ca2", - "Body" : "{\r\n \"name\": \"vnet68817363af4b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b\",\r\n \"etag\": \"W/\\\"87fb973e-32cd-4fd1-9a6f-63b6f655c420\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1bd19ab1-9038-4b60-9d9e-52933f0116d8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\",\r\n \"etag\": \"W/\\\"87fb973e-32cd-4fd1-9a6f-63b6f655c420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "1796da1e-589f-4f60-aabb-e2e96586087a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/virtualNetworkPeerings?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "36fdf1eb-8d45-4281-92c6-485a1c8f12bb", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "70568425-0587-48a4-89c8-ec81a1705873", - "x-ms-arm-service-request-id" : "308edb3a-1b43-49cb-9868-e1871ba31407", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:70568425-0587-48a4-89c8-ec81a1705873", - "Expires" : "-1", - "Content-Length" : "19", - "x-ms-request-id" : "80de5d53-7d52-433a-a2a7-775202b85aeb", - "Body" : "{\r\n \"value\": []\r\n}", - "x-ms-client-request-id" : "36fdf1eb-8d45-4281-92c6-485a1c8f12bb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f2fe6cd-3ac8-433e-81d8-0c030e7826f6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "fd696e85-eef6-4c77-87db-a17127cf8ea0", - "x-ms-arm-service-request-id" : "a804c5be-b12e-44be-bc10-189c252ebd55", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:fd696e85-eef6-4c77-87db-a17127cf8ea0", - "Expires" : "-1", - "Content-Length" : "804", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/0af6da31-5ca8-4c39-8be1-18a9cc42739b?api-version=2023-02-01", - "x-ms-request-id" : "0af6da31-5ca8-4c39-8be1-18a9cc42739b", - "Body" : "{\r\n \"name\": \"pip-intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\",\r\n \"etag\": \"W/\\\"27bbcded-4b5d-498f-8fcd-84f53947528f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"56818ad0-2166-4bd9-9b06-848926c6bf4f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-13596b35\",\r\n \"fqdn\": \"pip-intlb-13596b35.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "4f2fe6cd-3ac8-433e-81d8-0c030e7826f6", - "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/eastus2/operations/0af6da31-5ca8-4c39-8be1-18a9cc42739b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fb50f53-018b-4c8c-89a8-31a77f41f34c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:28 GMT", - "x-ms-correlation-request-id" : "78023a8f-7cba-4332-ba5a-bbcf5eef5b2e", - "x-ms-arm-service-request-id" : "781829da-2e26-4b90-b167-1b9ed978ee5b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172229Z:78023a8f-7cba-4332-ba5a-bbcf5eef5b2e", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "51f284e8-038a-4f16-b24e-e6c7b8645a5e", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "2fb50f53-018b-4c8c-89a8-31a77f41f34c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25502906-0058-4f40-9cd2-2adfa28c2ca5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:29 GMT", - "x-ms-correlation-request-id" : "930868b4-8c18-4102-b079-557431dd76da", - "x-ms-arm-service-request-id" : "b6cfa49f-9136-4044-a445-e16a7faba281", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"69a5b8fe-a6db-4fe5-800f-61e4927bda0a\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172229Z:930868b4-8c18-4102-b079-557431dd76da", - "Expires" : "-1", - "Content-Length" : "805", - "x-ms-request-id" : "cf0e9ad7-e38c-4458-a359-a3246042bc38", - "Body" : "{\r\n \"name\": \"pip-intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\",\r\n \"etag\": \"W/\\\"69a5b8fe-a6db-4fe5-800f-61e4927bda0a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"56818ad0-2166-4bd9-9b06-848926c6bf4f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-13596b35\",\r\n \"fqdn\": \"pip-intlb-13596b35.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "25502906-0058-4f40-9cd2-2adfa28c2ca5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f7387f5-88fa-4073-bf3e-aa7e7afb19b0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "5d79a28a-c79a-4a2a-8a2b-14705b39ebae", - "x-ms-arm-service-request-id" : "7f009356-280d-415c-a322-00bea34caa4a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:5d79a28a-c79a-4a2a-8a2b-14705b39ebae", - "Expires" : "-1", - "Content-Length" : "10810", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/0bdb4b20-6d81-4af4-97a2-aa3a8307ee90?api-version=2023-02-01", - "x-ms-request-id" : "0bdb4b20-6d81-4af4-97a2-aa3a8307ee90", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "8f7387f5-88fa-4073-bf3e-aa7e7afb19b0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bee4f65-8667-4ea3-9613-d317a6d192d8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "a8637a0a-7dc2-4724-ae1c-8f9eb9ecfd81", - "x-ms-arm-service-request-id" : "23cba7bb-4139-4a25-af27-28da70fdc436", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"0c240720-5c28-4080-9991-bd1f16ff146b\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:a8637a0a-7dc2-4724-ae1c-8f9eb9ecfd81", - "Expires" : "-1", - "Content-Length" : "10810", - "x-ms-request-id" : "3151bb6b-8740-4767-80f8-7d2ef58dea27", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"0c240720-5c28-4080-9991-bd1f16ff146b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "0bee4f65-8667-4ea3-9613-d317a6d192d8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "397c9fc6-7d33-402d-9820-578dae0d7f8e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "7", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "525147e1-eecc-4fdc-b4a0-4287634db808", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;179,Microsoft.Compute/CreateVMScaleSet30Min;903,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3608,Microsoft.Compute/VmssQueuedVMOperations;4793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:525147e1-eecc-4fdc-b4a0-4287634db808", - "Expires" : "-1", - "Content-Length" : "4875", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "x-ms-request-id" : "740a97cd-0db9-4d0c-a5f2-c3f9ca507f62", - "Body" : "{\r\n \"name\": \"vmss3486402441e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm55090\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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 \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"02aa8dd8-3d47-4771-8605-63590fb2a346\"\r\n }\r\n}", - "x-ms-client-request-id" : "397c9fc6-7d33-402d-9820-578dae0d7f8e", - "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/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "16e9c9c1-b3e7-4a86-9311-051995c57ea5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "d2aa18c5-d58d-46a2-81a5-29c0a83c7884", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172248Z:d2aa18c5-d58d-46a2-81a5-29c0a83c7884", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "9ff495f6-983d-4e6d-8b25-e69bdab49709", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6282264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"740a97cd-0db9-4d0c-a5f2-c3f9ca507f62\"\r\n}", - "x-ms-client-request-id" : "16e9c9c1-b3e7-4a86-9311-051995c57ea5", - "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/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "baa16759-a602-4c91-ac4e-9284ea0244c2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11878", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:48 GMT", - "x-ms-correlation-request-id" : "a8349c7a-c323-4cdd-8690-49e15cd80f08", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172349Z:a8349c7a-c323-4cdd-8690-49e15cd80f08", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "69484ba3-c9e0-41a0-a452-2df404cec150", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6282264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"740a97cd-0db9-4d0c-a5f2-c3f9ca507f62\"\r\n}", - "x-ms-client-request-id" : "baa16759-a602-4c91-ac4e-9284ea0244c2", - "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/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "77b82241-f859-419b-975e-fc014baa0e13" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:19 GMT", - "x-ms-correlation-request-id" : "46a070a6-a00c-4343-8929-0e9687b724a7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172419Z:46a070a6-a00c-4343-8929-0e9687b724a7", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "43967a7e-70e5-48ae-8fcf-2c23b9ffdf73", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6282264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"740a97cd-0db9-4d0c-a5f2-c3f9ca507f62\"\r\n}", - "x-ms-client-request-id" : "77b82241-f859-419b-975e-fc014baa0e13", - "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/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f73e55a7-26a5-45d1-93ec-efd20b4a1700" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11810", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:49 GMT", - "x-ms-correlation-request-id" : "3a58c912-3051-405d-a00f-69b3f9853207", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172450Z:3a58c912-3051-405d-a00f-69b3f9853207", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "8d1699bc-3316-40b8-add0-091bbb0b24c4", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6282264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"740a97cd-0db9-4d0c-a5f2-c3f9ca507f62\"\r\n}", - "x-ms-client-request-id" : "f73e55a7-26a5-45d1-93ec-efd20b4a1700", - "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/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9a5eb52-066f-4556-b8dd-52c87243c1f3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11910", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:20 GMT", - "x-ms-correlation-request-id" : "11b30938-489b-4daf-b910-4d7113c17c17", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172520Z:11b30938-489b-4daf-b910-4d7113c17c17", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "2d7a08a2-a567-424c-910f-049088583053", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6282264+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"740a97cd-0db9-4d0c-a5f2-c3f9ca507f62\"\r\n}", - "x-ms-client-request-id" : "f9a5eb52-066f-4556-b8dd-52c87243c1f3", - "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/eastus2/operations/740a97cd-0db9-4d0c-a5f2-c3f9ca507f62?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "77d05361-83c1-416b-80a0-9217301d00d8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11864", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:49 GMT", - "x-ms-correlation-request-id" : "c05868d7-9a6e-414e-92b0-baf1ea360c31", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172550Z:c05868d7-9a6e-414e-92b0-baf1ea360c31", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "9e28c2c8-3e08-4e25-954e-0aafff338052", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6282264+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:40.7962672+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"740a97cd-0db9-4d0c-a5f2-c3f9ca507f62\"\r\n}", - "x-ms-client-request-id" : "77d05361-83c1-416b-80a0-9217301d00d8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "49a1a590-d484-46b9-8eb8-c1f2eafd43c4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:50 GMT", - "x-ms-correlation-request-id" : "4eb5e467-7137-4312-b8e9-c09d23e71b0d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;184,Microsoft.Compute/GetVMScaleSet30Min;1284", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172551Z:4eb5e467-7137-4312-b8e9-c09d23e71b0d", - "Expires" : "-1", - "Content-Length" : "4876", - "x-ms-request-id" : "5c0eeea6-488f-41a2-a80c-8afb1223ae08", - "Body" : "{\r\n \"name\": \"vmss3486402441e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm55090\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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 \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"02aa8dd8-3d47-4771-8605-63590fb2a346\"\r\n }\r\n}", - "x-ms-client-request-id" : "49a1a590-d484-46b9-8eb8-c1f2eafd43c4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ca78353-0732-464a-a9f1-6ec178d9deaf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:51 GMT", - "x-ms-correlation-request-id" : "0b0437c9-3df3-4069-94e2-7d67c5399efa", - "x-ms-arm-service-request-id" : "567cc03e-6b6d-4d99-8bad-882844f47f13", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172552Z:0b0437c9-3df3-4069-94e2-7d67c5399efa", - "Expires" : "-1", - "Content-Length" : "21642", - "x-ms-request-id" : "1ebbcc24-6f18-4cef-86c5-7223041e38e4", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"9f1e6d31-4fab-46d9-a929-fe5ac2bd9f36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c30e333-e338-4312-9424-46c050201d2b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"9f1e6d31-4fab-46d9-a929-fe5ac2bd9f36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wgnncgzysbqexhm4kkjt4aiw1a.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-7C-31-0A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"6cf72225-dbe2-491e-a5d2-46183adcdbdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ea0bdde-3bf2-40f9-94d3-8634d2f67b14\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"6cf72225-dbe2-491e-a5d2-46183adcdbdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wgnncgzysbqexhm4kkjt4aiw1a.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8C-69\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"130b3846-ec57-4037-b4ff-ebdd4a8b45ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd2f3fbb-e3e5-41c7-9394-1ba7edebc44e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"130b3846-ec57-4037-b4ff-ebdd4a8b45ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wgnncgzysbqexhm4kkjt4aiw1a.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-82-E0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"e5deeb7c-2dfc-44ec-b94e-7bcd8577d8ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30915bcf-1e72-4504-987c-fcc2696b4c57\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"e5deeb7c-2dfc-44ec-b94e-7bcd8577d8ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-87-77\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"2751bb90-cafe-4e0f-9146-48f8919ec9af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a2d3dcc3-68b7-4e9f-a285-16c1d384e51f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"2751bb90-cafe-4e0f-9146-48f8919ec9af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8B-C9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"0f9a5d26-c0d9-470c-a2c5-d406ebd70d60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"387f044f-5b8a-4bd6-a0b6-c5dcad5f2c96\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"0f9a5d26-c0d9-470c-a2c5-d406ebd70d60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-81-5B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"57c69ca8-1249-48a2-b0b3-747544f46c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f4ae3003-3ec9-4433-a345-2b3d3fdb62f0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"57c69ca8-1249-48a2-b0b3-747544f46c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8C-28\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "9ca78353-0732-464a-a9f1-6ec178d9deaf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8de56449-7773-44ea-9a44-c893ed58b71b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "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" : "11744", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:52 GMT", - "x-ms-correlation-request-id" : "5d3e7f2c-ee63-451e-b26a-e25f5f233bcb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;174,Microsoft.Compute/HighCostGetVMScaleSet30Min;894,Microsoft.Compute/VMScaleSetVMViews3Min;4964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172553Z:5d3e7f2c-ee63-451e-b26a-e25f5f233bcb", - "Expires" : "-1", - "Content-Length" : "21328", - "x-ms-request-id" : "16dbf4c6-6292-49f3-9798-20d7bffadb32", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss3486402441e3_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"70c6036c-50cb-4735-9a1c-f1c4ecbebcf4\",\r\n \"hardwareProfile\": {},\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.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_0_OsDisk_1_b657314183d14f72b293f608788001bd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_0_OsDisk_1_b657314183d14f72b293f608788001bd\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_0_disk2_74347391eb1e4249a4dc977d6febcdaf\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_0_disk2_74347391eb1e4249a4dc977d6febcdaf\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_0_disk3_2d1771f5d97045b09c591c7f006825a6\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_0_disk3_2d1771f5d97045b09c591c7f006825a6\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_0_disk4_f36c08dabb8a49fd83685205ec60784c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_0_disk4_f36c08dabb8a49fd83685205ec60784c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm55090000000\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachines/vmss3486402441e3_0/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss3486402441e3_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"cca4ba92-04f3-49c9-8d41-7b16be0e00c6\",\r\n \"hardwareProfile\": {},\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.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_1_OsDisk_1_7e7052a1ba9f406b9f88a4b4ed297d49\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_1_OsDisk_1_7e7052a1ba9f406b9f88a4b4ed297d49\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_1_disk2_16456feac9d44bb7a367c7d857fa3bdc\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_1_disk2_16456feac9d44bb7a367c7d857fa3bdc\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_1_disk3_d6b64580cd1c49bf8edbbd0c8c84ac66\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_1_disk3_d6b64580cd1c49bf8edbbd0c8c84ac66\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_1_disk4_5214d791ff6c44c38a4c09abc4e66372\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_1_disk4_5214d791ff6c44c38a4c09abc4e66372\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm55090000001\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachines/vmss3486402441e3_1/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss3486402441e3_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"e25c206b-38ab-4743-baa2-25ac57b48e0f\",\r\n \"hardwareProfile\": {},\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.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_2_OsDisk_1_9e7b759b7f0f4fd8b9754198f40fddb0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_2_OsDisk_1_9e7b759b7f0f4fd8b9754198f40fddb0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_2_disk2_bf8c109cf5d34b7a800d04749fea25b0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_2_disk2_bf8c109cf5d34b7a800d04749fea25b0\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_2_disk3_586b7b4465674dec99bf6dad0c7c71f4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_2_disk3_586b7b4465674dec99bf6dad0c7c71f4\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss3486402441e3_vmss3486402441e3_2_disk4_9ce40e7d52804dd7867368873a752221\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/disks/vmss3486402441e3_vmss3486402441e3_2_disk4_9ce40e7d52804dd7867368873a752221\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm55090000002\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachines/vmss3486402441e3_2/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "8de56449-7773-44ea-9a44-c893ed58b71b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c182d842-e87a-4161-aaff-b2d6fb0ef8be", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11799", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:53 GMT", - "x-ms-correlation-request-id" : "0a475f29-584c-4f4a-b66b-49cad48b5428", - "x-ms-arm-service-request-id" : "fdc98de8-5ed0-4b94-baa9-585ee1d6d85e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172553Z:0a475f29-584c-4f4a-b66b-49cad48b5428", - "Expires" : "-1", - "Content-Length" : "3179", - "x-ms-request-id" : "0376e9a9-261e-4c1a-b118-76087bb94742", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"9f1e6d31-4fab-46d9-a929-fe5ac2bd9f36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c30e333-e338-4312-9424-46c050201d2b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"9f1e6d31-4fab-46d9-a929-fe5ac2bd9f36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wgnncgzysbqexhm4kkjt4aiw1a.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-7C-31-0A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "c182d842-e87a-4161-aaff-b2d6fb0ef8be", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d57673c-425c-49ca-9a41-441dbe8258da", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11847", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:53 GMT", - "x-ms-correlation-request-id" : "4c1f64db-37cd-45c6-b2e3-3a4761af8356", - "x-ms-arm-service-request-id" : "dd97ae5b-f386-46c1-9f4e-d3ed0edded20", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"d8fb7aa5-c5ed-4042-be22-41031e684a91\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172553Z:4c1f64db-37cd-45c6-b2e3-3a4761af8356", - "Expires" : "-1", - "Content-Length" : "36866", - "x-ms-request-id" : "7eef215e-6705-4259-8159-d4cfa918c4e7", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "4d57673c-425c-49ca-9a41-441dbe8258da", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbf60247-883e-47c4-9c22-f39ea933ea86", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11920", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:53 GMT", - "x-ms-correlation-request-id" : "e8fbd63c-aaf3-4bbd-9d5e-5957a8c68dab", - "x-ms-arm-service-request-id" : "c3e7c5bd-47b8-4a16-ac4f-bb77c0d21461", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172554Z:e8fbd63c-aaf3-4bbd-9d5e-5957a8c68dab", - "Expires" : "-1", - "Content-Length" : "3179", - "x-ms-request-id" : "e4681036-4824-4c6b-a377-697e7c68ee1b", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"6cf72225-dbe2-491e-a5d2-46183adcdbdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ea0bdde-3bf2-40f9-94d3-8634d2f67b14\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"6cf72225-dbe2-491e-a5d2-46183adcdbdd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wgnncgzysbqexhm4kkjt4aiw1a.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8C-69\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "dbf60247-883e-47c4-9c22-f39ea933ea86", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e97a1daf-6e60-4a60-bc59-2838e46898f7", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:53 GMT", - "x-ms-correlation-request-id" : "45e2be6c-3c2a-4e37-8387-86dcd5e01a99", - "x-ms-arm-service-request-id" : "82f49767-a5c1-4c25-bee8-c474bc2560a9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"d8fb7aa5-c5ed-4042-be22-41031e684a91\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172554Z:45e2be6c-3c2a-4e37-8387-86dcd5e01a99", - "Expires" : "-1", - "Content-Length" : "36866", - "x-ms-request-id" : "ca58ed01-3a42-42a1-8bcc-e06d80b98a35", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "e97a1daf-6e60-4a60-bc59-2838e46898f7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5feb5805-e9d5-452f-9f30-0416209f3f11", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:55 GMT", - "x-ms-correlation-request-id" : "eaea4e11-e29c-4095-a8a1-b78dab8619b3", - "x-ms-arm-service-request-id" : "470867bf-efaa-44c7-9e86-2467e52262c0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172555Z:eaea4e11-e29c-4095-a8a1-b78dab8619b3", - "Expires" : "-1", - "Content-Length" : "3179", - "x-ms-request-id" : "1f8bb539-d106-431c-a5c3-85468d6189ca", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"130b3846-ec57-4037-b4ff-ebdd4a8b45ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd2f3fbb-e3e5-41c7-9394-1ba7edebc44e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"130b3846-ec57-4037-b4ff-ebdd4a8b45ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wgnncgzysbqexhm4kkjt4aiw1a.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-82-E0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "5feb5805-e9d5-452f-9f30-0416209f3f11", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2903ac3-129e-4517-afb4-542eedb1cf41", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:54 GMT", - "x-ms-correlation-request-id" : "faf36bb0-6bb7-4d6f-b83c-52f43006000b", - "x-ms-arm-service-request-id" : "06fa9c82-443b-4bbb-aead-e5ce72a8984c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"d8fb7aa5-c5ed-4042-be22-41031e684a91\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172555Z:faf36bb0-6bb7-4d6f-b83c-52f43006000b", - "Expires" : "-1", - "Content-Length" : "36866", - "x-ms-request-id" : "c0e10a74-5d25-4118-a08b-0611898ccea3", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"d8fb7aa5-c5ed-4042-be22-41031e684a91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "f2903ac3-129e-4517-afb4-542eedb1cf41", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/poweroff?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c12d2688-5333-4f36-a83a-1174766721f9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:55 GMT", - "x-ms-correlation-request-id" : "ea0d8782-8031-4d23-9e0b-0afc501860ea", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;76,Microsoft.Compute/DeleteVMScaleSet30Min;396,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3633,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172556Z:ea0d8782-8031-4d23-9e0b-0afc501860ea", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a7b0a261-a3f2-4d9f-a368-17915acfbca0?api-version=2021-11-01", - "x-ms-request-id" : "a7b0a261-a3f2-4d9f-a368-17915acfbca0", - "x-ms-client-request-id" : "c12d2688-5333-4f36-a83a-1174766721f9", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a7b0a261-a3f2-4d9f-a368-17915acfbca0?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a7b0a261-a3f2-4d9f-a368-17915acfbca0?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "02e15bbb-d016-4cd9-8b46-b5f5cf9c6970" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11894", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:25 GMT", - "x-ms-correlation-request-id" : "4833121d-3a0b-49a7-a75f-5637fa62dac4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29941", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172626Z:4833121d-3a0b-49a7-a75f-5637fa62dac4", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "f4608b87-712c-4a34-93c3-2d3d3a61c8fb", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:55.9378567+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:12.4075943+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a7b0a261-a3f2-4d9f-a368-17915acfbca0\"\r\n}", - "x-ms-client-request-id" : "02e15bbb-d016-4cd9-8b46-b5f5cf9c6970", - "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/eastus2/operations/a7b0a261-a3f2-4d9f-a368-17915acfbca0?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f620f877-9018-4584-af60-83c476e1671a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:26 GMT", - "x-ms-correlation-request-id" : "2a4d8b53-b86f-4426-b9d1-846d9962c389", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172626Z:2a4d8b53-b86f-4426-b9d1-846d9962c389", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "2090ac68-2f07-4fb6-93ff-a9fcfca5a486", - "x-ms-client-request-id" : "f620f877-9018-4584-af60-83c476e1671a" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db42a277-8c20-43ff-b33e-17a9ffb90859", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:27 GMT", - "x-ms-correlation-request-id" : "fb61f20e-461b-4882-be5b-1fba00856698", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;75,Microsoft.Compute/DeleteVMScaleSet30Min;395,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3576,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172627Z:fb61f20e-461b-4882-be5b-1fba00856698", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/67d55b80-b326-4f34-8871-5fa92e7eac05?api-version=2021-11-01", - "x-ms-request-id" : "67d55b80-b326-4f34-8871-5fa92e7eac05", - "x-ms-client-request-id" : "db42a277-8c20-43ff-b33e-17a9ffb90859", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/67d55b80-b326-4f34-8871-5fa92e7eac05?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/67d55b80-b326-4f34-8871-5fa92e7eac05?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "56c0f3e3-1dc4-454e-82c5-9b3b0a09c0c0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11772", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:56 GMT", - "x-ms-correlation-request-id" : "c52bddfc-8b4a-46e4-a2fa-353216b718c1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172657Z:c52bddfc-8b4a-46e4-a2fa-353216b718c1", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "b142eea2-3389-4982-9622-5c8a4a07f2e7", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:27.0647726+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d55b80-b326-4f34-8871-5fa92e7eac05\"\r\n}", - "x-ms-client-request-id" : "56c0f3e3-1dc4-454e-82c5-9b3b0a09c0c0", - "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/eastus2/operations/67d55b80-b326-4f34-8871-5fa92e7eac05?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c724c5e7-c04e-48fa-9034-d2c07907e3a3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:27 GMT", - "x-ms-correlation-request-id" : "6952460b-0827-493b-b644-42851a62ae6f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29928", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172727Z:6952460b-0827-493b-b644-42851a62ae6f", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "844e50ab-0060-41e0-95e2-b0b564883075", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:27.0647726+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d55b80-b326-4f34-8871-5fa92e7eac05\"\r\n}", - "x-ms-client-request-id" : "c724c5e7-c04e-48fa-9034-d2c07907e3a3", - "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/eastus2/operations/67d55b80-b326-4f34-8871-5fa92e7eac05?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7dd7ead8-e5ec-4c61-b627-7d3166212f75" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11744", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:57 GMT", - "x-ms-correlation-request-id" : "8c09ebdf-57d6-4195-a7e2-8227c3600d1a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29923", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172758Z:8c09ebdf-57d6-4195-a7e2-8227c3600d1a", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "cc2d5ae7-ab24-4944-ab27-1598aa8af768", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:27.0647726+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:47.2104762+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"67d55b80-b326-4f34-8871-5fa92e7eac05\"\r\n}", - "x-ms-client-request-id" : "7dd7ead8-e5ec-4c61-b627-7d3166212f75", - "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/eastus2/operations/67d55b80-b326-4f34-8871-5fa92e7eac05?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "67259e34-2376-47cb-a5e0-20e9a5c8c50e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11758", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:58 GMT", - "x-ms-correlation-request-id" : "75c95b22-676e-4d17-b908-74c85c3413bc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172759Z:75c95b22-676e-4d17-b908-74c85c3413bc", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "91de71a5-a308-402e-8a00-655ef6a524d3", - "x-ms-client-request-id" : "67259e34-2376-47cb-a5e0-20e9a5c8c50e" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a208294-5561-436a-a6b4-e39bc517fc90", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11743", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:58 GMT", - "x-ms-correlation-request-id" : "a2a12ce8-2394-43a0-b3d8-0e77736443e0", - "x-ms-arm-service-request-id" : "ee0d8cf2-a22f-43af-9d9a-7291402df4fc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172759Z:a2a12ce8-2394-43a0-b3d8-0e77736443e0", - "Expires" : "-1", - "Content-Length" : "22066", - "x-ms-request-id" : "d1348f04-8077-42fd-826c-365af4d50e53", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"ac6e5d7e-91e3-4ec6-b3af-6a70fc1e5ff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "1a208294-5561-436a-a6b4-e39bc517fc90", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a3553ae-e295-4904-97f9-0664bd89927d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:03 GMT", - "x-ms-correlation-request-id" : "095f6dcc-7ce9-4ffd-b8c2-491277838c16", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3590,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172804Z:095f6dcc-7ce9-4ffd-b8c2-491277838c16", - "Expires" : "-1", - "Content-Length" : "4621", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/35a6377e-c6f4-46bc-acfa-559f87732a3f?api-version=2021-11-01", - "x-ms-request-id" : "35a6377e-c6f4-46bc-acfa-559f87732a3f", - "Body" : "{\r\n \"name\": \"vmss3486402441e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm55090\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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 \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"02aa8dd8-3d47-4771-8605-63590fb2a346\"\r\n }\r\n}", - "x-ms-client-request-id" : "8a3553ae-e295-4904-97f9-0664bd89927d", - "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/eastus2/operations/35a6377e-c6f4-46bc-acfa-559f87732a3f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "759edbf5-ab48-435b-8071-c8ff79cf1c6d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11756", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:13 GMT", - "x-ms-correlation-request-id" : "117d1667-6ee1-4d79-9661-b14e3835e5c4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29920", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172814Z:117d1667-6ee1-4d79-9661-b14e3835e5c4", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4a56d074-ae82-4947-8326-21b13068d68d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:01.3676292+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:03.3677505+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"35a6377e-c6f4-46bc-acfa-559f87732a3f\"\r\n}", - "x-ms-client-request-id" : "759edbf5-ab48-435b-8071-c8ff79cf1c6d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfb3752e-6334-4e70-81de-3ffca8cc91de" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11877", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:13 GMT", - "x-ms-correlation-request-id" : "ca488d53-78b0-4b52-97c6-1b1cdf363c1b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;187,Microsoft.Compute/GetVMScaleSet30Min;1277", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172814Z:ca488d53-78b0-4b52-97c6-1b1cdf363c1b", - "Expires" : "-1", - "Content-Length" : "4622", - "x-ms-request-id" : "e183e3c5-5739-455d-97d5-96ae248c6c33", - "Body" : "{\r\n \"name\": \"vmss3486402441e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm55090\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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 \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"02aa8dd8-3d47-4771-8605-63590fb2a346\"\r\n }\r\n}", - "x-ms-client-request-id" : "dfb3752e-6334-4e70-81de-3ffca8cc91de", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/start?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c742eb7c-c024-4335-aeb6-fb61598b4878", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:14 GMT", - "x-ms-correlation-request-id" : "bdf4fa67-d4be-4733-997f-89b2f3d2581a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3587,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172815Z:bdf4fa67-d4be-4733-997f-89b2f3d2581a", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5710849d-a7d3-42a2-a73a-2b8aacfd5c3f?api-version=2021-11-01", - "x-ms-request-id" : "5710849d-a7d3-42a2-a73a-2b8aacfd5c3f", - "x-ms-client-request-id" : "c742eb7c-c024-4335-aeb6-fb61598b4878", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5710849d-a7d3-42a2-a73a-2b8aacfd5c3f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5710849d-a7d3-42a2-a73a-2b8aacfd5c3f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a479f41d-2d27-47b1-a710-0dfc48a43436" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11760", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:44 GMT", - "x-ms-correlation-request-id" : "f4d3a5e7-0528-4d5e-a095-c4cc9669aceb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29916", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172845Z:f4d3a5e7-0528-4d5e-a095-c4cc9669aceb", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "77fd8507-aba9-44ea-95ae-b7aa5dc79185", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:15.0091407+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5710849d-a7d3-42a2-a73a-2b8aacfd5c3f\"\r\n}", - "x-ms-client-request-id" : "a479f41d-2d27-47b1-a710-0dfc48a43436", - "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/eastus2/operations/5710849d-a7d3-42a2-a73a-2b8aacfd5c3f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9760adb7-5066-4caa-9f00-481ec648cead" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11823", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:15 GMT", - "x-ms-correlation-request-id" : "9598f390-fded-4b99-9491-c408d6833492", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172915Z:9598f390-fded-4b99-9491-c408d6833492", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d67e0423-9883-4b5c-a89a-b82bdb092c61", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:15.0091407+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5710849d-a7d3-42a2-a73a-2b8aacfd5c3f\"\r\n}", - "x-ms-client-request-id" : "9760adb7-5066-4caa-9f00-481ec648cead", - "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/eastus2/operations/5710849d-a7d3-42a2-a73a-2b8aacfd5c3f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c80daa0-eec0-4205-9a2a-3ed634e32fd6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11707", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:45 GMT", - "x-ms-correlation-request-id" : "f43de015-4740-44d0-936d-110417ceaedb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29908", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172946Z:f43de015-4740-44d0-936d-110417ceaedb", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ae7ed215-c947-4940-99f4-28fbc2603965", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:15.0091407+00:00\",\r\n \"endTime\": \"2021-01-29T17:29:24.0916211+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5710849d-a7d3-42a2-a73a-2b8aacfd5c3f\"\r\n}", - "x-ms-client-request-id" : "6c80daa0-eec0-4205-9a2a-3ed634e32fd6", - "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/eastus2/operations/5710849d-a7d3-42a2-a73a-2b8aacfd5c3f?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae5d3cc3-629b-41fa-80ff-474bf9e2e3c3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11902", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:45 GMT", - "x-ms-correlation-request-id" : "53a3834d-7db0-4e28-99c1-6b7466ad0d1c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29907", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172946Z:53a3834d-7db0-4e28-99c1-6b7466ad0d1c", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "59afd470-cf34-4224-baa7-0a6cd1796bc1", - "x-ms-client-request-id" : "ae5d3cc3-629b-41fa-80ff-474bf9e2e3c3" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d50556b2-ccac-45c8-8a85-1180c6f02840", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11858", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:45 GMT", - "x-ms-correlation-request-id" : "1da6957f-db88-47fc-a252-5b2663e4d9ee", - "x-ms-arm-service-request-id" : "b49471e2-8823-413b-adac-12f8c01b9c64", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172946Z:1da6957f-db88-47fc-a252-5b2663e4d9ee", - "Expires" : "-1", - "Content-Length" : "22066", - "x-ms-request-id" : "8d669579-48ca-4db3-a23f-7e60cccd3ac2", - "Body" : "{\r\n \"name\": \"intlb-13596b35\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca1a7bc1-99dd-41dd-9054-979dc2288cc7\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-13596b35-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/publicIPAddresses/pip-intlb-13596b35\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-13596b35-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-13596b35-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpProbe\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"31f24133-e8c1-4a1b-8e4d-02b2070d0ce4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/frontendIPConfigurations/intlb-13596b35-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "d50556b2-ccac-45c8-8a85-1180c6f02840", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fbca676d-0325-4cba-b928-2885dce3bdf5", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "4", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:50 GMT", - "x-ms-correlation-request-id" : "a17f4610-a72f-43a4-a2f1-471e3f2d6426", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3581,Microsoft.Compute/VmssQueuedVMOperations;4796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172951Z:a17f4610-a72f-43a4-a2f1-471e3f2d6426", - "Expires" : "-1", - "Content-Length" : "4621", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "x-ms-request-id" : "648a50fb-bfaa-4698-adb1-61dcdbaac216", - "Body" : "{\r\n \"name\": \"vmss3486402441e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm55090\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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 \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"02aa8dd8-3d47-4771-8605-63590fb2a346\"\r\n }\r\n}", - "x-ms-client-request-id" : "fbca676d-0325-4cba-b928-2885dce3bdf5", - "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/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0b4d899-21fb-4f5b-bb81-847b06516119" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:02 GMT", - "x-ms-correlation-request-id" : "7c630271-9d12-481a-8dc4-8dc61ab0e235", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29905", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173002Z:7c630271-9d12-481a-8dc4-8dc61ab0e235", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "e37bb298-e009-4646-8f18-4b179e70179f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:48.2025494+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"648a50fb-bfaa-4698-adb1-61dcdbaac216\"\r\n}", - "x-ms-client-request-id" : "c0b4d899-21fb-4f5b-bb81-847b06516119", - "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/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "32df1a3c-e282-4f81-87fe-2a871747828c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:39 GMT", - "x-ms-correlation-request-id" : "617b4d59-0989-47ed-94d0-66ef9bd34e3e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29902", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173039Z:617b4d59-0989-47ed-94d0-66ef9bd34e3e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "ff996486-347f-4406-afac-886e87f68e52", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:48.2025494+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"648a50fb-bfaa-4698-adb1-61dcdbaac216\"\r\n}", - "x-ms-client-request-id" : "32df1a3c-e282-4f81-87fe-2a871747828c", - "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/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9a49da8-b9a5-4ff1-a2bc-3516ee503909" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11748", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:09 GMT", - "x-ms-correlation-request-id" : "af8f29b3-cbf5-470b-b781-c495fb5dd2eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29900", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173109Z:af8f29b3-cbf5-470b-b781-c495fb5dd2eb", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "2443dc6c-11c6-4fbd-af06-31a989738247", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:48.2025494+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"648a50fb-bfaa-4698-adb1-61dcdbaac216\"\r\n}", - "x-ms-client-request-id" : "e9a49da8-b9a5-4ff1-a2bc-3516ee503909", - "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/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8df79900-4c8c-4727-922f-d7862b73ba67" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:39 GMT", - "x-ms-correlation-request-id" : "c7b46424-6061-4427-ae3a-1295486f7003", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29898", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173140Z:c7b46424-6061-4427-ae3a-1295486f7003", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "cd3ae154-7c17-4eb0-88af-773af423dabf", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:48.2025494+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"648a50fb-bfaa-4698-adb1-61dcdbaac216\"\r\n}", - "x-ms-client-request-id" : "8df79900-4c8c-4727-922f-d7862b73ba67", - "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/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b735d75a-187d-4922-9944-59a8e02f9365" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11895", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:10 GMT", - "x-ms-correlation-request-id" : "94a8c3d5-6298-49ad-8de0-e32c5a2278dc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29895", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173210Z:94a8c3d5-6298-49ad-8de0-e32c5a2278dc", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "366b78af-397e-488d-b165-de349a989ca7", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:48.2025494+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"648a50fb-bfaa-4698-adb1-61dcdbaac216\"\r\n}", - "x-ms-client-request-id" : "b735d75a-187d-4922-9944-59a8e02f9365", - "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/eastus2/operations/648a50fb-bfaa-4698-adb1-61dcdbaac216?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0b30eab-69d3-4b25-a8f9-b45d2c7df412" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:40 GMT", - "x-ms-correlation-request-id" : "af85472c-77fc-4ed9-9ed4-163f48ee3770", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173241Z:af85472c-77fc-4ed9-9ed4-163f48ee3770", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "d00356ee-afaf-4cbe-90ee-b1fdee780486", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:48.2025494+00:00\",\r\n \"endTime\": \"2021-01-29T17:32:24.6031012+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"648a50fb-bfaa-4698-adb1-61dcdbaac216\"\r\n}", - "x-ms-client-request-id" : "d0b30eab-69d3-4b25-a8f9-b45d2c7df412", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "81af6e36-7072-4ff0-ad10-b4e026a50c2e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:41 GMT", - "x-ms-correlation-request-id" : "f36065a2-e811-4f15-9e83-9ff4bd77d0ec", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;195,Microsoft.Compute/GetVMScaleSet30Min;1272", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173241Z:f36065a2-e811-4f15-9e83-9ff4bd77d0ec", - "Expires" : "-1", - "Content-Length" : "4622", - "x-ms-request-id" : "0adc0dc4-afcf-4e8f-bd56-2b2c11d17072", - "Body" : "{\r\n \"name\": \"vmss3486402441e3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm55090\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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 \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/virtualNetworks/vnet68817363af4b/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/backendAddressPools/intlb-13596b35-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Network/loadBalancers/intlb-13596b35/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"02aa8dd8-3d47-4771-8605-63590fb2a346\"\r\n }\r\n}", - "x-ms-client-request-id" : "81af6e36-7072-4ff0-ad10-b4e026a50c2e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs1245563/providers/Microsoft.Compute/virtualMachineScaleSets/vmss3486402441e3/restart?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d622f90-57e4-41e1-b8e3-da206a0b06ae", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "6", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:32:41 GMT", - "x-ms-correlation-request-id" : "9af5f0aa-ca9f-46bf-a888-53b9a3e8b5b8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3595,Microsoft.Compute/VmssQueuedVMOperations;4794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173241Z:9af5f0aa-ca9f-46bf-a888-53b9a3e8b5b8", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a2da42ed-74ce-42a3-99fa-81f607616ca2?api-version=2021-11-01", - "x-ms-request-id" : "a2da42ed-74ce-42a3-99fa-81f607616ca2", - "x-ms-client-request-id" : "3d622f90-57e4-41e1-b8e3-da206a0b06ae", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a2da42ed-74ce-42a3-99fa-81f607616ca2?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a2da42ed-74ce-42a3-99fa-81f607616ca2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a441a8a-5961-4cca-8287-026f4560751e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11744", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:33:11 GMT", - "x-ms-correlation-request-id" : "8b858f3e-b2cc-418f-b0b0-44959c3e087e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29888", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173312Z:8b858f3e-b2cc-418f-b0b0-44959c3e087e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "bfcb4cb2-866e-430b-89eb-dce438078ff2", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:32:41.7135719+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a2da42ed-74ce-42a3-99fa-81f607616ca2\"\r\n}", - "x-ms-client-request-id" : "8a441a8a-5961-4cca-8287-026f4560751e", - "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/eastus2/operations/a2da42ed-74ce-42a3-99fa-81f607616ca2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4456b3b4-8a5c-4a04-95df-c16414415bca" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11855", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:33:42 GMT", - "x-ms-correlation-request-id" : "d2139f25-55a0-4816-8dba-4ceab941401d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29882", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173342Z:d2139f25-55a0-4816-8dba-4ceab941401d", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "5592c71e-72f2-4588-a521-fbf4492b317f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:32:41.7135719+00:00\",\r\n \"endTime\": \"2021-01-29T17:33:27.341417+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a2da42ed-74ce-42a3-99fa-81f607616ca2\"\r\n}", - "x-ms-client-request-id" : "4456b3b4-8a5c-4a04-95df-c16414415bca", - "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/eastus2/operations/a2da42ed-74ce-42a3-99fa-81f607616ca2?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "570693a3-6751-482e-9b3e-63752be421b4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11701", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:33:42 GMT", - "x-ms-correlation-request-id" : "74c2447f-2ef0-4ee2-a21c-fe0f84664943", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29881", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173343Z:74c2447f-2ef0-4ee2-a21c-fe0f84664943", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "c80d8b8c-e155-4d8c-9b13-502bee55cdca", - "x-ms-client-request-id" : "570693a3-6751-482e-9b3e-63752be421b4" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs1245563?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f2b6eb9-31a4-4a07-bcb9-9d98ae291fc1", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:33:46 GMT", - "x-ms-correlation-request-id" : "5135ece5-d5da-4ee8-bbf2-7f313f27b87e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173347Z:5135ece5-d5da-4ee8-bbf2-7f313f27b87e", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "5135ece5-d5da-4ee8-bbf2-7f313f27b87e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMxMjQ1NTYzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcovs1245563", "vnet68817363af4b", "intlb-13596b35", "vmss3486402441e3", "vmss-vm55090" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetAsync.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetAsync.json deleted file mode 100644 index 94cc0436ffc4..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetAsync.json +++ /dev/null @@ -1,1254 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs62865f2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa3baa1b-4241-46ea-a5cc-648eb5b5b766", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "97d0b463-ec9e-4f86-baa3-1fac75646637", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:97d0b463-ec9e-4f86-baa3-1fac75646637", - "Expires" : "-1", - "Content-Length" : "230", - "x-ms-request-id" : "97d0b463-ec9e-4f86-baa3-1fac75646637", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2\",\"name\":\"rgcovs62865f2\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"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/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4681d5f-85d3-48c2-bfed-90ce28563d2a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "4a1312cc-71e5-4407-9584-84a05936c181", - "x-ms-arm-service-request-id" : "1b6d1831-a098-414d-b463-5ecd7685be63", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172213Z:4a1312cc-71e5-4407-9584-84a05936c181", - "Expires" : "-1", - "Content-Length" : "1327", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/58105406-9c4c-46dd-949c-b34278687da5?api-version=2023-02-01", - "x-ms-request-id" : "58105406-9c4c-46dd-949c-b34278687da5", - "Body" : "{\r\n \"name\": \"vnet066508053ee8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8\",\r\n \"etag\": \"W/\\\"0257cc2b-7a59-4be9-ab8b-5852e3a2cb25\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"06cb4761-d5b1-4f3a-a4c2-787bb1466be4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\",\r\n \"etag\": \"W/\\\"0257cc2b-7a59-4be9-ab8b-5852e3a2cb25\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "f4681d5f-85d3-48c2-bfed-90ce28563d2a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "90efe5b4-fd3f-471d-a2c0-83b35caaa742", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "5cd6b927-c889-462f-81b8-2d0aa9cb863e", - "x-ms-arm-service-request-id" : "fa6004a4-db7c-4fe3-bfd0-355b6970d1d1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:5cd6b927-c889-462f-81b8-2d0aa9cb863e", - "Expires" : "-1", - "Content-Length" : "816", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/132c5471-edb3-4d23-93f6-219bc38d7b4b?api-version=2023-02-01", - "x-ms-request-id" : "132c5471-edb3-4d23-93f6-219bc38d7b4b", - "Body" : "{\r\n \"name\": \"pip-intlb-57261732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732\",\r\n \"etag\": \"W/\\\"dce18d6c-2ea1-454a-a248-1e3cc64b887e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8602a2db-8721-472f-a3ba-849a72d91885\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-57261732\",\r\n \"fqdn\": \"pip-intlb-57261732.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "90efe5b4-fd3f-471d-a2c0-83b35caaa742", - "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/westcentralus/operations/132c5471-edb3-4d23-93f6-219bc38d7b4b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bd3bd0b-f031-4a09-bde6-dc46f9ebeff5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "518226ec-1df4-4c6f-a5ee-aad9c41b672c", - "x-ms-arm-service-request-id" : "7b444459-4c44-4016-aeb3-04552ac0ca4e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:518226ec-1df4-4c6f-a5ee-aad9c41b672c", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "655c7138-cf7e-493f-8712-1407a8fbc424", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "3bd3bd0b-f031-4a09-bde6-dc46f9ebeff5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "55701368-fec3-4729-a8da-38eb42a54d44" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "0883f49b-6d7b-4715-9a07-e5ee87f864b0", - "x-ms-arm-service-request-id" : "b1fa99ed-ac41-408a-a776-878bca430972", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"4be80d80-89b7-4ce9-8b60-8a7cd042605f\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:0883f49b-6d7b-4715-9a07-e5ee87f864b0", - "Expires" : "-1", - "Content-Length" : "817", - "x-ms-request-id" : "ed8538d0-5c31-459b-af9e-31340d8eb324", - "Body" : "{\r\n \"name\": \"pip-intlb-57261732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732\",\r\n \"etag\": \"W/\\\"4be80d80-89b7-4ce9-8b60-8a7cd042605f\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8602a2db-8721-472f-a3ba-849a72d91885\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-57261732\",\r\n \"fqdn\": \"pip-intlb-57261732.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "55701368-fec3-4729-a8da-38eb42a54d44", - "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/westcentralus/operations/58105406-9c4c-46dd-949c-b34278687da5?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "485f617d-f7aa-4b82-a9b6-a3dcd8236dde" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "0f7d5440-93d6-4dc8-8b33-56781a2b2b90", - "x-ms-arm-service-request-id" : "ac1a75bc-f7c9-4948-82d0-d75a35285f1b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:0f7d5440-93d6-4dc8-8b33-56781a2b2b90", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "2c984154-3a71-4fe6-9e67-148e5aa0238b", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "485f617d-f7aa-4b82-a9b6-a3dcd8236dde", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4755c13-e485-46e6-88c9-00e267c280de" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:20 GMT", - "x-ms-correlation-request-id" : "0367e8e7-d7be-4ec5-be4c-20f511cf8992", - "x-ms-arm-service-request-id" : "407d35af-0f2b-4630-ae89-ba4b98be6b12", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"99621279-713c-4493-94d1-0384049be824\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172220Z:0367e8e7-d7be-4ec5-be4c-20f511cf8992", - "Expires" : "-1", - "Content-Length" : "1329", - "x-ms-request-id" : "53a3d79e-ad3c-4f21-b6a3-269880935976", - "Body" : "{\r\n \"name\": \"vnet066508053ee8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8\",\r\n \"etag\": \"W/\\\"99621279-713c-4493-94d1-0384049be824\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06cb4761-d5b1-4f3a-a4c2-787bb1466be4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\",\r\n \"etag\": \"W/\\\"99621279-713c-4493-94d1-0384049be824\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "e4755c13-e485-46e6-88c9-00e267c280de", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6876ed6-4ce0-4fdd-831c-d12996c8d67d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:25 GMT", - "x-ms-correlation-request-id" : "fe708bb9-a7ea-4379-8930-e063064aa8c6", - "x-ms-arm-service-request-id" : "8ee9c6c3-dda5-46b3-b4d6-31b50db3ab14", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:fe708bb9-a7ea-4379-8930-e063064aa8c6", - "Expires" : "-1", - "Content-Length" : "10816", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b0d0300a-a369-40c8-8051-5321647110d9?api-version=2023-02-01", - "x-ms-request-id" : "b0d0300a-a369-40c8-8051-5321647110d9", - "Body" : "{\r\n \"name\": \"intlb-57261732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"666847ff-f6fd-44c4-ad4c-cc48007d73f1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-57261732-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-57261732-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-57261732-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpProbe\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "f6876ed6-4ce0-4fdd-831c-d12996c8d67d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "87093b63-32b2-4ee3-a5ac-2640f80e24ac", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "aed900e4-d980-4f09-a60c-964229fe1f0f", - "x-ms-arm-service-request-id" : "d353e73d-8011-4dcc-bdcd-c3b01b3d1503", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"58446eb3-7c3c-44a7-a654-52187b5a180d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:aed900e4-d980-4f09-a60c-964229fe1f0f", - "Expires" : "-1", - "Content-Length" : "10816", - "x-ms-request-id" : "30e01bbf-23a6-4cd8-b767-64d528628e36", - "Body" : "{\r\n \"name\": \"intlb-57261732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"666847ff-f6fd-44c4-ad4c-cc48007d73f1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-57261732-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-57261732-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-57261732-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpProbe\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"58446eb3-7c3c-44a7-a654-52187b5a180d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "87093b63-32b2-4ee3-a5ac-2640f80e24ac", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/virtualNetworkPeerings?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5578345a-b4ca-45df-b252-805194033d96", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "04c6999a-4768-47d1-8e05-a11f01debefd", - "x-ms-arm-service-request-id" : "5083ab1f-72ce-4db3-92a3-2d132c20fb3b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:04c6999a-4768-47d1-8e05-a11f01debefd", - "Expires" : "-1", - "Content-Length" : "19", - "x-ms-request-id" : "a98edb0a-bd19-42f6-8ecc-9a9695a52d05", - "Body" : "{\r\n \"value\": []\r\n}", - "x-ms-client-request-id" : "5578345a-b4ca-45df-b252-805194033d96", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f8d4b2a-3722-495e-bd58-db5b9ff012ed", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "7", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:35 GMT", - "x-ms-correlation-request-id" : "2ce03ee0-8417-4142-9b84-e580c4857ec3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1193,Microsoft.Compute/VmssQueuedVMOperations;4793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:2ce03ee0-8417-4142-9b84-e580c4857ec3", - "Expires" : "-1", - "Content-Length" : "4883", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4be4129-d8de-4aff-b0f4-775b8c42e6b1?api-version=2021-11-01", - "x-ms-request-id" : "b4be4129-d8de-4aff-b0f4-775b8c42e6b1", - "Body" : "{\r\n \"name\": \"vmss31742c9ca6e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm25412\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"0ba53544-7650-4446-9ada-bcb79d0d56e7\"\r\n }\r\n}", - "x-ms-client-request-id" : "2f8d4b2a-3722-495e-bd58-db5b9ff012ed", - "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/westcentralus/operations/b4be4129-d8de-4aff-b0f4-775b8c42e6b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3dc063c-d5d6-4081-a83c-f4e17c88f044" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "a5e9df4d-b681-4771-9e58-5ea9a956383b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172246Z:a5e9df4d-b681-4771-9e58-5ea9a956383b", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "f3e21ce0-5c7b-4478-843b-d9ff3161bf9a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.5438578+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4be4129-d8de-4aff-b0f4-775b8c42e6b1\"\r\n}", - "x-ms-client-request-id" : "f3dc063c-d5d6-4081-a83c-f4e17c88f044", - "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/westcentralus/operations/b4be4129-d8de-4aff-b0f4-775b8c42e6b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2109b5c-1200-4929-8623-7fec17d0b969" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:47 GMT", - "x-ms-correlation-request-id" : "395cd6b9-308a-4961-94cd-9e662adee05e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172348Z:395cd6b9-308a-4961-94cd-9e662adee05e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "eec83c57-5852-424f-9db0-3749c62035a0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.5438578+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4be4129-d8de-4aff-b0f4-775b8c42e6b1\"\r\n}", - "x-ms-client-request-id" : "b2109b5c-1200-4929-8623-7fec17d0b969", - "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/westcentralus/operations/b4be4129-d8de-4aff-b0f4-775b8c42e6b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "43cb9656-bc07-4a36-9145-986683fdcff3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:18 GMT", - "x-ms-correlation-request-id" : "06f789ba-24a9-41ed-80c6-64d6c072c17c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172418Z:06f789ba-24a9-41ed-80c6-64d6c072c17c", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "0bd10002-9f9e-40b6-9320-1dc5fa9497eb", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.5438578+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4be4129-d8de-4aff-b0f4-775b8c42e6b1\"\r\n}", - "x-ms-client-request-id" : "43cb9656-bc07-4a36-9145-986683fdcff3", - "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/westcentralus/operations/b4be4129-d8de-4aff-b0f4-775b8c42e6b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0eb59274-e02a-45ab-abaf-5b173fe57cb1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:48 GMT", - "x-ms-correlation-request-id" : "1769427d-179f-4606-aa90-d26487ea0ce6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172448Z:1769427d-179f-4606-aa90-d26487ea0ce6", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "a04552fa-c2a9-4683-939a-2f97f3d787f8", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.5438578+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4be4129-d8de-4aff-b0f4-775b8c42e6b1\"\r\n}", - "x-ms-client-request-id" : "0eb59274-e02a-45ab-abaf-5b173fe57cb1", - "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/westcentralus/operations/b4be4129-d8de-4aff-b0f4-775b8c42e6b1?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "07bf39ca-1c00-4c1d-94d4-2ceede1c285f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:18 GMT", - "x-ms-correlation-request-id" : "64cffb6f-f300-4a4b-8721-603e1676b4a8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:64cffb6f-f300-4a4b-8721-603e1676b4a8", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e5d14e83-0f55-47e0-bfd9-352463a61967", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:34.5438578+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:55.7311977+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b4be4129-d8de-4aff-b0f4-775b8c42e6b1\"\r\n}", - "x-ms-client-request-id" : "07bf39ca-1c00-4c1d-94d4-2ceede1c285f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d062ee1a-0d1b-4b8f-8e01-32a69b66d319" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11765", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "53c4c472-13e0-4c89-a6c6-bb43ab803990", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2598", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:53c4c472-13e0-4c89-a6c6-bb43ab803990", - "Expires" : "-1", - "Content-Length" : "4884", - "x-ms-request-id" : "c151eb06-5e54-418c-b5d8-cd76e9f30d77", - "Body" : "{\r\n \"name\": \"vmss31742c9ca6e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm25412\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"0ba53544-7650-4446-9ada-bcb79d0d56e7\"\r\n }\r\n}", - "x-ms-client-request-id" : "d062ee1a-0d1b-4b8f-8e01-32a69b66d319", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "90ec33d4-f41f-49ea-946b-69b8389f28f8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "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" : "11876", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "fd241119-7275-4f1d-8743-ba33a94c21b2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899,Microsoft.Compute/VMScaleSetVMViews3Min;4993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:fd241119-7275-4f1d-8743-ba33a94c21b2", - "Expires" : "-1", - "Content-Length" : "21374", - "x-ms-request-id" : "a8684b84-aaef-41f3-bdbd-e2ae940233cf", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss31742c9ca6e9_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"cb06f2fa-61ce-45ce-9ed1-d1a77f9fe00e\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_2_OsDisk_1_ec5519429a074520b66c6a00eb021332\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_2_OsDisk_1_ec5519429a074520b66c6a00eb021332\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_2_disk2_18f81e4d12d545beaf06bbff9e56e95c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_2_disk2_18f81e4d12d545beaf06bbff9e56e95c\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_2_disk3_c6fb243b525145ab9e89d2f07dfe2290\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_2_disk3_c6fb243b525145ab9e89d2f07dfe2290\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_2_disk4_1670439b0e5844e781193f90aa55cd7d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_2_disk4_1670439b0e5844e781193f90aa55cd7d\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm25412000002\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachines/vmss31742c9ca6e9_2/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss31742c9ca6e9_4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/4\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"instanceId\": \"4\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"a75350d5-0e11-4102-a071-bd3b701f234c\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_4_OsDisk_1_5605368070ec4dc0a6a2b35bcd9a0450\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_4_OsDisk_1_5605368070ec4dc0a6a2b35bcd9a0450\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_4_disk2_4d01ec2708b3488ba39968c87c5f33c5\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_4_disk2_4d01ec2708b3488ba39968c87c5f33c5\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_4_disk3_6bcc36926a4949878cd654ce78aa61af\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_4_disk3_6bcc36926a4949878cd654ce78aa61af\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_4_disk4_b172e200cb5f4fc78525027b86667820\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_4_disk4_b172e200cb5f4fc78525027b86667820\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm25412000004\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/4/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachines/vmss31742c9ca6e9_4/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss31742c9ca6e9_5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/5\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"instanceId\": \"5\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"f1b83add-f1c4-492d-a8cd-220ea0e8271b\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_5_OsDisk_1_4246c40dc30a464ca223a0b0994e727c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_5_OsDisk_1_4246c40dc30a464ca223a0b0994e727c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_5_disk2_3fdfb722464c4d0f8d3672ffd034af1a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_5_disk2_3fdfb722464c4d0f8d3672ffd034af1a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_5_disk3_bdae7873f343451991bd2e88f1fa98a1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_5_disk3_bdae7873f343451991bd2e88f1fa98a1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss31742c9ca6e9_vmss31742c9ca6e9_5_disk4_efa81ac2a82c43b3b94d4c242a2d9f8a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/disks/vmss31742c9ca6e9_vmss31742c9ca6e9_5_disk4_efa81ac2a82c43b3b94d4c242a2d9f8a\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm25412000005\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/5/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachines/vmss31742c9ca6e9_5/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "90ec33d4-f41f-49ea-946b-69b8389f28f8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/poweroff?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "26c066aa-de55-4b83-87ab-9281a559e80e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "bb123df1-6ea9-4826-8998-01d37ad4319d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172520Z:bb123df1-6ea9-4826-8998-01d37ad4319d", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/631a2be2-12b9-4665-90ed-6bbe35cc4b92?api-version=2021-11-01", - "x-ms-request-id" : "631a2be2-12b9-4665-90ed-6bbe35cc4b92", - "x-ms-client-request-id" : "26c066aa-de55-4b83-87ab-9281a559e80e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/631a2be2-12b9-4665-90ed-6bbe35cc4b92?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/631a2be2-12b9-4665-90ed-6bbe35cc4b92?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cb8af42-fdc3-4be4-8e29-02556ce98c18" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11770", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:49 GMT", - "x-ms-correlation-request-id" : "18d194a2-d243-4e7d-9ae7-9c570f7d6bd6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172550Z:18d194a2-d243-4e7d-9ae7-9c570f7d6bd6", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d9651d1b-68b1-45ba-9fad-5a53e2954ce7", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:20.0749603+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"631a2be2-12b9-4665-90ed-6bbe35cc4b92\"\r\n}", - "x-ms-client-request-id" : "0cb8af42-fdc3-4be4-8e29-02556ce98c18", - "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/westcentralus/operations/631a2be2-12b9-4665-90ed-6bbe35cc4b92?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "985823d1-f508-4bf7-a78f-c1827d75c9fe" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11873", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:20 GMT", - "x-ms-correlation-request-id" : "577b2fe1-3039-49b4-8f7c-8d5be59a75d0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172620Z:577b2fe1-3039-49b4-8f7c-8d5be59a75d0", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "57ee3402-4dd8-49ac-b4e0-7bf2dce1e0de", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:20.0749603+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:00.9811416+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"631a2be2-12b9-4665-90ed-6bbe35cc4b92\"\r\n}", - "x-ms-client-request-id" : "985823d1-f508-4bf7-a78f-c1827d75c9fe", - "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/westcentralus/operations/631a2be2-12b9-4665-90ed-6bbe35cc4b92?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "79d580be-8ddf-4cdf-be32-669aaa4d9481" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11726", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:20 GMT", - "x-ms-correlation-request-id" : "7eba6050-2287-4708-93b4-04b5ff783d08", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172621Z:7eba6050-2287-4708-93b4-04b5ff783d08", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "35ece47f-4bff-40f0-a093-ed11e5ee218f", - "x-ms-client-request-id" : "79d580be-8ddf-4cdf-be32-669aaa4d9481" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3216411c-7b09-4ecf-b8c1-45825ac59522", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:26:21 GMT", - "x-ms-correlation-request-id" : "ae4513ad-84e8-4895-adcf-1d555bce02db", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;78,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1187,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172621Z:ae4513ad-84e8-4895-adcf-1d555bce02db", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/762c0177-9d7d-4958-8ed7-3702c9d3e028?api-version=2021-11-01", - "x-ms-request-id" : "762c0177-9d7d-4958-8ed7-3702c9d3e028", - "x-ms-client-request-id" : "3216411c-7b09-4ecf-b8c1-45825ac59522", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/762c0177-9d7d-4958-8ed7-3702c9d3e028?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/762c0177-9d7d-4958-8ed7-3702c9d3e028?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e0aaf43-ab48-4b19-b135-84562beadfb9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11773", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:51 GMT", - "x-ms-correlation-request-id" : "3bd4f6a6-395c-4bf1-95fd-08a7f2a2b14d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172651Z:3bd4f6a6-395c-4bf1-95fd-08a7f2a2b14d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "2284aa0d-46ec-4ffb-b968-84b0b99b9848", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:21.4342384+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"762c0177-9d7d-4958-8ed7-3702c9d3e028\"\r\n}", - "x-ms-client-request-id" : "4e0aaf43-ab48-4b19-b135-84562beadfb9", - "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/westcentralus/operations/762c0177-9d7d-4958-8ed7-3702c9d3e028?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d319589-38f1-491e-8db7-76eb29ee880c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:21 GMT", - "x-ms-correlation-request-id" : "a82fa26c-785a-4ee4-a1f9-b4f12c375f23", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172722Z:a82fa26c-785a-4ee4-a1f9-b4f12c375f23", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "023f7466-c794-4155-853e-b7c51bc482bf", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:21.4342384+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:54.2776887+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"762c0177-9d7d-4958-8ed7-3702c9d3e028\"\r\n}", - "x-ms-client-request-id" : "9d319589-38f1-491e-8db7-76eb29ee880c", - "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/westcentralus/operations/762c0177-9d7d-4958-8ed7-3702c9d3e028?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc1cd6c1-4ebe-4770-bce3-4f8723cb9a6e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11764", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:22 GMT", - "x-ms-correlation-request-id" : "410503c6-83fe-4289-a8cc-767889513467", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172722Z:410503c6-83fe-4289-a8cc-767889513467", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "7b135c6b-eb9a-4be0-ace3-9fb60a5bdafa", - "x-ms-client-request-id" : "cc1cd6c1-4ebe-4770-bce3-4f8723cb9a6e" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/start?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9ef2393-99c2-4123-a621-559b68e81c8a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:23 GMT", - "x-ms-correlation-request-id" : "19ff26b7-7f30-4986-a838-326fccdf072a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1191,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172723Z:19ff26b7-7f30-4986-a838-326fccdf072a", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13952def-9072-4ae4-987a-2386e70707fa?api-version=2021-11-01", - "x-ms-request-id" : "13952def-9072-4ae4-987a-2386e70707fa", - "x-ms-client-request-id" : "e9ef2393-99c2-4123-a621-559b68e81c8a", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13952def-9072-4ae4-987a-2386e70707fa?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13952def-9072-4ae4-987a-2386e70707fa?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cbe5184-dd0a-49c2-ad7d-2705f102bda2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:53 GMT", - "x-ms-correlation-request-id" : "bde0238c-e91c-4fb1-a2d1-d0818f9afb5d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172753Z:bde0238c-e91c-4fb1-a2d1-d0818f9afb5d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "7607e5bb-3c8c-4940-b31e-280a3f65aebe", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:23.3709957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13952def-9072-4ae4-987a-2386e70707fa\"\r\n}", - "x-ms-client-request-id" : "9cbe5184-dd0a-49c2-ad7d-2705f102bda2", - "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/westcentralus/operations/13952def-9072-4ae4-987a-2386e70707fa?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "360498af-c19d-45a1-bf8f-653306e21c2b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11890", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:23 GMT", - "x-ms-correlation-request-id" : "9cc3af6e-cd18-4d82-90d5-d5ca6933d179", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172824Z:9cc3af6e-cd18-4d82-90d5-d5ca6933d179", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d23cb7e2-be8d-48ec-85a7-5f4bf07e07af", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:23.3709957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13952def-9072-4ae4-987a-2386e70707fa\"\r\n}", - "x-ms-client-request-id" : "360498af-c19d-45a1-bf8f-653306e21c2b", - "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/westcentralus/operations/13952def-9072-4ae4-987a-2386e70707fa?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "83bcc451-f108-45e9-b911-aad6db9e9490" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11754", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:54 GMT", - "x-ms-correlation-request-id" : "4c72f76b-935a-4a6f-b749-521d536d7c25", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172854Z:4c72f76b-935a-4a6f-b749-521d536d7c25", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "e6eb9142-dcc4-4ef4-b4cb-af61c865b033", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:23.3709957+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:44.5434792+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13952def-9072-4ae4-987a-2386e70707fa\"\r\n}", - "x-ms-client-request-id" : "83bcc451-f108-45e9-b911-aad6db9e9490", - "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/westcentralus/operations/13952def-9072-4ae4-987a-2386e70707fa?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "00983651-5b7a-4056-96d4-65cb38e89d77" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11904", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:54 GMT", - "x-ms-correlation-request-id" : "40e09a95-b9e0-432b-816d-a0bf2ebfc498", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172854Z:40e09a95-b9e0-432b-816d-a0bf2ebfc498", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "b4b6c726-a62e-4e98-8e78-89db66b74625", - "x-ms-client-request-id" : "00983651-5b7a-4056-96d4-65cb38e89d77" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb6c6e11-8f71-4b47-870f-23012886a3d2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11839", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:54 GMT", - "x-ms-correlation-request-id" : "ca3288a7-3fc6-4a39-a071-51ca9bed5a25", - "x-ms-arm-service-request-id" : "e2714cc4-cdcc-4f94-8338-0af0db7e7cd2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"48915e24-b961-4bae-93f8-209caf1d7764\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172855Z:ca3288a7-3fc6-4a39-a071-51ca9bed5a25", - "Expires" : "-1", - "Content-Length" : "22072", - "x-ms-request-id" : "1b3b826e-757b-4b58-86dc-84d53a927764", - "Body" : "{\r\n \"name\": \"intlb-57261732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"666847ff-f6fd-44c4-ad4c-cc48007d73f1\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-57261732-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/publicIPAddresses/pip-intlb-57261732\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-57261732-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-57261732-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpProbe\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"48915e24-b961-4bae-93f8-209caf1d7764\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/frontendIPConfigurations/intlb-57261732-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "eb6c6e11-8f71-4b47-870f-23012886a3d2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa3086a6-2a9a-4ffb-8bbb-1d172afee49e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "7", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:00 GMT", - "x-ms-correlation-request-id" : "4f39a8b1-a329-410a-bfc3-6f9bf7272585", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1184,Microsoft.Compute/VmssQueuedVMOperations;4793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172901Z:4f39a8b1-a329-410a-bfc3-6f9bf7272585", - "Expires" : "-1", - "Content-Length" : "4629", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/27d03610-6529-46da-8569-e6a728e32283?api-version=2021-11-01", - "x-ms-request-id" : "27d03610-6529-46da-8569-e6a728e32283", - "Body" : "{\r\n \"name\": \"vmss31742c9ca6e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm25412\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"0ba53544-7650-4446-9ada-bcb79d0d56e7\"\r\n }\r\n}", - "x-ms-client-request-id" : "fa3086a6-2a9a-4ffb-8bbb-1d172afee49e", - "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/westcentralus/operations/27d03610-6529-46da-8569-e6a728e32283?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e828ca8-9db4-4d5e-b029-88a84c72380a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:11 GMT", - "x-ms-correlation-request-id" : "b2be788a-1bd4-4dda-a60d-92fac1e4412e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172911Z:b2be788a-1bd4-4dda-a60d-92fac1e4412e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "794da759-0729-408c-aef2-e517f202ea55", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:57.2621727+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27d03610-6529-46da-8569-e6a728e32283\"\r\n}", - "x-ms-client-request-id" : "0e828ca8-9db4-4d5e-b029-88a84c72380a", - "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/westcentralus/operations/27d03610-6529-46da-8569-e6a728e32283?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "05008ac9-e32f-4b85-8728-9e4972dbdede" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11751", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:48 GMT", - "x-ms-correlation-request-id" : "d9bf8e2e-8b95-448a-9888-71b71ddcb4ba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172949Z:d9bf8e2e-8b95-448a-9888-71b71ddcb4ba", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "25344061-8ca8-4131-b8b2-4e1f1d7bbe4a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:57.2621727+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27d03610-6529-46da-8569-e6a728e32283\"\r\n}", - "x-ms-client-request-id" : "05008ac9-e32f-4b85-8728-9e4972dbdede", - "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/westcentralus/operations/27d03610-6529-46da-8569-e6a728e32283?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8aab767d-85f0-4d0f-9f4e-61b81f03ae11" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11705", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:19 GMT", - "x-ms-correlation-request-id" : "abb0e35f-46af-4104-9450-e03e101b2d06", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29962", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173019Z:abb0e35f-46af-4104-9450-e03e101b2d06", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "39f1879e-1347-4f25-aa56-cdcbc015f2f3", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:57.2621727+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27d03610-6529-46da-8569-e6a728e32283\"\r\n}", - "x-ms-client-request-id" : "8aab767d-85f0-4d0f-9f4e-61b81f03ae11", - "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/westcentralus/operations/27d03610-6529-46da-8569-e6a728e32283?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfbb1ecd-096f-408e-908f-8b3eed5fab48" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:49 GMT", - "x-ms-correlation-request-id" : "e6359076-6aa5-4168-bbda-0e8a1315982d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29961", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173049Z:e6359076-6aa5-4168-bbda-0e8a1315982d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "3e8784a8-a17b-47bc-a3d4-53594ad83c67", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:57.2621727+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27d03610-6529-46da-8569-e6a728e32283\"\r\n}", - "x-ms-client-request-id" : "dfbb1ecd-096f-408e-908f-8b3eed5fab48", - "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/westcentralus/operations/27d03610-6529-46da-8569-e6a728e32283?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce504f1a-c4c8-4f88-adea-557b1f8ceb3b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11747", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:20 GMT", - "x-ms-correlation-request-id" : "c1bafe95-a7cc-407e-89ca-8a20885ad7e5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173120Z:c1bafe95-a7cc-407e-89ca-8a20885ad7e5", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "52ec4dad-edad-4eca-a3f4-a236eddb850d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:57.2621727+00:00\",\r\n \"endTime\": \"2021-01-29T17:31:10.0897225+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"27d03610-6529-46da-8569-e6a728e32283\"\r\n}", - "x-ms-client-request-id" : "ce504f1a-c4c8-4f88-adea-557b1f8ceb3b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d41ad14-8bb7-4bbe-82f3-94ba2546f982" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:20 GMT", - "x-ms-correlation-request-id" : "800fa1ab-32c0-49a8-8cc0-6ef66a288f32", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2595", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173120Z:800fa1ab-32c0-49a8-8cc0-6ef66a288f32", - "Expires" : "-1", - "Content-Length" : "4630", - "x-ms-request-id" : "f95508b2-a7b5-460b-b521-540d6e6d814d", - "Body" : "{\r\n \"name\": \"vmss31742c9ca6e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm25412\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/virtualNetworks/vnet066508053ee8/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/backendAddressPools/intlb-57261732-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Network/loadBalancers/intlb-57261732/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/resourcemanager/azure-resourcemanager-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"0ba53544-7650-4446-9ada-bcb79d0d56e7\"\r\n }\r\n}", - "x-ms-client-request-id" : "3d41ad14-8bb7-4bbe-82f3-94ba2546f982", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs62865f2/providers/Microsoft.Compute/virtualMachineScaleSets/vmss31742c9ca6e9/restart?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "afafd269-3f1e-426b-b79e-8d8389f13ff8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "6", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:31:20 GMT", - "x-ms-correlation-request-id" : "b8c5b33d-316e-4477-b6c1-8aad36af4796", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1184,Microsoft.Compute/VmssQueuedVMOperations;4794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173121Z:b8c5b33d-316e-4477-b6c1-8aad36af4796", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2e41d243-458a-491e-8ab7-b37107c8e8e5?api-version=2021-11-01", - "x-ms-request-id" : "2e41d243-458a-491e-8ab7-b37107c8e8e5", - "x-ms-client-request-id" : "afafd269-3f1e-426b-b79e-8d8389f13ff8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2e41d243-458a-491e-8ab7-b37107c8e8e5?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2e41d243-458a-491e-8ab7-b37107c8e8e5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1999dcb8-4f18-4c8e-bc1b-f32659ce0440" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11747", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:50 GMT", - "x-ms-correlation-request-id" : "1bddf504-c7e4-485e-8cb3-b661f4cff336", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173151Z:1bddf504-c7e4-485e-8cb3-b661f4cff336", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "3621e60f-d914-4fdf-b6ac-52d9e366cc56", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:31:20.8240597+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e41d243-458a-491e-8ab7-b37107c8e8e5\"\r\n}", - "x-ms-client-request-id" : "1999dcb8-4f18-4c8e-bc1b-f32659ce0440", - "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/westcentralus/operations/2e41d243-458a-491e-8ab7-b37107c8e8e5?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0982a074-e510-4fda-a7ec-548277548bd5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11745", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:21 GMT", - "x-ms-correlation-request-id" : "498e76e6-dbdf-49bb-861b-35f09ebb28ed", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29953", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173221Z:498e76e6-dbdf-49bb-861b-35f09ebb28ed", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "9bc50d95-5a33-477c-a640-eb6ca9cd06e5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:31:20.8240597+00:00\",\r\n \"endTime\": \"2021-01-29T17:32:00.7457571+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2e41d243-458a-491e-8ab7-b37107c8e8e5\"\r\n}", - "x-ms-client-request-id" : "0982a074-e510-4fda-a7ec-548277548bd5", - "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/westcentralus/operations/2e41d243-458a-491e-8ab7-b37107c8e8e5?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "74dfb599-7175-4377-a8c5-92cbbeee054c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11746", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:21 GMT", - "x-ms-correlation-request-id" : "eeb6a45a-b6ef-407d-9b44-389ff8ac461d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29952", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173222Z:eeb6a45a-b6ef-407d-9b44-389ff8ac461d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "e4f6a401-b592-4172-abd6-d6c94cac2ddb", - "x-ms-client-request-id" : "74dfb599-7175-4377-a8c5-92cbbeee054c" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs62865f2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8f5e25f-09ae-4d6c-89a2-f74f08df3b9e", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14994", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:32:26 GMT", - "x-ms-correlation-request-id" : "feecf63f-4f1f-42c1-9abf-e7477dbf1b52", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173227Z:feecf63f-4f1f-42c1-9abf-e7477dbf1b52", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "feecf63f-4f1f-42c1-9abf-e7477dbf1b52", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM2Mjg2NUYyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcovs62865f2", "vnet066508053ee8", "intlb-57261732", "vmss31742c9ca6e9", "vmss-vm25412" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetWithUnmanagedDisks.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetWithUnmanagedDisks.json deleted file mode 100644 index c1c2bacd1974..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineScaleSetWithUnmanagedDisks.json +++ /dev/null @@ -1,1756 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs96540da?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "542bf90c-9a1f-4fc4-87df-26907c137aba", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:07 GMT", - "x-ms-correlation-request-id" : "6450a07a-5921-4c43-893f-e473915cdbe4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:6450a07a-5921-4c43-893f-e473915cdbe4", - "Expires" : "-1", - "Content-Length" : "224", - "x-ms-request-id" : "6450a07a-5921-4c43-893f-e473915cdbe4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da\",\"name\":\"rgcovs96540da\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"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/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "96f170c0-4325-4a8a-a31d-3270e25860aa", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "fdfcd79d-3370-4013-9057-5779b2b46bfb", - "x-ms-arm-service-request-id" : "43c48430-b5c2-40bd-bb90-6c6cb40e446c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:fdfcd79d-3370-4013-9057-5779b2b46bfb", - "Expires" : "-1", - "Content-Length" : "1355", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8f5688cc-3581-41fc-8261-e1666c3b8b98?api-version=2023-02-01", - "x-ms-request-id" : "8f5688cc-3581-41fc-8261-e1666c3b8b98", - "Body" : "{\r\n \"name\": \"vnet20359de2e573\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573\",\r\n \"etag\": \"W/\\\"39ff5763-043d-460f-8462-b313eacf8e60\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ec5b0347-b169-4426-8ac4-b36069efe6dc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\",\r\n \"etag\": \"W/\\\"39ff5763-043d-460f-8462-b313eacf8e60\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "96f170c0-4325-4a8a-a31d-3270e25860aa", - "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/eastus2/operations/8f5688cc-3581-41fc-8261-e1666c3b8b98?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9feccad4-322d-4587-b5b1-8af07dffef68" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "0078eda9-20f0-4455-ac05-22b21ac2d703", - "x-ms-arm-service-request-id" : "ee1d48fb-4722-4a39-a4bf-1d1905dc83ee", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:0078eda9-20f0-4455-ac05-22b21ac2d703", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "5ac09f64-e10e-4800-966c-1a2c5eeadcdd", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "9feccad4-322d-4587-b5b1-8af07dffef68", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "af31af64-8cc8-4fd6-9240-2973c72ea27b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "3d8710af-3089-44d0-bab9-44580c8db3e1", - "x-ms-arm-service-request-id" : "479a5fd1-9142-42e3-aa8c-062e12a97eaa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"58911745-c426-43d1-bcfb-ba6502d205ae\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:3d8710af-3089-44d0-bab9-44580c8db3e1", - "Expires" : "-1", - "Content-Length" : "1357", - "x-ms-request-id" : "17612c3e-a1c5-44db-9a7a-49dc8cee4cc8", - "Body" : "{\r\n \"name\": \"vnet20359de2e573\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573\",\r\n \"etag\": \"W/\\\"58911745-c426-43d1-bcfb-ba6502d205ae\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ec5b0347-b169-4426-8ac4-b36069efe6dc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\",\r\n \"etag\": \"W/\\\"58911745-c426-43d1-bcfb-ba6502d205ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "af31af64-8cc8-4fd6-9240-2973c72ea27b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/virtualNetworkPeerings?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "49be166d-84b0-48a7-ba58-aa85f6d0dc28", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "751c79bf-2574-4957-89fe-0a8d116a1137", - "x-ms-arm-service-request-id" : "875fb954-fa0f-4df3-b505-806fb66ac4cf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:751c79bf-2574-4957-89fe-0a8d116a1137", - "Expires" : "-1", - "Content-Length" : "19", - "x-ms-request-id" : "f145b5e0-fbd3-4b68-881a-e58dd9b6f5bc", - "Body" : "{\r\n \"value\": []\r\n}", - "x-ms-client-request-id" : "49be166d-84b0-48a7-ba58-aa85f6d0dc28", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f820b32-ae37-4618-bbd7-80acd904647e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "a6deea02-3fa2-48a1-a2d0-db06b721c497", - "x-ms-arm-service-request-id" : "d7b9dff8-9ef6-41db-8e67-6c693071f44f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:a6deea02-3fa2-48a1-a2d0-db06b721c497", - "Expires" : "-1", - "Content-Length" : "804", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/69ba1711-6cc0-431d-8344-bd00e997b78c?api-version=2023-02-01", - "x-ms-request-id" : "69ba1711-6cc0-431d-8344-bd00e997b78c", - "Body" : "{\r\n \"name\": \"pip-intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\",\r\n \"etag\": \"W/\\\"e8a371fc-4054-4de3-a839-35ca6d25773d\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"19fbd1e2-dd82-4727-8941-143e1d4b24c0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-27204eb2\",\r\n \"fqdn\": \"pip-intlb-27204eb2.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "0f820b32-ae37-4618-bbd7-80acd904647e", - "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/eastus2/operations/69ba1711-6cc0-431d-8344-bd00e997b78c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25d2bc2e-7dd6-46ba-b9a1-f240fafa5163" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:28 GMT", - "x-ms-correlation-request-id" : "92a32480-e078-431b-b5fd-ca6e16ff57ac", - "x-ms-arm-service-request-id" : "611611e1-9c81-4f52-ab5a-df5ab9ebb070", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172228Z:92a32480-e078-431b-b5fd-ca6e16ff57ac", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "995b9d4f-fa57-46aa-a842-675ac2a5b7aa", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "25d2bc2e-7dd6-46ba-b9a1-f240fafa5163", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5a0b0cb-87d3-40fa-aad9-84944cb503ea" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:28 GMT", - "x-ms-correlation-request-id" : "7cc1b46a-c0df-4833-8252-ed758dba1ba4", - "x-ms-arm-service-request-id" : "b864fe11-7db7-4bf9-8082-897fe30806f4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"943225c6-eebe-4fba-bcea-b9c2e54843d6\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172229Z:7cc1b46a-c0df-4833-8252-ed758dba1ba4", - "Expires" : "-1", - "Content-Length" : "805", - "x-ms-request-id" : "26fd6da7-2ba7-4b54-a806-9359d09d6bee", - "Body" : "{\r\n \"name\": \"pip-intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\",\r\n \"etag\": \"W/\\\"943225c6-eebe-4fba-bcea-b9c2e54843d6\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"19fbd1e2-dd82-4727-8941-143e1d4b24c0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-27204eb2\",\r\n \"fqdn\": \"pip-intlb-27204eb2.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "a5a0b0cb-87d3-40fa-aad9-84944cb503ea", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cb89c6c-5a75-4f90-b8e1-504dfed6c249", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:35 GMT", - "x-ms-correlation-request-id" : "ba04e1ea-b3b9-4c69-b71a-ba6005bd740e", - "x-ms-arm-service-request-id" : "4c158cbc-abf7-45ac-a9bc-4489da397589", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:ba04e1ea-b3b9-4c69-b71a-ba6005bd740e", - "Expires" : "-1", - "Content-Length" : "10810", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/72d12398-6886-4802-a31c-06fe8b88543c?api-version=2023-02-01", - "x-ms-request-id" : "72d12398-6886-4802-a31c-06fe8b88543c", - "Body" : "{\r\n \"name\": \"intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f725b4d2-95c2-4792-9a72-e969f92067c2\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-27204eb2-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-27204eb2-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-27204eb2-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "4cb89c6c-5a75-4f90-b8e1-504dfed6c249", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d14cab5f-2a03-4503-a9b1-4221402bb2f1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "07d15e9d-04c3-484a-9e51-709e83619239", - "x-ms-arm-service-request-id" : "99b3b767-189a-4ada-9b74-d90ea317368c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"5f3c46ee-e0f1-479a-9932-dd350097a021\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:07d15e9d-04c3-484a-9e51-709e83619239", - "Expires" : "-1", - "Content-Length" : "10810", - "x-ms-request-id" : "717c09db-6b72-4887-9df5-1f856f4f74d2", - "Body" : "{\r\n \"name\": \"intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f725b4d2-95c2-4792-9a72-e969f92067c2\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-27204eb2-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-27204eb2-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-27204eb2-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5f3c46ee-e0f1-479a-9932-dd350097a021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "d14cab5f-2a03-4503-a9b1-4221402bb2f1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg1173756a0b0af?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2055d19a-22db-4a97-978b-c4c6e8032ca8", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1181", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:39 GMT", - "x-ms-correlation-request-id" : "1a80825f-0bf3-4322-af79-6939e2ee5b7d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172239Z:1a80825f-0bf3-4322-af79-6939e2ee5b7d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "51afb859-fcfd-4c62-9263-c5f62c66b123", - "Body" : "", - "x-ms-client-request-id" : "2055d19a-22db-4a97-978b-c4c6e8032ca8", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/51afb859-fcfd-4c62-9263-c5f62c66b123?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg3161210effeb1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1bdec6b-17b9-4f27-9d99-d4fbaa288a88", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1179", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:43 GMT", - "x-ms-correlation-request-id" : "4630b42b-282b-4fd3-b335-33bdb2ac9621", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172243Z:4630b42b-282b-4fd3-b335-33bdb2ac9621", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "a505916a-03e4-4a09-ac1c-a90ca1d1ea74", - "Body" : "", - "x-ms-client-request-id" : "e1bdec6b-17b9-4f27-9d99-d4fbaa288a88", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a505916a-03e4-4a09-ac1c-a90ca1d1ea74?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg2640530a8a302?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a298f6b-cd79-43d6-a5eb-ac68cdae92ce", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1197", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:43 GMT", - "x-ms-correlation-request-id" : "f2f4e9bc-352a-4808-b4ec-125fc197ac22", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172244Z:f2f4e9bc-352a-4808-b4ec-125fc197ac22", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "276d5ac3-0aaa-4616-b9ba-7e15a7ede421", - "Body" : "", - "x-ms-client-request-id" : "0a298f6b-cd79-43d6-a5eb-ac68cdae92ce", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/276d5ac3-0aaa-4616-b9ba-7e15a7ede421?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/51afb859-fcfd-4c62-9263-c5f62c66b123?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "088bc06c-3347-4576-b2ad-2563d7610196" - }, - "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" : "11974", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:56 GMT", - "x-ms-correlation-request-id" : "d7c781c5-5b8b-4c1f-94e4-86bd017de24c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172257Z:d7c781c5-5b8b-4c1f-94e4-86bd017de24c", - "Expires" : "-1", - "Content-Length" : "1196", - "x-ms-request-id" : "8b430d63-e09d-4fde-8bfd-1771dea08405", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg1173756a0b0af\",\"name\":\"stg1173756a0b0af\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:39.3394729Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:39.3394729Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:39.2301186Z\",\"primaryEndpoints\":{\"blob\":\"https://stg1173756a0b0af.blob.core.windows.net/\",\"queue\":\"https://stg1173756a0b0af.queue.core.windows.net/\",\"table\":\"https://stg1173756a0b0af.table.core.windows.net/\",\"file\":\"https://stg1173756a0b0af.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "088bc06c-3347-4576-b2ad-2563d7610196", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg1173756a0b0af?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1059c1e-e186-4fc8-802f-867a2fbd1a99", - "Content-Type" : "application/json" - }, - "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" : "11958", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:56 GMT", - "x-ms-correlation-request-id" : "af733a23-1db3-4f37-8ee1-aa4c2253fa88", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172257Z:af733a23-1db3-4f37-8ee1-aa4c2253fa88", - "Expires" : "-1", - "Content-Length" : "1196", - "x-ms-request-id" : "3432ad7f-b757-410d-998d-e98f0c5554f0", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg1173756a0b0af\",\"name\":\"stg1173756a0b0af\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:39.3394729Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:39.3394729Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:39.2301186Z\",\"primaryEndpoints\":{\"blob\":\"https://stg1173756a0b0af.blob.core.windows.net/\",\"queue\":\"https://stg1173756a0b0af.queue.core.windows.net/\",\"table\":\"https://stg1173756a0b0af.table.core.windows.net/\",\"file\":\"https://stg1173756a0b0af.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "c1059c1e-e186-4fc8-802f-867a2fbd1a99", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a505916a-03e4-4a09-ac1c-a90ca1d1ea74?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2683ac7f-8828-421c-a1b1-7193ccc3c6b4" - }, - "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" : "11978", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:00 GMT", - "x-ms-correlation-request-id" : "4cc70e0e-ffab-4c31-ac36-b3cee4c9b0fe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172301Z:4cc70e0e-ffab-4c31-ac36-b3cee4c9b0fe", - "Expires" : "-1", - "Content-Length" : "1196", - "x-ms-request-id" : "c58a9952-99d5-4301-a034-1fe388acd1cd", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg3161210effeb1\",\"name\":\"stg3161210effeb1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.1680902Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.1680902Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:43.0739818Z\",\"primaryEndpoints\":{\"blob\":\"https://stg3161210effeb1.blob.core.windows.net/\",\"queue\":\"https://stg3161210effeb1.queue.core.windows.net/\",\"table\":\"https://stg3161210effeb1.table.core.windows.net/\",\"file\":\"https://stg3161210effeb1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "2683ac7f-8828-421c-a1b1-7193ccc3c6b4", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/276d5ac3-0aaa-4616-b9ba-7e15a7ede421?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a018fc3-3a9c-4a6d-a541-087ac62dd1aa" - }, - "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" : "11963", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:01 GMT", - "x-ms-correlation-request-id" : "de0e8c1e-fc76-4113-b19f-7a676e8d4e42", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172301Z:de0e8c1e-fc76-4113-b19f-7a676e8d4e42", - "Expires" : "-1", - "Content-Length" : "1196", - "x-ms-request-id" : "8b85ff0a-17da-47b4-a4b8-fabbc0857401", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg2640530a8a302\",\"name\":\"stg2640530a8a302\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.8240364Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.8240364Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:43.7146261Z\",\"primaryEndpoints\":{\"blob\":\"https://stg2640530a8a302.blob.core.windows.net/\",\"queue\":\"https://stg2640530a8a302.queue.core.windows.net/\",\"table\":\"https://stg2640530a8a302.table.core.windows.net/\",\"file\":\"https://stg2640530a8a302.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "4a018fc3-3a9c-4a6d-a541-087ac62dd1aa", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg3161210effeb1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "659e175f-de6f-4845-8923-8f5df5194c1f", - "Content-Type" : "application/json" - }, - "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" : "11954", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:01 GMT", - "x-ms-correlation-request-id" : "7b4ccc91-c4ad-423a-8ef1-5d48c92f66cf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172301Z:7b4ccc91-c4ad-423a-8ef1-5d48c92f66cf", - "Expires" : "-1", - "Content-Length" : "1196", - "x-ms-request-id" : "68c68648-fa77-470a-a869-a40743d1b93a", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg3161210effeb1\",\"name\":\"stg3161210effeb1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.1680902Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.1680902Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:43.0739818Z\",\"primaryEndpoints\":{\"blob\":\"https://stg3161210effeb1.blob.core.windows.net/\",\"queue\":\"https://stg3161210effeb1.queue.core.windows.net/\",\"table\":\"https://stg3161210effeb1.table.core.windows.net/\",\"file\":\"https://stg3161210effeb1.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "659e175f-de6f-4845-8923-8f5df5194c1f", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg2640530a8a302?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "04f79e30-a47e-4509-b52d-07bef3e10915", - "Content-Type" : "application/json" - }, - "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" : "11948", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:01 GMT", - "x-ms-correlation-request-id" : "183ef1e8-d2a1-4a1d-9c63-e143cd99bbf5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172302Z:183ef1e8-d2a1-4a1d-9c63-e143cd99bbf5", - "Expires" : "-1", - "Content-Length" : "1196", - "x-ms-request-id" : "ae7fbec5-0fdf-4548-b310-dcd64afad8ed", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Storage/storageAccounts/stg2640530a8a302\",\"name\":\"stg2640530a8a302\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.8240364Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:43.8240364Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:43.7146261Z\",\"primaryEndpoints\":{\"blob\":\"https://stg2640530a8a302.blob.core.windows.net/\",\"queue\":\"https://stg2640530a8a302.queue.core.windows.net/\",\"table\":\"https://stg2640530a8a302.table.core.windows.net/\",\"file\":\"https://stg2640530a8a302.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "04f79e30-a47e-4509-b52d-07bef3e10915", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1457e110-49bd-4870-bf17-d5ee05f82502", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "7", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:06 GMT", - "x-ms-correlation-request-id" : "615ba5be-3999-4ba3-8af3-a7b030d5c251", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;177,Microsoft.Compute/CreateVMScaleSet30Min;900,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3705,Microsoft.Compute/VmssQueuedVMOperations;4793", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172306Z:615ba5be-3999-4ba3-8af3-a7b030d5c251", - "Expires" : "-1", - "Content-Length" : "4225", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/c398eb6d-bb01-4e5f-9720-58015ae6d35d?api-version=2021-11-01", - "x-ms-request-id" : "c398eb6d-bb01-4e5f-9720-58015ae6d35d", - "Body" : "{\r\n \"name\": \"vmss86262fdb61cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm75407\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1173756a0b0af.blob.core.windows.net/vhds\",\r\n \"https://stg2640530a8a302.blob.core.windows.net/vhds\",\r\n \"https://stg3161210effeb1.blob.core.windows.net/vhds\"\r\n ],\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"be8fe785-5853-452d-8c39-47e3df361196\"\r\n }\r\n}", - "x-ms-client-request-id" : "1457e110-49bd-4870-bf17-d5ee05f82502", - "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/eastus2/operations/c398eb6d-bb01-4e5f-9720-58015ae6d35d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a3aa30d-acd8-42ef-9c1f-239c8a0cc103" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:16 GMT", - "x-ms-correlation-request-id" : "2fac833d-4b6c-4d53-8489-769383932123", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172317Z:2fac833d-4b6c-4d53-8489-769383932123", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "4d22e4e6-68b4-41e8-ba9b-b71ef20d8969", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:05.0050813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c398eb6d-bb01-4e5f-9720-58015ae6d35d\"\r\n}", - "x-ms-client-request-id" : "2a3aa30d-acd8-42ef-9c1f-239c8a0cc103", - "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/eastus2/operations/c398eb6d-bb01-4e5f-9720-58015ae6d35d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "abbf3aae-a61f-46b2-80ed-81943caa9425" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11825", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:17 GMT", - "x-ms-correlation-request-id" : "68fd9761-3526-454e-872f-70dc38049b30", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172418Z:68fd9761-3526-454e-872f-70dc38049b30", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "027e1028-3858-41c4-8433-4f249f67d126", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:05.0050813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c398eb6d-bb01-4e5f-9720-58015ae6d35d\"\r\n}", - "x-ms-client-request-id" : "abbf3aae-a61f-46b2-80ed-81943caa9425", - "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/eastus2/operations/c398eb6d-bb01-4e5f-9720-58015ae6d35d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ae29010-444e-40ca-8c3a-c5322ebef1a6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:48 GMT", - "x-ms-correlation-request-id" : "5174dc69-1ee5-4eb9-8718-726e8cde90ce", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172448Z:5174dc69-1ee5-4eb9-8718-726e8cde90ce", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "65357000-b816-43fe-bcc5-323b3a50ccc4", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:05.0050813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c398eb6d-bb01-4e5f-9720-58015ae6d35d\"\r\n}", - "x-ms-client-request-id" : "3ae29010-444e-40ca-8c3a-c5322ebef1a6", - "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/eastus2/operations/c398eb6d-bb01-4e5f-9720-58015ae6d35d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "57f328ee-5a83-4082-b9dc-aff679517d2f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:18 GMT", - "x-ms-correlation-request-id" : "fbcd5f87-20ac-4fa9-9dbf-94cb87b5d3f2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29959", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:fbcd5f87-20ac-4fa9-9dbf-94cb87b5d3f2", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ccb7f7eb-14cb-4664-8d72-b42279a14d65", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:05.0050813+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:17.5759832+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c398eb6d-bb01-4e5f-9720-58015ae6d35d\"\r\n}", - "x-ms-client-request-id" : "57f328ee-5a83-4082-b9dc-aff679517d2f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "406a6186-0f4c-46f2-93e4-7a0e593d1ab1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:18 GMT", - "x-ms-correlation-request-id" : "56d3e468-f6d0-4104-8a52-25a423dbd3af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;191,Microsoft.Compute/GetVMScaleSet30Min;1291", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:56d3e468-f6d0-4104-8a52-25a423dbd3af", - "Expires" : "-1", - "Content-Length" : "4226", - "x-ms-request-id" : "f366f3d3-f0fd-4e39-af9b-3a0f6d51eb7e", - "Body" : "{\r\n \"name\": \"vmss86262fdb61cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm75407\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1173756a0b0af.blob.core.windows.net/vhds\",\r\n \"https://stg2640530a8a302.blob.core.windows.net/vhds\",\r\n \"https://stg3161210effeb1.blob.core.windows.net/vhds\"\r\n ],\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"be8fe785-5853-452d-8c39-47e3df361196\"\r\n }\r\n}", - "x-ms-client-request-id" : "406a6186-0f4c-46f2-93e4-7a0e593d1ab1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ea0e973-a328-43ce-a0b3-64d93291a58b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "e0e84ae6-8d05-4a77-93bf-a16fa20273c6", - "x-ms-arm-service-request-id" : "aad4da7f-eb92-4133-8727-5e816514705b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172520Z:e0e84ae6-8d05-4a77-93bf-a16fa20273c6", - "Expires" : "-1", - "Content-Length" : "21642", - "x-ms-request-id" : "f78f70a7-6e86-46a5-90ae-19798179db65", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"cf87ddc6-50e4-4a8e-8b0b-ccd51544ba0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9f95fed2-61bc-4193-bf3d-360b419e442b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"cf87ddc6-50e4-4a8e-8b0b-ccd51544ba0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i2bvx1djwetejcwewnqgt15g1e.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-80-B2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"83972dea-4652-402c-998b-aab3cf77f264\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5dc33e14-7ffe-40ce-8ec9-2c3c32b00b10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"83972dea-4652-402c-998b-aab3cf77f264\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i2bvx1djwetejcwewnqgt15g1e.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8E-52\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"5a11d5ba-4522-4b05-9d16-4e5ed949a16a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6805a730-a3ef-4d43-95f1-fbd0e182a065\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"5a11d5ba-4522-4b05-9d16-4e5ed949a16a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i2bvx1djwetejcwewnqgt15g1e.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-89-69\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"7af5e366-765b-4906-85a4-09f1ec839d62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a65abee9-d725-412d-b7c3-ea05395ca01a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"7af5e366-765b-4906-85a4-09f1ec839d62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-89-13\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"fbd07684-7efa-453f-ab52-6d0782c7f933\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0c80f3ff-5aea-4250-9e62-011c301094cf\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"fbd07684-7efa-453f-ab52-6d0782c7f933\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8C-8E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"ef26c87c-f25e-4aae-8894-13f00c74683f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ba2a55d-cad4-45fb-b818-934d0c419a03\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"ef26c87c-f25e-4aae-8894-13f00c74683f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8A-A4\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"b0280cbe-2e69-481f-9f38-b827fb5eb93a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f88cbb9f-e9ad-4993-a153-70e1059366f0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"b0280cbe-2e69-481f-9f38-b827fb5eb93a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-84-D4\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "0ea0e973-a328-43ce-a0b3-64d93291a58b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e98a3fd1-fb9f-457a-937d-5704bb60f9ab", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "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" : "11764", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:20 GMT", - "x-ms-correlation-request-id" : "d50d4230-48b0-4c06-8dfd-6d3ceb8d0032", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;177,Microsoft.Compute/HighCostGetVMScaleSet30Min;897,Microsoft.Compute/VMScaleSetVMViews3Min;4985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172520Z:d50d4230-48b0-4c06-8dfd-6d3ceb8d0032", - "Expires" : "-1", - "Content-Length" : "14956", - "x-ms-request-id" : "22e5323e-c167-4efe-8509-3c1c44cd5ccc", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss86262fdb61cb_0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"fb1d0c31-adfe-4e31-8331-80bb45c4da5c\",\r\n \"hardwareProfile\": {},\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.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk-os-0-a9de291c20ef4f0b9025360c46d46cce\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg1173756a0b0af.blob.core.windows.net/vhds/vmss86262fdb61cb-os-disk-os-0-a9de291c20ef4f0b9025360c46d46cce.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm75407000000\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachines/vmss86262fdb61cb_0/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss86262fdb61cb_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"1c7d9f69-ebc2-4a91-9c70-090b352bcf5b\",\r\n \"hardwareProfile\": {},\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.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk-os-1-38c5763dc1814329855552390b9d4b55\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg2640530a8a302.blob.core.windows.net/vhds/vmss86262fdb61cb-os-disk-os-1-38c5763dc1814329855552390b9d4b55.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm75407000001\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachines/vmss86262fdb61cb_1/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss86262fdb61cb_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"vmId\": \"9fb083be-0706-4d70-8660-a6ca336d0c55\",\r\n \"hardwareProfile\": {},\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.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk-os-2-0f315386c2074355b99721c5d25f52ff\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg3161210effeb1.blob.core.windows.net/vhds/vmss86262fdb61cb-os-disk-os-2-0f315386c2074355b99721c5d25f52ff.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm75407000002\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachines/vmss86262fdb61cb_2/extensions/CustomScriptForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "e98a3fd1-fb9f-457a-937d-5704bb60f9ab", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "78911efb-ea5f-41cc-acd6-737de6f8f0e9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11795", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:21 GMT", - "x-ms-correlation-request-id" : "9fc63567-9b89-4541-b8f8-49b5822b2527", - "x-ms-arm-service-request-id" : "4c4f86cc-bad2-4192-a802-31b85fc9c044", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172521Z:9fc63567-9b89-4541-b8f8-49b5822b2527", - "Expires" : "-1", - "Content-Length" : "3179", - "x-ms-request-id" : "1f59b23f-aea9-4911-a952-c49d46a12859", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"cf87ddc6-50e4-4a8e-8b0b-ccd51544ba0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9f95fed2-61bc-4193-bf3d-360b419e442b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"cf87ddc6-50e4-4a8e-8b0b-ccd51544ba0c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i2bvx1djwetejcwewnqgt15g1e.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-80-B2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "78911efb-ea5f-41cc-acd6-737de6f8f0e9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "30ad2377-835b-4189-a0ab-34680c606e97", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11908", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:21 GMT", - "x-ms-correlation-request-id" : "214a016b-3818-4801-a986-f8841c9a9001", - "x-ms-arm-service-request-id" : "6b3c7342-98e4-4444-b3a5-bf293717a47b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"633a7581-60c8-4cbf-a590-23f07127b52d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172522Z:214a016b-3818-4801-a986-f8841c9a9001", - "Expires" : "-1", - "Content-Length" : "36866", - "x-ms-request-id" : "4acf376f-fc54-46d7-98de-525b0d026597", - "Body" : "{\r\n \"name\": \"intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f725b4d2-95c2-4792-9a72-e969f92067c2\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-27204eb2-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-27204eb2-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-27204eb2-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "30ad2377-835b-4189-a0ab-34680c606e97", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "89206b16-a370-4faa-905d-8d43a3d7e4d9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11805", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:22 GMT", - "x-ms-correlation-request-id" : "3b3c034b-25c8-4219-992a-001d87c6ea72", - "x-ms-arm-service-request-id" : "2b127adb-b641-4c7c-82ae-8baf9e187c5f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172522Z:3b3c034b-25c8-4219-992a-001d87c6ea72", - "Expires" : "-1", - "Content-Length" : "3179", - "x-ms-request-id" : "321a7deb-b749-4756-a9ee-3973785f20ac", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"83972dea-4652-402c-998b-aab3cf77f264\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5dc33e14-7ffe-40ce-8ec9-2c3c32b00b10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"83972dea-4652-402c-998b-aab3cf77f264\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i2bvx1djwetejcwewnqgt15g1e.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-8E-52\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "89206b16-a370-4faa-905d-8d43a3d7e4d9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "733ad917-7dd1-4325-85fc-a7da67386298", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11885", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:23 GMT", - "x-ms-correlation-request-id" : "4caf64d0-52fc-4c36-ba7a-5ed6bcbfadbc", - "x-ms-arm-service-request-id" : "209b2308-e5eb-45b4-960a-8e32e41765bb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"633a7581-60c8-4cbf-a590-23f07127b52d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172523Z:4caf64d0-52fc-4c36-ba7a-5ed6bcbfadbc", - "Expires" : "-1", - "Content-Length" : "36866", - "x-ms-request-id" : "1b02588a-76b7-41d8-8acb-14e078b3e0be", - "Body" : "{\r\n \"name\": \"intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f725b4d2-95c2-4792-9a72-e969f92067c2\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-27204eb2-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-27204eb2-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-27204eb2-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "733ad917-7dd1-4325-85fc-a7da67386298", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f3a5488-ba29-40b0-ad84-871392ec24ed", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11762", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:23 GMT", - "x-ms-correlation-request-id" : "0d788a6b-db58-4130-b53b-cb1cc3827583", - "x-ms-arm-service-request-id" : "6d6ba306-ccc3-4d32-840b-41b5e7597827", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172524Z:0d788a6b-db58-4130-b53b-cb1cc3827583", - "Expires" : "-1", - "Content-Length" : "3179", - "x-ms-request-id" : "60b60ee5-337c-4de5-8097-60e7b7473d61", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"5a11d5ba-4522-4b05-9d16-4e5ed949a16a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6805a730-a3ef-4d43-95f1-fbd0e182a065\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"5a11d5ba-4522-4b05-9d16-4e5ed949a16a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i2bvx1djwetejcwewnqgt15g1e.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-E2-89-69\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "4f3a5488-ba29-40b0-ad84-871392ec24ed", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "beaf9765-d235-4458-afc5-9d2cb92d7a2c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11761", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:24 GMT", - "x-ms-correlation-request-id" : "9b22cd97-b644-4a03-9b11-e45d9c060b25", - "x-ms-arm-service-request-id" : "29fc7018-b909-4a9d-9f54-321363a8f700", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"633a7581-60c8-4cbf-a590-23f07127b52d\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172524Z:9b22cd97-b644-4a03-9b11-e45d9c060b25", - "Expires" : "-1", - "Content-Length" : "36866", - "x-ms-request-id" : "7b2e0d15-47b8-4a2a-8be1-a24d594aa033", - "Body" : "{\r\n \"name\": \"intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f725b4d2-95c2-4792-9a72-e969f92067c2\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-27204eb2-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-27204eb2-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-27204eb2-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"633a7581-60c8-4cbf-a590-23f07127b52d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "beaf9765-d235-4458-afc5-9d2cb92d7a2c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/poweroff?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "36bd0a4f-a963-488e-9308-925fa47563ee", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:24 GMT", - "x-ms-correlation-request-id" : "13ec0a22-05d2-499e-9135-ae6e051a89be", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3640,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172525Z:13ec0a22-05d2-499e-9135-ae6e051a89be", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b0424e06-c32b-48d5-b890-3d5c6c1981ed?api-version=2021-11-01", - "x-ms-request-id" : "b0424e06-c32b-48d5-b890-3d5c6c1981ed", - "x-ms-client-request-id" : "36bd0a4f-a963-488e-9308-925fa47563ee", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b0424e06-c32b-48d5-b890-3d5c6c1981ed?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b0424e06-c32b-48d5-b890-3d5c6c1981ed?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8069fd9c-467b-44a5-94fe-4df8aa862063" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11845", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:54 GMT", - "x-ms-correlation-request-id" : "913d2fbf-e3d5-4d5b-90be-48bcbe022405", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172555Z:913d2fbf-e3d5-4d5b-90be-48bcbe022405", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "64186703-c9a9-4ecc-80a9-693b7c03306a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:25.0764913+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:48.6560743+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b0424e06-c32b-48d5-b890-3d5c6c1981ed\"\r\n}", - "x-ms-client-request-id" : "8069fd9c-467b-44a5-94fe-4df8aa862063", - "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/eastus2/operations/b0424e06-c32b-48d5-b890-3d5c6c1981ed?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce72654e-0170-4a7f-a671-2ff6f7904b14" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11775", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:55 GMT", - "x-ms-correlation-request-id" : "8155f03a-8599-432a-bb21-f3a72c8453ad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29949", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172555Z:8155f03a-8599-432a-bb21-f3a72c8453ad", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "8d3b1f84-f0d3-4785-a871-c40b48ac37f3", - "x-ms-client-request-id" : "ce72654e-0170-4a7f-a671-2ff6f7904b14" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/start?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "20e9f095-6b92-44f2-93b2-524f1f60a19b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "3", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:55 GMT", - "x-ms-correlation-request-id" : "867405ac-dc61-4a87-a465-906ddd48b20c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3630,Microsoft.Compute/VmssQueuedVMOperations;4797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172556Z:867405ac-dc61-4a87-a465-906ddd48b20c", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1c60a84f-2883-43a0-a2ae-93208f0a31e4?api-version=2021-11-01", - "x-ms-request-id" : "1c60a84f-2883-43a0-a2ae-93208f0a31e4", - "x-ms-client-request-id" : "20e9f095-6b92-44f2-93b2-524f1f60a19b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1c60a84f-2883-43a0-a2ae-93208f0a31e4?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1c60a84f-2883-43a0-a2ae-93208f0a31e4?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b7a0d73-fee9-4518-9735-1c206b6e6724" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11723", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:26 GMT", - "x-ms-correlation-request-id" : "efb709c4-5e56-4ab2-8c97-66ec746655b5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29940", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172626Z:efb709c4-5e56-4ab2-8c97-66ec746655b5", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "08986696-96a2-4fb2-87be-4c86d0aec2dc", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:56.2347083+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:01.047493+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1c60a84f-2883-43a0-a2ae-93208f0a31e4\"\r\n}", - "x-ms-client-request-id" : "8b7a0d73-fee9-4518-9735-1c206b6e6724", - "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/eastus2/operations/1c60a84f-2883-43a0-a2ae-93208f0a31e4?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "866b68f2-1e80-49fe-ac22-a5068e12f1b6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11834", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:26 GMT", - "x-ms-correlation-request-id" : "16c6c8db-7568-445b-b8c7-2957ebdcc1c8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172627Z:16c6c8db-7568-445b-b8c7-2957ebdcc1c8", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "f81f751c-485a-4efb-9af3-51f4d0daf5a8", - "x-ms-client-request-id" : "866b68f2-1e80-49fe-ac22-a5068e12f1b6" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "763203db-204f-46a5-82ed-e9edcadc0c23", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11751", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:27 GMT", - "x-ms-correlation-request-id" : "555f3525-8d03-4d7f-990e-58966bda7f80", - "x-ms-arm-service-request-id" : "aeb6946b-a904-46ef-ac39-2b74bbf9e465", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172627Z:555f3525-8d03-4d7f-990e-58966bda7f80", - "Expires" : "-1", - "Content-Length" : "22066", - "x-ms-request-id" : "b62604b6-e917-43fb-b126-e96f00a36423", - "Body" : "{\r\n \"name\": \"intlb-27204eb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f725b4d2-95c2-4792-9a72-e969f92067c2\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-27204eb2-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/publicIPAddresses/pip-intlb-27204eb2\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-27204eb2-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"intlb-27204eb2-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpProbe\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"24170c92-5bf3-4c7c-b495-2aa55ff4fec2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/frontendIPConfigurations/intlb-27204eb2-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "763203db-204f-46a5-82ed-e9edcadc0c23", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a228639-2945-4e33-8391-b2427af1d64a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "4", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:31 GMT", - "x-ms-correlation-request-id" : "0fddb35e-3916-40de-8c88-310f682ad1ab", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3602,Microsoft.Compute/VmssQueuedVMOperations;4796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172632Z:0fddb35e-3916-40de-8c88-310f682ad1ab", - "Expires" : "-1", - "Content-Length" : "4225", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "x-ms-request-id" : "b18edcb8-df4d-43bb-a186-b07d820696e2", - "Body" : "{\r\n \"name\": \"vmss86262fdb61cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm75407\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1173756a0b0af.blob.core.windows.net/vhds\",\r\n \"https://stg2640530a8a302.blob.core.windows.net/vhds\",\r\n \"https://stg3161210effeb1.blob.core.windows.net/vhds\"\r\n ],\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"be8fe785-5853-452d-8c39-47e3df361196\"\r\n }\r\n}", - "x-ms-client-request-id" : "7a228639-2945-4e33-8391-b2427af1d64a", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "183a9ca7-f55d-4865-8d51-5336f5690052" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11853", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:42 GMT", - "x-ms-correlation-request-id" : "18948912-268a-4aae-91dd-212f08b1050c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29936", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172643Z:18948912-268a-4aae-91dd-212f08b1050c", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "5228d5ab-c19a-45cb-9680-0826800ca9d2", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "183a9ca7-f55d-4865-8d51-5336f5690052", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "de5305f8-f838-4868-ba8d-54580bccd5f8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:20 GMT", - "x-ms-correlation-request-id" : "32680c79-6f02-4077-9d1f-25f119db1385", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29929", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172720Z:32680c79-6f02-4077-9d1f-25f119db1385", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "afa684d7-1b2a-46f5-b401-19c666611698", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "de5305f8-f838-4868-ba8d-54580bccd5f8", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "47966685-bf87-4746-80c9-d4f2b25a79d4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11907", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:49 GMT", - "x-ms-correlation-request-id" : "8a47a544-ac95-445a-8269-dc68a7d60f2e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29924", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172750Z:8a47a544-ac95-445a-8269-dc68a7d60f2e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "41ce398a-6212-4d42-b456-9640d03ad985", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "47966685-bf87-4746-80c9-d4f2b25a79d4", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "780ce7ed-91d8-4fc1-bd9d-34611b5cfdf1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11761", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:20 GMT", - "x-ms-correlation-request-id" : "25ea9712-a3c8-41e1-b412-6edb89d0c713", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172821Z:25ea9712-a3c8-41e1-b412-6edb89d0c713", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "9396968b-cb8a-444c-8402-fcd70d6fc9f3", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "780ce7ed-91d8-4fc1-bd9d-34611b5cfdf1", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "966dfb02-c12f-4bf4-b99d-369195fc0473" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:50 GMT", - "x-ms-correlation-request-id" : "07e9f44b-49b5-48b7-9861-b6ebfbb73808", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29914", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172851Z:07e9f44b-49b5-48b7-9861-b6ebfbb73808", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "549493f3-9392-440e-9150-8b7873df2acd", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "966dfb02-c12f-4bf4-b99d-369195fc0473", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0c2edd0-a505-44c9-9969-89c3e1acfe3f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11752", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:21 GMT", - "x-ms-correlation-request-id" : "26990313-b919-4de8-a402-48353ba6d34d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29910", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172921Z:26990313-b919-4de8-a402-48353ba6d34d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "07c79b5e-e943-4b10-85e3-95f8dd22eb60", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "d0c2edd0-a505-44c9-9969-89c3e1acfe3f", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e6dcb33-5116-482a-a5b4-6a095c43c8cf" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11822", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:52 GMT", - "x-ms-correlation-request-id" : "89970140-cf3f-4fe1-86e0-1794fb2e3b19", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29906", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172952Z:89970140-cf3f-4fe1-86e0-1794fb2e3b19", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d38e7d1c-caad-4006-9efb-0a686d7dcf86", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "4e6dcb33-5116-482a-a5b4-6a095c43c8cf", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4d0a5ac-586a-446b-a7e5-8574e117d158" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11733", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:22 GMT", - "x-ms-correlation-request-id" : "61a4cb68-f4c3-48f8-bbf4-211161b04d46", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173022Z:61a4cb68-f4c3-48f8-bbf4-211161b04d46", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "15acff9a-d3a3-4f56-b976-49c94ff18b75", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "f4d0a5ac-586a-446b-a7e5-8574e117d158", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6a8083e-2181-4cbd-8a47-64a37d383e56" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11752", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:52 GMT", - "x-ms-correlation-request-id" : "0c3dcc0d-dd61-4057-9b56-8a86a42aeba5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29901", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173052Z:0c3dcc0d-dd61-4057-9b56-8a86a42aeba5", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "352af835-d8ef-4ee8-95b8-9a233b0fb5f1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "b6a8083e-2181-4cbd-8a47-64a37d383e56", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1686221b-b68e-4b6b-8f90-89ec50edb4c6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11754", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:23 GMT", - "x-ms-correlation-request-id" : "05f73283-4d9f-428f-a2c5-e84fb6f404a1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29899", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173123Z:05f73283-4d9f-428f-a2c5-e84fb6f404a1", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "384aef2d-399b-4938-ae17-1a76b7051316", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "1686221b-b68e-4b6b-8f90-89ec50edb4c6", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4005f75b-683e-4452-a084-ac0c59f5aece" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11856", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:31:52 GMT", - "x-ms-correlation-request-id" : "b7844247-a48f-4fc9-ae17-a951eddcd674", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173153Z:b7844247-a48f-4fc9-ae17-a951eddcd674", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "55eaefe8-2735-4030-947b-67dc06e13356", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "4005f75b-683e-4452-a084-ac0c59f5aece", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3373bd3c-a708-4b85-a831-0dc1279914ba" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11728", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:23 GMT", - "x-ms-correlation-request-id" : "eb7be0b1-9017-4395-a208-2dc2b2f149f4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29894", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173223Z:eb7be0b1-9017-4395-a208-2dc2b2f149f4", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d65ace07-271e-4371-94d1-1dff7e9fa762", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "3373bd3c-a708-4b85-a831-0dc1279914ba", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "acdd2658-b127-4671-a53e-259fbd4a0485" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11897", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:32:53 GMT", - "x-ms-correlation-request-id" : "203518be-3850-4f77-9054-f94055533b3a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29890", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173254Z:203518be-3850-4f77-9054-f94055533b3a", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "3455b78c-446c-48bc-980d-8f2635eab5cf", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "acdd2658-b127-4671-a53e-259fbd4a0485", - "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/eastus2/operations/b18edcb8-df4d-43bb-a186-b07d820696e2?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "552235cc-eb58-43cf-9b51-719a7db17c54" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11742", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:33:24 GMT", - "x-ms-correlation-request-id" : "ff79b2ac-02a2-4e34-acd7-77baf98e5a3e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173324Z:ff79b2ac-02a2-4e34-acd7-77baf98e5a3e", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "62aee745-387a-43cb-93ee-1ab4c841e512", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:28.8305289+00:00\",\r\n \"endTime\": \"2021-01-29T17:33:17.0907346+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b18edcb8-df4d-43bb-a186-b07d820696e2\"\r\n}", - "x-ms-client-request-id" : "552235cc-eb58-43cf-9b51-719a7db17c54", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "70b30b80-22cf-4664-91d3-c0dbc2a5b5f0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11857", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:33:24 GMT", - "x-ms-correlation-request-id" : "f3c69be1-47e1-4178-b59f-703ecf7d340c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;193,Microsoft.Compute/GetVMScaleSet30Min;1270", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173325Z:f3c69be1-47e1-4178-b59f-703ecf7d340c", - "Expires" : "-1", - "Content-Length" : "4226", - "x-ms-request-id" : "3301849d-4bbf-4851-ad59-10b6d8b575d2", - "Body" : "{\r\n \"name\": \"vmss86262fdb61cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm75407\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1173756a0b0af.blob.core.windows.net/vhds\",\r\n \"https://stg2640530a8a302.blob.core.windows.net/vhds\",\r\n \"https://stg3161210effeb1.blob.core.windows.net/vhds\"\r\n ],\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss86262fdb61cb-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/virtualNetworks/vnet20359de2e573/subnets/Front-end\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/backendAddressPools/intlb-27204eb2-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Network/loadBalancers/intlb-27204eb2/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://raw.githubusercontent.com/anuchandy/azure-libraries-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"be8fe785-5853-452d-8c39-47e3df361196\"\r\n }\r\n}", - "x-ms-client-request-id" : "70b30b80-22cf-4664-91d3-c0dbc2a5b5f0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/restart?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6429d3bf-ddf3-4e26-9b46-392d4e4c88be", - "Content-Type" : "application/json" - }, - "Response" : null, - "Exception" : { - "ClassName" : "java.net.SocketException", - "ErrorMessage" : "Connection reset" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs96540da/providers/Microsoft.Compute/virtualMachineScaleSets/vmss86262fdb61cb/restart?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6429d3bf-ddf3-4e26-9b46-392d4e4c88be", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "6", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:33:26 GMT", - "x-ms-correlation-request-id" : "3443479f-9015-4969-9bd2-faab8b63858c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1193,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3595,Microsoft.Compute/VmssQueuedVMOperations;4794", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173326Z:3443479f-9015-4969-9bd2-faab8b63858c", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6a7a4089-25a5-4694-b211-15f3a4474f7d?api-version=2021-11-01", - "x-ms-request-id" : "6a7a4089-25a5-4694-b211-15f3a4474f7d", - "x-ms-client-request-id" : "6429d3bf-ddf3-4e26-9b46-392d4e4c88be", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6a7a4089-25a5-4694-b211-15f3a4474f7d?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6a7a4089-25a5-4694-b211-15f3a4474f7d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a190013b-55df-4435-ba9d-dddd43a5def2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11746", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:33:56 GMT", - "x-ms-correlation-request-id" : "687c510d-46c5-4c59-a911-453db390c0b1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29880", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173356Z:687c510d-46c5-4c59-a911-453db390c0b1", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "31504dd3-9ac8-41fa-94ac-478428a7b604", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:33:26.3257293+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6a7a4089-25a5-4694-b211-15f3a4474f7d\"\r\n}", - "x-ms-client-request-id" : "a190013b-55df-4435-ba9d-dddd43a5def2", - "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/eastus2/operations/6a7a4089-25a5-4694-b211-15f3a4474f7d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5efaaf0-d411-4abd-b5a0-740cfe0120fe" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11838", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:34:26 GMT", - "x-ms-correlation-request-id" : "f5afcd22-92ef-470a-a9d5-c68c4e426f26", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29876", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173427Z:f5afcd22-92ef-470a-a9d5-c68c4e426f26", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "be834a3e-d5c7-45d4-b360-903ca385630d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:33:26.3257293+00:00\",\r\n \"endTime\": \"2021-01-29T17:34:04.5938016+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6a7a4089-25a5-4694-b211-15f3a4474f7d\"\r\n}", - "x-ms-client-request-id" : "d5efaaf0-d411-4abd-b5a0-740cfe0120fe", - "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/eastus2/operations/6a7a4089-25a5-4694-b211-15f3a4474f7d?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f9bc56f-8d01-45df-af42-16829033b411" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11723", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:34:26 GMT", - "x-ms-correlation-request-id" : "660ee549-8366-41d6-8388-67156974a496", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29875", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173427Z:660ee549-8366-41d6-8388-67156974a496", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "538daad0-4add-4742-a635-ffbef9986539", - "x-ms-client-request-id" : "2f9bc56f-8d01-45df-af42-16829033b411" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs96540da?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "03cb9840-011e-46f8-b5c0-de226e7425b0", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:34:31 GMT", - "x-ms-correlation-request-id" : "5ee23f77-b7c1-4a2b-91f2-03ad056a8d70", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173432Z:5ee23f77-b7c1-4a2b-91f2-03ad056a8d70", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "5ee23f77-b7c1-4a2b-91f2-03ad056a8d70", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM5NjU0MERBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcovs96540da", "vnet20359de2e573", "intlb-27204eb2", "vmss86262fdb61cb", "stg1173756a0b0af", "stg2640530a8a302", "stg3161210effeb1", "vmss-vm75407" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithDisk.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithDisk.json deleted file mode 100644 index 138114aa5547..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithDisk.json +++ /dev/null @@ -1,1698 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv35769b1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb6b478b-da85-480a-a5d3-9c9545454bf0", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "69c99772-0e59-4615-afa0-b18ab2f821a7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:69c99772-0e59-4615-afa0-b18ab2f821a7", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "69c99772-0e59-4615-afa0-b18ab2f821a7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1\",\"name\":\"rgcomv35769b1\",\"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/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea1776a2-568d-428a-9b23-9c34aa8d1b20", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:10 GMT", - "x-ms-correlation-request-id" : "78847bce-8a48-4e62-b47b-11b877fc4e07", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172211Z:78847bce-8a48-4e62-b47b-11b877fc4e07", - "Expires" : "-1", - "Content-Length" : "245", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/53ee3430-7632-433d-8116-e2d5fc413559?api-version=2021-11-01", - "x-ms-request-id" : "53ee3430-7632-433d-8116-e2d5fc413559", - "Body" : "{\r\n \"name\": \"dsk-7185803d\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "ea1776a2-568d-428a-9b23-9c34aa8d1b20", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/53ee3430-7632-433d-8116-e2d5fc413559?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/53ee3430-7632-433d-8116-e2d5fc413559?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6edd3b0f-91ef-471a-a767-aab063d573f9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "cf31fefc-1ef9-4930-a2d1-b88aaca6d75f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:cf31fefc-1ef9-4930-a2d1-b88aaca6d75f", - "Expires" : "-1", - "Content-Length" : "1052", - "x-ms-request-id" : "e32dcaab-40be-4d8d-81e7-0f9a3f6939ce", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:11.5330737+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:11.6893215+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-7185803d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:11.5330737+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"68d15d67-947c-4bae-bd6c-963f9b01c54a\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"53ee3430-7632-433d-8116-e2d5fc413559\"\r\n}", - "x-ms-client-request-id" : "6edd3b0f-91ef-471a-a767-aab063d573f9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "db56e0f9-f4b7-4b14-b2c3-15b2eb1a199c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "fe27b7ba-70c5-4b35-a94d-40880c31920e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:fe27b7ba-70c5-4b35-a94d-40880c31920e", - "Expires" : "-1", - "Content-Length" : "827", - "x-ms-request-id" : "c3cf0fe0-cba6-4191-9294-e316884c0b96", - "Body" : "{\r\n \"name\": \"dsk-7185803d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:11.5330737+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"68d15d67-947c-4bae-bd6c-963f9b01c54a\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "db56e0f9-f4b7-4b14-b2c3-15b2eb1a199c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv35769b1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0cb2734-8c8c-418c-8bdb-bbdff52c7c85", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "558dc1b3-fb37-4461-801a-0c09c03b00dd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:558dc1b3-fb37-4461-801a-0c09c03b00dd", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "558dc1b3-fb37-4461-801a-0c09c03b00dd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1\",\"name\":\"rgcomv35769b1\",\"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/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab925285-719c-4e94-a0b8-788a29291100", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "68742f62-a5f6-4715-93cf-2b4822e8f8eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:68742f62-a5f6-4715-93cf-2b4822e8f8eb", - "Expires" : "-1", - "Content-Length" : "291", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fc59d072-32fd-473b-8a8f-0f488f065a3e?api-version=2021-11-01", - "x-ms-request-id" : "fc59d072-32fd-473b-8a8f-0f488f065a3e", - "Body" : "{\r\n \"name\": \"dsk-676329d7\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "ab925285-719c-4e94-a0b8-788a29291100", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fc59d072-32fd-473b-8a8f-0f488f065a3e?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfe6dfa0-92ba-41a0-ab2d-ec5af92a3018", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:16 GMT", - "x-ms-correlation-request-id" : "65d85d2f-96d1-4e41-ad3a-fb034953cdd2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172217Z:65d85d2f-96d1-4e41-ad3a-fb034953cdd2", - "Expires" : "-1", - "Content-Length" : "246", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e73d764d-4f93-4bd6-ad4b-15cfba43340a?api-version=2021-11-01", - "x-ms-request-id" : "e73d764d-4f93-4bd6-ad4b-15cfba43340a", - "Body" : "{\r\n \"name\": \"dsk-59976c79\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "dfe6dfa0-92ba-41a0-ab2d-ec5af92a3018", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e73d764d-4f93-4bd6-ad4b-15cfba43340a?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/publicIPAddresses/pip66248a2c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "28c66aa1-bb5f-4b90-a88b-abe569e46265", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "4bbb8449-0c1e-48ad-81cc-fa6526eb3ab6", - "x-ms-arm-service-request-id" : "26820593-69c3-45f5-bfd2-d274d100239d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:4bbb8449-0c1e-48ad-81cc-fa6526eb3ab6", - "Expires" : "-1", - "Content-Length" : "774", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89bf05d4-7e01-4677-be6e-9d27432d47d1?api-version=2023-02-01", - "x-ms-request-id" : "89bf05d4-7e01-4677-be6e-9d27432d47d1", - "Body" : "{\r\n \"name\": \"pip66248a2c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/publicIPAddresses/pip66248a2c\",\r\n \"etag\": \"W/\\\"5d709b5e-2e51-4adf-84da-217b35da3329\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6bf1eb10-942a-4c47-9cb1-e2f88bc658f3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip46176c72\",\r\n \"fqdn\": \"pip46176c72.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "28c66aa1-bb5f-4b90-a88b-abe569e46265", - "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/DiskOperations/fc59d072-32fd-473b-8a8f-0f488f065a3e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9bb12cf-7e9b-4770-9fdb-358768b70c14" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "b1b54be3-7229-4757-b5f8-ff27396e6c79", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:b1b54be3-7229-4757-b5f8-ff27396e6c79", - "Expires" : "-1", - "Content-Length" : "1052", - "x-ms-request-id" : "e6341e5a-8526-4a7a-bb1b-b9d164458b7d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:15.9862264+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:16.1112101+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-676329d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:15.9862264+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"fefb60c8-7759-4866-bc3d-2384823486e5\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"fc59d072-32fd-473b-8a8f-0f488f065a3e\"\r\n}", - "x-ms-client-request-id" : "c9bb12cf-7e9b-4770-9fdb-358768b70c14", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce3e1ee5-5374-4e28-907c-0c1a3cb82294" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "f9c52fa9-9cd2-4dc5-b5a6-8f1cc6ad8fb2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:f9c52fa9-9cd2-4dc5-b5a6-8f1cc6ad8fb2", - "Expires" : "-1", - "Content-Length" : "827", - "x-ms-request-id" : "9e3ea10e-482e-4c38-8ef7-2f73253b840b", - "Body" : "{\r\n \"name\": \"dsk-676329d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:15.9862264+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"fefb60c8-7759-4866-bc3d-2384823486e5\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "ce3e1ee5-5374-4e28-907c-0c1a3cb82294", - "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/DiskOperations/e73d764d-4f93-4bd6-ad4b-15cfba43340a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd545964-9e2e-4802-8166-fc9e4df3fbbb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "51890e7c-9b0c-4f06-bc48-af4bceb51630", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:51890e7c-9b0c-4f06-bc48-af4bceb51630", - "Expires" : "-1", - "Content-Length" : "1054", - "x-ms-request-id" : "8ff5fc0c-b52b-4af3-a9c9-194d13a260a7", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:16.8768462+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:17.0174914+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-59976c79\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.8924728+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"8b849b4d-f032-4158-871e-b4800d008ab7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"e73d764d-4f93-4bd6-ad4b-15cfba43340a\"\r\n}", - "x-ms-client-request-id" : "cd545964-9e2e-4802-8166-fc9e4df3fbbb", - "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/89bf05d4-7e01-4677-be6e-9d27432d47d1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b24154f0-aa89-42c4-acd7-87ed62551d76" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "2630b1a3-96b6-4e5b-a7dd-bc949d56de45", - "x-ms-arm-service-request-id" : "d9127f2e-38e6-46ed-b809-5683a7726e20", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:2630b1a3-96b6-4e5b-a7dd-bc949d56de45", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "1d3b981b-7a36-4e23-bf1e-8dd48de6597c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "b24154f0-aa89-42c4-acd7-87ed62551d76", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b18a4d49-1a0a-4673-a66b-13cd5cf0e116" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "cb3104cf-c9bc-448f-8e7b-70cc97e783b5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:cb3104cf-c9bc-448f-8e7b-70cc97e783b5", - "Expires" : "-1", - "Content-Length" : "829", - "x-ms-request-id" : "b667162c-18fd-4105-994e-f7b9407ee56d", - "Body" : "{\r\n \"name\": \"dsk-59976c79\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.8924728+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"8b849b4d-f032-4158-871e-b4800d008ab7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "b18a4d49-1a0a-4673-a66b-13cd5cf0e116", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/publicIPAddresses/pip66248a2c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "44e73cd6-64af-408d-9f50-e871ec9f7ef0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "fc352a1c-caab-4712-b827-2d2e7ab42a6b", - "x-ms-arm-service-request-id" : "513a8854-47df-44af-8459-d2f9b9d648c4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"5c219223-9218-45b1-ae7a-41958e05e8bc\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:fc352a1c-caab-4712-b827-2d2e7ab42a6b", - "Expires" : "-1", - "Content-Length" : "775", - "x-ms-request-id" : "aa8a12f9-0491-4fd2-8499-9f2d63ae62a9", - "Body" : "{\r\n \"name\": \"pip66248a2c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/publicIPAddresses/pip66248a2c\",\r\n \"etag\": \"W/\\\"5c219223-9218-45b1-ae7a-41958e05e8bc\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6bf1eb10-942a-4c47-9cb1-e2f88bc658f3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip46176c72\",\r\n \"fqdn\": \"pip46176c72.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "44e73cd6-64af-408d-9f50-e871ec9f7ef0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "96ca6c26-f82a-4cf0-89be-5412ba676f35", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "9805c4e6-eb91-47f1-8cbc-df31c938e0cd", - "x-ms-arm-service-request-id" : "4963c1e7-4c8c-4b2e-a237-469abb551a73", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172220Z:9805c4e6-eb91-47f1-8cbc-df31c938e0cd", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f2921f7-e0f2-4506-bbde-5eda60153cba?api-version=2023-02-01", - "x-ms-request-id" : "9f2921f7-e0f2-4506-bbde-5eda60153cba", - "Body" : "{\r\n \"name\": \"vnet4874733ad9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9\",\r\n \"etag\": \"W/\\\"fa0ef1ea-92a4-47ca-9f39-773924cbf28e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"25092c29-0750-4009-91a4-66aaf661e39a\",\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/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fa0ef1ea-92a4-47ca-9f39-773924cbf28e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "96ca6c26-f82a-4cf0-89be-5412ba676f35", - "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/9f2921f7-e0f2-4506-bbde-5eda60153cba?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d8c6547-e8d5-4ff2-a5e2-10f9299039eb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "4c36adbe-6f6e-4a2a-94ae-8e8826e3aa86", - "x-ms-arm-service-request-id" : "411c7f6d-e58e-4c77-81a2-c5c7d36c85a5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172224Z:4c36adbe-6f6e-4a2a-94ae-8e8826e3aa86", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "8db19c52-68c8-4d54-a8d6-fda97b87cca6", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "1d8c6547-e8d5-4ff2-a5e2-10f9299039eb", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fec804e1-04f7-4366-a0d6-95820c793e6e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:24 GMT", - "x-ms-correlation-request-id" : "267009c1-d93f-4ac7-ae05-38530c168f9b", - "x-ms-arm-service-request-id" : "f07b6829-3039-4ebc-b126-51ddc150e82d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"ffb50211-d44d-4d7f-9dc7-78807546b6f6\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172224Z:267009c1-d93f-4ac7-ae05-38530c168f9b", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "70431dbf-0fa1-4193-ae5f-6c1bc2545771", - "Body" : "{\r\n \"name\": \"vnet4874733ad9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9\",\r\n \"etag\": \"W/\\\"ffb50211-d44d-4d7f-9dc7-78807546b6f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"25092c29-0750-4009-91a4-66aaf661e39a\",\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/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ffb50211-d44d-4d7f-9dc7-78807546b6f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "fec804e1-04f7-4366-a0d6-95820c793e6e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7084e9fa-f171-4fbb-826a-fe4913301006", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:27 GMT", - "x-ms-correlation-request-id" : "df20ad1e-c0b5-4149-acb1-0c326c5eb9b1", - "x-ms-arm-service-request-id" : "ebcc6c4d-74f9-42a9-b4c3-17f3b136db42", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:df20ad1e-c0b5-4149-acb1-0c326c5eb9b1", - "Expires" : "-1", - "Content-Length" : "1866", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/411f4ff4-e67d-4131-addc-3dca19cc5955?api-version=2023-02-01", - "x-ms-request-id" : "411f4ff4-e67d-4131-addc-3dca19cc5955", - "Body" : "{\r\n \"name\": \"nic8267921221d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d\",\r\n \"etag\": \"W/\\\"673f2d93-e4c2-4f60-9c5d-7cb2cda069a8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1bb5a5c2-7511-4d3d-a28b-4e41f67793ba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"673f2d93-e4c2-4f60-9c5d-7cb2cda069a8\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/publicIPAddresses/pip66248a2c\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Network/virtualNetworks/vnet4874733ad9/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\": \"fewasjkqa2eubenem0vpmypdtc.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "7084e9fa-f171-4fbb-826a-fe4913301006", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "da4a6dd0-1ee4-4879-83a3-afdc7d9d9f96", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:29 GMT", - "x-ms-correlation-request-id" : "e0a32307-8754-4ef4-aba2-6d741561ebde", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1192", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172230Z:e0a32307-8754-4ef4-aba2-6d741561ebde", - "Expires" : "-1", - "Content-Length" : "3510", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9239d9d9-761a-4cf3-bb8f-31ff8f069a4a?api-version=2021-11-01", - "x-ms-request-id" : "9239d9d9-761a-4cf3-bb8f-31ff8f069a4a", - "Body" : "{\r\n \"name\": \"vm1033399bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5133cc4c-f9d4-4320-a28a-4ca16b34f0e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-59976c79\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-676329d7\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-7185803d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1033399bd\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "da4a6dd0-1ee4-4879-83a3-afdc7d9d9f96", - "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/9239d9d9-761a-4cf3-bb8f-31ff8f069a4a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac41771c-6925-40ce-9293-f40189c10f42" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:40 GMT", - "x-ms-correlation-request-id" : "9d091927-c56f-4fe9-8610-674df4ebc6d1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172240Z:9d091927-c56f-4fe9-8610-674df4ebc6d1", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "277c261f-c7b9-4fac-a3ce-29f00b540435", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:29.1779237+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9239d9d9-761a-4cf3-bb8f-31ff8f069a4a\"\r\n}", - "x-ms-client-request-id" : "ac41771c-6925-40ce-9293-f40189c10f42", - "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/9239d9d9-761a-4cf3-bb8f-31ff8f069a4a?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cb32aef-e7d5-464a-bb6b-e510d7489b51" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:15 GMT", - "x-ms-correlation-request-id" : "e054c621-3f79-490e-81c3-568ae8295177", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172315Z:e054c621-3f79-490e-81c3-568ae8295177", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4fe28561-ad9d-44d3-99fa-af5b26b819d1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:29.1779237+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:02.3979873+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9239d9d9-761a-4cf3-bb8f-31ff8f069a4a\"\r\n}", - "x-ms-client-request-id" : "3cb32aef-e7d5-464a-bb6b-e510d7489b51", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c91b9a18-8387-4ae7-ba55-b1422e2adcd5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:15 GMT", - "x-ms-correlation-request-id" : "87d70c7a-0bbd-45b5-a3ef-e3c23edbf5fc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172316Z:87d70c7a-0bbd-45b5-a3ef-e3c23edbf5fc", - "Expires" : "-1", - "Content-Length" : "4296", - "x-ms-request-id" : "fc45386c-a8de-4cf3-b07b-921a3b7426d2", - "Body" : "{\r\n \"name\": \"vm1033399bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5133cc4c-f9d4-4320-a28a-4ca16b34f0e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-59976c79\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-676329d7\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-7185803d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"vm1033399bd_disk5_7240c7fdccf5416ab6a1a3d2bcc54361\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk5_7240c7fdccf5416ab6a1a3d2bcc54361\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1033399bd\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "c91b9a18-8387-4ae7-ba55-b1422e2adcd5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "84eca6c9-e990-4b82-b5a3-e8fd59be8fbd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:19 GMT", - "x-ms-correlation-request-id" : "fbf54b83-3a62-4c81-9cd9-c1a962603045", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1182", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172319Z:fbf54b83-3a62-4c81-9cd9-c1a962603045", - "Expires" : "-1", - "Content-Length" : "4563", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dbc48a97-4e1d-4f2b-912b-ebc8c2fc5e75?api-version=2021-11-01", - "x-ms-request-id" : "dbc48a97-4e1d-4f2b-912b-ebc8c2fc5e75", - "Body" : "{\r\n \"name\": \"vm1033399bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5133cc4c-f9d4-4320-a28a-4ca16b34f0e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-59976c79\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-676329d7\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dsk-7185803d\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 4,\r\n \"name\": \"vm1033399bd_disk5_7240c7fdccf5416ab6a1a3d2bcc54361\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk5_7240c7fdccf5416ab6a1a3d2bcc54361\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": true\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 5,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1033399bd\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "84eca6c9-e990-4b82-b5a3-e8fd59be8fbd", - "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/dbc48a97-4e1d-4f2b-912b-ebc8c2fc5e75?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "238e8e74-46b3-4c2f-9e2e-c3d362b25b51" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:48 GMT", - "x-ms-correlation-request-id" : "91b28b03-f024-40e9-9f04-12b671e61b6b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29947", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172349Z:91b28b03-f024-40e9-9f04-12b671e61b6b", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "ff133182-4b86-4b80-b3f8-c494dbf31c27", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:17.7110468+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:33.133543+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dbc48a97-4e1d-4f2b-912b-ebc8c2fc5e75\"\r\n}", - "x-ms-client-request-id" : "238e8e74-46b3-4c2f-9e2e-c3d362b25b51", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5287a979-60ae-47fd-840e-4b121eed646e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:49 GMT", - "x-ms-correlation-request-id" : "291fe554-4f60-4ba3-9940-cd64f6a40bd7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3971,Microsoft.Compute/LowCostGet30Min;31971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172349Z:291fe554-4f60-4ba3-9940-cd64f6a40bd7", - "Expires" : "-1", - "Content-Length" : "3841", - "x-ms-request-id" : "6036adbd-d10d-4713-bef3-3d9a68e8938b", - "Body" : "{\r\n \"name\": \"vm1033399bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5133cc4c-f9d4-4320-a28a-4ca16b34f0e3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-59976c79\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dsk-676329d7\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 5,\r\n \"name\": \"vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1033399bd\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv35769b1/providers/Microsoft.Network/networkInterfaces/nic8267921221d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "5287a979-60ae-47fd-840e-4b121eed646e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8774bcdd-2baa-4b43-8c3b-5982ed81f26f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:49 GMT", - "x-ms-correlation-request-id" : "4724c012-5dcc-4694-b39f-304ad40939df", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4959,Microsoft.Compute/LowCostGet30Min;39957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172350Z:4724c012-5dcc-4694-b39f-304ad40939df", - "Expires" : "-1", - "Content-Length" : "827", - "x-ms-request-id" : "151a9a45-34b7-4703-91b2-61d0da10ef2d", - "Body" : "{\r\n \"name\": \"dsk-7185803d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:11.5330737+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"68d15d67-947c-4bae-bd6c-963f9b01c54a\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "8774bcdd-2baa-4b43-8c3b-5982ed81f26f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-7185803d?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3405277-22b1-4257-8688-7b8fab6dc660", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:23:51 GMT", - "x-ms-correlation-request-id" : "8b8f675b-5e4d-4d08-b62b-622070f2f2e4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172351Z:8b8f675b-5e4d-4d08-b62b-622070f2f2e4", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/78f28f84-ab6d-433f-a490-5b8f73146401?api-version=2021-11-01", - "x-ms-request-id" : "78f28f84-ab6d-433f-a490-5b8f73146401", - "x-ms-client-request-id" : "c3405277-22b1-4257-8688-7b8fab6dc660", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/78f28f84-ab6d-433f-a490-5b8f73146401?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/78f28f84-ab6d-433f-a490-5b8f73146401?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "75ac83e7-e4bc-4bb1-ad3f-01f98fb4c7cb" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11865", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:21 GMT", - "x-ms-correlation-request-id" : "d25ca4a6-388a-48c5-a808-6b391df3bc81", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172422Z:d25ca4a6-388a-48c5-a808-6b391df3bc81", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "2525913c-fa3b-4f65-b689-0cfb9294c9c0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:51.4711631+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:51.6118053+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78f28f84-ab6d-433f-a490-5b8f73146401\"\r\n}", - "x-ms-client-request-id" : "75ac83e7-e4bc-4bb1-ad3f-01f98fb4c7cb", - "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/DiskOperations/78f28f84-ab6d-433f-a490-5b8f73146401?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "025ced81-42df-4bea-b750-6469989ef0e6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11835", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:21 GMT", - "x-ms-correlation-request-id" : "c61a9559-6f34-47e8-8dc1-102cd43486ae", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172422Z:c61a9559-6f34-47e8-8dc1-102cd43486ae", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "5f02a1c5-eb5d-4b99-8c5f-b606f1a49964", - "x-ms-client-request-id" : "025ced81-42df-4bea-b750-6469989ef0e6" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "20b25bbe-1602-4a00-95e3-a7e55a86bd5b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:24:22 GMT", - "x-ms-correlation-request-id" : "23845dfa-8a71-4c7e-9100-121a57d010cd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172423Z:23845dfa-8a71-4c7e-9100-121a57d010cd", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/84392f77-24fe-46a7-a1d8-21b398755973?api-version=2021-11-01", - "x-ms-request-id" : "84392f77-24fe-46a7-a1d8-21b398755973", - "x-ms-client-request-id" : "20b25bbe-1602-4a00-95e3-a7e55a86bd5b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/84392f77-24fe-46a7-a1d8-21b398755973?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/84392f77-24fe-46a7-a1d8-21b398755973?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4607405-b945-49b6-ac1f-2a4feacc225b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11815", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:33 GMT", - "x-ms-correlation-request-id" : "6320340a-aab8-402c-9123-38fd13dec91c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14919,Microsoft.Compute/GetOperation30Min;29919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172433Z:6320340a-aab8-402c-9123-38fd13dec91c", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "5cbdb389-41ed-4403-9d26-7e15244c602f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:23.2605473+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"84392f77-24fe-46a7-a1d8-21b398755973\"\r\n}", - "x-ms-client-request-id" : "e4607405-b945-49b6-ac1f-2a4feacc225b", - "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/84392f77-24fe-46a7-a1d8-21b398755973?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4fc3c7d1-40d8-4195-91f3-e864ff1567a1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11870", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:09 GMT", - "x-ms-correlation-request-id" : "728039a6-2bf6-409c-8498-e53916e3720b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14885,Microsoft.Compute/GetOperation30Min;29885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172510Z:728039a6-2bf6-409c-8498-e53916e3720b", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "1043359f-6d15-4396-83e0-d382535f49a1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:23.2605473+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:57.683772+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"84392f77-24fe-46a7-a1d8-21b398755973\"\r\n}", - "x-ms-client-request-id" : "4fc3c7d1-40d8-4195-91f3-e864ff1567a1", - "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/84392f77-24fe-46a7-a1d8-21b398755973?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e077e49-7a00-4ed8-a11b-b5e85c8cdfec" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11811", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:10 GMT", - "x-ms-correlation-request-id" : "fe41f3f4-b024-4dba-a5f9-40aedeb7acc0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14884,Microsoft.Compute/GetOperation30Min;29884", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172510Z:fe41f3f4-b024-4dba-a5f9-40aedeb7acc0", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "26e5408a-559f-45f0-8f1b-b3abe9fe1626", - "x-ms-client-request-id" : "1e077e49-7a00-4ed8-a11b-b5e85c8cdfec" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4a3aca3-1d4c-4fe1-90db-de5d9256757c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:10 GMT", - "x-ms-correlation-request-id" : "aed1e28f-74ae-440a-b242-665fb1209303", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39946", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172510Z:aed1e28f-74ae-440a-b242-665fb1209303", - "Expires" : "-1", - "Content-Length" : "1378", - "x-ms-request-id" : "bada893b-d856-4ed8-bbe7-f74867ce837b", - "Body" : "{\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:29.7206995+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e2d23812-6096-42bf-823c-658c986fba74\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "e4a3aca3-1d4c-4fe1-90db-de5d9256757c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0660ae15-35ca-4162-91cd-c00cfa2b41a8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:10 GMT", - "x-ms-correlation-request-id" : "b243311a-5b79-4d5b-a230-10b5f34ffcba", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172510Z:b243311a-5b79-4d5b-a230-10b5f34ffcba", - "Expires" : "-1", - "Content-Length" : "983", - "x-ms-request-id" : "096e6aa5-f54d-4ac2-9bea-86c5d683620a", - "Body" : "{\r\n \"name\": \"dsk-59976c79\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.8924728+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"8b849b4d-f032-4158-871e-b4800d008ab7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "0660ae15-35ca-4162-91cd-c00cfa2b41a8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "647b3fd9-cb9f-4287-9297-fcaef2113cd1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11801", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:10 GMT", - "x-ms-correlation-request-id" : "7943a5b2-ed19-42e8-85b7-5353c260ab66", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:7943a5b2-ed19-42e8-85b7-5353c260ab66", - "Expires" : "-1", - "Content-Length" : "1059", - "x-ms-request-id" : "a8bca3ce-48c6-4f9b-9c59-dcfca12d1697", - "Body" : "{\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:29.7050743+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"b00c9059-84ee-44ab-ad44-3eb686a1004b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "647b3fd9-cb9f-4287-9297-fcaef2113cd1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25b179a3-33cc-446d-8087-178230512451", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11868", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:11 GMT", - "x-ms-correlation-request-id" : "65af8b1d-caff-48ba-9bab-da1ccbbc0cac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39943", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:65af8b1d-caff-48ba-9bab-da1ccbbc0cac", - "Expires" : "-1", - "Content-Length" : "981", - "x-ms-request-id" : "878cdb32-4bf2-43b2-b637-f920b7fd87b9", - "Body" : "{\r\n \"name\": \"dsk-676329d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:15.9862264+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 53687091200,\r\n \"uniqueId\": \"fefb60c8-7759-4866-bc3d-2384823486e5\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "25b179a3-33cc-446d-8087-178230512451", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "67360aeb-324c-4e4e-b677-18d29763b904", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11912", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:11 GMT", - "x-ms-correlation-request-id" : "e307d96f-4239-48dd-af59-c68b0bfd0669", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172511Z:e307d96f-4239-48dd-af59-c68b0bfd0669", - "Expires" : "-1", - "Content-Length" : "1059", - "x-ms-request-id" : "f32d9bfe-f86e-4d90-b664-ae66b605ac95", - "Body" : "{\r\n \"name\": \"vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:23:18.0647481+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"90933206-87e2-48e8-90e6-ed137ab3bbd1\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "67360aeb-324c-4e4e-b677-18d29763b904", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e7be169-bafd-4cf2-9219-56340003cff4", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:12 GMT", - "x-ms-correlation-request-id" : "e932f166-27a6-43ca-bfba-5384bf583b41", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172513Z:e932f166-27a6-43ca-bfba-5384bf583b41", - "Expires" : "-1", - "Content-Length" : "944", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a02e5bc1-cfd1-46ef-98a8-e0a0e60f321f?api-version=2021-11-01", - "x-ms-request-id" : "a02e5bc1-cfd1-46ef-98a8-e0a0e60f321f", - "Body" : "{\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "3e7be169-bafd-4cf2-9219-56340003cff4", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a02e5bc1-cfd1-46ef-98a8-e0a0e60f321f?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a02e5bc1-cfd1-46ef-98a8-e0a0e60f321f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "067b9884-73f9-4113-bb91-3f5b03c9b235" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:14 GMT", - "x-ms-correlation-request-id" : "912a34a5-1aae-412c-9b2a-b6f406a4d67a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399977", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172515Z:912a34a5-1aae-412c-9b2a-b6f406a4d67a", - "Expires" : "-1", - "Content-Length" : "1603", - "x-ms-request-id" : "f23b3024-111f-4970-bd15-a08822d293f9", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:12.9249311+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:13.0968503+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:29.7206995+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"e2d23812-6096-42bf-823c-658c986fba74\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"a02e5bc1-cfd1-46ef-98a8-e0a0e60f321f\"\r\n}", - "x-ms-client-request-id" : "067b9884-73f9-4113-bb91-3f5b03c9b235", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5e911af-29cb-4887-861d-276d7f81d3c3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11830", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:15 GMT", - "x-ms-correlation-request-id" : "205988d5-584d-4eb1-b5a1-9d4edbee08bd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172515Z:205988d5-584d-4eb1-b5a1-9d4edbee08bd", - "Expires" : "-1", - "Content-Length" : "1378", - "x-ms-request-id" : "e8015a84-49c5-42e7-961a-aec97f33f67a", - "Body" : "{\r\n \"name\": \"vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_OsDisk_1_e2d23812609642bf823c658c986fba74\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.202101190\"\r\n }\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:29.7206995+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"e2d23812-6096-42bf-823c-658c986fba74\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "d5e911af-29cb-4887-861d-276d7f81d3c3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1523778c-8e5f-4847-a93e-3699c2ee5ff6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:16 GMT", - "x-ms-correlation-request-id" : "f931a39f-a591-431b-bff6-11e6af8e5b12", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172517Z:f931a39f-a591-431b-bff6-11e6af8e5b12", - "Expires" : "-1", - "Content-Length" : "589", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bc197057-686a-4e99-98e2-be402095666e?api-version=2021-11-01", - "x-ms-request-id" : "bc197057-686a-4e99-98e2-be402095666e", - "Body" : "{\r\n \"name\": \"dsk-59976c79\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "1523778c-8e5f-4847-a93e-3699c2ee5ff6", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bc197057-686a-4e99-98e2-be402095666e?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bc197057-686a-4e99-98e2-be402095666e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "927ec8ce-1b89-4bc1-a3c6-113b96493088" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:18 GMT", - "x-ms-correlation-request-id" : "d1570c23-a4db-4582-a920-9ebdf1876610", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:d1570c23-a4db-4582-a920-9ebdf1876610", - "Expires" : "-1", - "Content-Length" : "1208", - "x-ms-request-id" : "880b5540-d235-42ed-9769-0f302c541369", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:16.9250028+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:17.0812241+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-59976c79\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.8924728+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"8b849b4d-f032-4158-871e-b4800d008ab7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"bc197057-686a-4e99-98e2-be402095666e\"\r\n}", - "x-ms-client-request-id" : "927ec8ce-1b89-4bc1-a3c6-113b96493088", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c1f1def-8610-45a9-8840-fc029bc8fe5d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11787", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:18 GMT", - "x-ms-correlation-request-id" : "778eb03c-5ab0-4638-ac61-381ea28d7730", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4963,Microsoft.Compute/LowCostGet30Min;39932", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172519Z:778eb03c-5ab0-4638-ac61-381ea28d7730", - "Expires" : "-1", - "Content-Length" : "983", - "x-ms-request-id" : "36f2cdfb-e719-4c42-bda4-13d73b6ae5f5", - "Body" : "{\r\n \"name\": \"dsk-59976c79\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-59976c79\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:16.8924728+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"8b849b4d-f032-4158-871e-b4800d008ab7\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "9c1f1def-8610-45a9-8840-fc029bc8fe5d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6022930d-a8b2-4fd4-9a81-bba389dcf210", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:19 GMT", - "x-ms-correlation-request-id" : "8a50890e-3a7e-4d9d-a34c-4bb91293f7c7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172520Z:8a50890e-3a7e-4d9d-a34c-4bb91293f7c7", - "Expires" : "-1", - "Content-Length" : "627", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50dc7eae-e72e-46da-afd2-eaea6c317375?api-version=2021-11-01", - "x-ms-request-id" : "50dc7eae-e72e-46da-afd2-eaea6c317375", - "Body" : "{\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "6022930d-a8b2-4fd4-9a81-bba389dcf210", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50dc7eae-e72e-46da-afd2-eaea6c317375?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50dc7eae-e72e-46da-afd2-eaea6c317375?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd566241-f91e-4670-87a1-a7c258f7c023" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:21 GMT", - "x-ms-correlation-request-id" : "72ca32b5-1c27-4c8c-bfbc-5103a8c9af3a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172522Z:72ca32b5-1c27-4c8c-bfbc-5103a8c9af3a", - "Expires" : "-1", - "Content-Length" : "1284", - "x-ms-request-id" : "ef9817c6-40ab-46f2-bf82-610bfd0654c0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:20.0344028+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:20.2062395+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:29.7050743+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"b00c9059-84ee-44ab-ad44-3eb686a1004b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"50dc7eae-e72e-46da-afd2-eaea6c317375\"\r\n}", - "x-ms-client-request-id" : "bd566241-f91e-4670-87a1-a7c258f7c023", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "64d4fb71-dcfc-4500-a062-66dca38c1794" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11763", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:22 GMT", - "x-ms-correlation-request-id" : "4b1d0374-60bc-4089-a849-75de758a5953", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4961,Microsoft.Compute/LowCostGet30Min;39930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172522Z:4b1d0374-60bc-4089-a849-75de758a5953", - "Expires" : "-1", - "Content-Length" : "1059", - "x-ms-request-id" : "438b3e66-3ca4-4818-978e-6cfc2226d3e2", - "Body" : "{\r\n \"name\": \"vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk6_b00c905984ee44abad443eb686a1004b\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 110,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:29.7050743+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 118111600640,\r\n \"uniqueId\": \"b00c9059-84ee-44ab-ad44-3eb686a1004b\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "64d4fb71-dcfc-4500-a062-66dca38c1794", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f85541da-28ae-444d-bab1-4e84ca9b35ef", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:22 GMT", - "x-ms-correlation-request-id" : "1ebba11f-3d80-44c4-b8d6-af92464790af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172523Z:1ebba11f-3d80-44c4-b8d6-af92464790af", - "Expires" : "-1", - "Content-Length" : "588", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bfff2e7-3625-4b40-9133-c3f42abc1d88?api-version=2021-11-01", - "x-ms-request-id" : "1bfff2e7-3625-4b40-9133-c3f42abc1d88", - "Body" : "{\r\n \"name\": \"dsk-676329d7\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "f85541da-28ae-444d-bab1-4e84ca9b35ef", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bfff2e7-3625-4b40-9133-c3f42abc1d88?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bfff2e7-3625-4b40-9133-c3f42abc1d88?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc66e162-2647-4bd7-9187-e84687857eec" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11860", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:25 GMT", - "x-ms-correlation-request-id" : "cfc61bed-53c3-431d-9c37-131bdec597c7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172525Z:cfc61bed-53c3-431d-9c37-131bdec597c7", - "Expires" : "-1", - "Content-Length" : "1206", - "x-ms-request-id" : "030abe43-9478-41ca-b251-87e07d05f597", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:23.1437726+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:23.3000127+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"dsk-676329d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:15.9862264+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"fefb60c8-7759-4866-bc3d-2384823486e5\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"1bfff2e7-3625-4b40-9133-c3f42abc1d88\"\r\n}", - "x-ms-client-request-id" : "bc66e162-2647-4bd7-9187-e84687857eec", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1362d5cc-04db-4eb5-a249-86e98df701f0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:25 GMT", - "x-ms-correlation-request-id" : "404cc860-6856-4f95-8ad9-c916e8d275e7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4957,Microsoft.Compute/LowCostGet30Min;39926", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172525Z:404cc860-6856-4f95-8ad9-c916e8d275e7", - "Expires" : "-1", - "Content-Length" : "981", - "x-ms-request-id" : "d8efce53-1098-4b3d-aa21-646d91bb0cb3", - "Body" : "{\r\n \"name\": \"dsk-676329d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/dsk-676329d7\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 60,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:22:15.9862264+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 64424509440,\r\n \"uniqueId\": \"fefb60c8-7759-4866-bc3d-2384823486e5\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "1362d5cc-04db-4eb5-a249-86e98df701f0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "00880af2-fd5b-49e7-832d-1bf1c1722d7e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:27 GMT", - "x-ms-correlation-request-id" : "f79f0882-6280-449d-a05f-23ed03b3fca2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172527Z:f79f0882-6280-449d-a05f-23ed03b3fca2", - "Expires" : "-1", - "Content-Length" : "627", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b9d1c110-6c6e-498d-8461-70a42314a4bf?api-version=2021-11-01", - "x-ms-request-id" : "b9d1c110-6c6e-498d-8461-70a42314a4bf", - "Body" : "{\r\n \"name\": \"vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "00880af2-fd5b-49e7-832d-1bf1c1722d7e", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b9d1c110-6c6e-498d-8461-70a42314a4bf?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b9d1c110-6c6e-498d-8461-70a42314a4bf?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f3de892-a3c7-4a2c-aa40-ec3a67ca23bf" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:30 GMT", - "x-ms-correlation-request-id" : "e119ad93-cd83-4bb7-a711-fda4ef3954b2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399963", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172530Z:e119ad93-cd83-4bb7-a711-fda4ef3954b2", - "Expires" : "-1", - "Content-Length" : "1284", - "x-ms-request-id" : "0c0b450d-44fe-4dcc-93a1-b0c64efe4861", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:27.6594191+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:27.8156843+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:23:18.0647481+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 225485783040,\r\n \"uniqueId\": \"90933206-87e2-48e8-90e6-ed137ab3bbd1\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"b9d1c110-6c6e-498d-8461-70a42314a4bf\"\r\n}", - "x-ms-client-request-id" : "7f3de892-a3c7-4a2c-aa40-ec3a67ca23bf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb4417af-f192-41c2-8494-fd4f4f275a4f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "42128af7-4c72-4222-9761-fb0d8e6cebdc_132528232982895561", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:29 GMT", - "x-ms-correlation-request-id" : "0863726e-d1fe-4cf6-89de-88f52f0e10c1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;4959,Microsoft.Compute/LowCostGet30Min;39919", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172530Z:0863726e-d1fe-4cf6-89de-88f52f0e10c1", - "Expires" : "-1", - "Content-Length" : "1059", - "x-ms-request-id" : "b5209d44-fa24-449b-88c6-71fe05981ee5", - "Body" : "{\r\n \"name\": \"vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/disks/vm1033399bd_disk7_9093320687e248e890e6ed137ab3bbd1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 210,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:23:18.0647481+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\",\r\n \"diskSizeBytes\": 225485783040,\r\n \"uniqueId\": \"90933206-87e2-48e8-90e6-ed137ab3bbd1\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "eb4417af-f192-41c2-8494-fd4f4f275a4f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv35769b1/providers/Microsoft.Compute/virtualMachines/vm1033399bd/start?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d114f279-b51d-4d73-a3ec-57ff4e5c3e23", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:30 GMT", - "x-ms-correlation-request-id" : "d779faf7-a6d5-40bb-bddd-85a1b45dc9d6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;232,Microsoft.Compute/UpdateVM30Min;1192", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172530Z:d779faf7-a6d5-40bb-bddd-85a1b45dc9d6", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/bb45693e-4da6-4695-bae4-aeaa221fbe8d?api-version=2021-11-01", - "x-ms-request-id" : "bb45693e-4da6-4695-bae4-aeaa221fbe8d", - "x-ms-client-request-id" : "d114f279-b51d-4d73-a3ec-57ff4e5c3e23", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/bb45693e-4da6-4695-bae4-aeaa221fbe8d?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/bb45693e-4da6-4695-bae4-aeaa221fbe8d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4c9f591-60c1-4172-86d8-6817d8fd339b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11784", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:40 GMT", - "x-ms-correlation-request-id" : "5b1e7cfc-ad01-4ff1-b3bd-e9c8466bef69", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14878,Microsoft.Compute/GetOperation30Min;29860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172541Z:5b1e7cfc-ad01-4ff1-b3bd-e9c8466bef69", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "c355ed72-af0e-4f83-bd32-e2998d4120fa", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:30.7165427+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb45693e-4da6-4695-bae4-aeaa221fbe8d\"\r\n}", - "x-ms-client-request-id" : "b4c9f591-60c1-4172-86d8-6817d8fd339b", - "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/bb45693e-4da6-4695-bae4-aeaa221fbe8d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "916198b0-7cc8-452d-b8fe-b22954bba9de" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11791", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:49 GMT", - "x-ms-correlation-request-id" : "8372f671-a264-496a-97c9-7ee8647b763a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14872,Microsoft.Compute/GetOperation30Min;29854", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172550Z:8372f671-a264-496a-97c9-7ee8647b763a", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "9c115730-5255-4c41-be70-bc821a6a1f17", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:30.7165427+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:41.7795292+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bb45693e-4da6-4695-bae4-aeaa221fbe8d\"\r\n}", - "x-ms-client-request-id" : "916198b0-7cc8-452d-b8fe-b22954bba9de", - "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/bb45693e-4da6-4695-bae4-aeaa221fbe8d?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e76bd2a5-965a-4a36-9e80-94259666309a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11803", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:50 GMT", - "x-ms-correlation-request-id" : "af226d22-1949-4a48-85cb-6ee5073341a9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14870,Microsoft.Compute/GetOperation30Min;29852", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172550Z:af226d22-1949-4a48-85cb-6ee5073341a9", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "c7f2480c-46f1-4960-8a6a-3193caa1ad3b", - "x-ms-client-request-id" : "e76bd2a5-965a-4a36-9e80-94259666309a" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv35769b1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed916cdc-a442-489f-b1b7-1087e20a698f", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:53 GMT", - "x-ms-correlation-request-id" : "348bb62f-9baf-42df-be73-1a84993ffdfe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172554Z:348bb62f-9baf-42df-be73-1a84993ffdfe", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "348bb62f-9baf-42df-be73-1a84993ffdfe", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzNTc2OUIxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "vm1033399bd", "rgcomv35769b1", "pip46176c72", "dsk-7185803d", "dsk-59976c79", "dsk-676329d7", "nic8267921221d", "vnet4874733ad9", "pip66248a2c" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithUnmanagedDisks.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithUnmanagedDisks.json deleted file mode 100644 index ff7d7849c48b..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachineWithUnmanagedDisks.json +++ /dev/null @@ -1,1656 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv7218997?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "577c00a2-d42d-4d35-9327-b57382d009c2", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:07 GMT", - "x-ms-correlation-request-id" : "62a9b57e-97f8-443b-919d-6882743894c4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:62a9b57e-97f8-443b-919d-6882743894c4", - "Expires" : "-1", - "Content-Length" : "223", - "x-ms-request-id" : "62a9b57e-97f8-443b-919d-6882743894c4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997\",\"name\":\"rgcomv7218997\",\"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/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg095257c6e7c3f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c233636-f83c-4faa-a67e-d00be46846e0", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1193", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:10 GMT", - "x-ms-correlation-request-id" : "eb18bdd4-bf55-4eff-81f5-6f4e8768b238", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172211Z:eb18bdd4-bf55-4eff-81f5-6f4e8768b238", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "41e0b5b2-041e-4e40-9e2c-998268c1a1af", - "Body" : "", - "x-ms-client-request-id" : "5c233636-f83c-4faa-a67e-d00be46846e0", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/41e0b5b2-041e-4e40-9e2c-998268c1a1af?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9a3f922-255e-4535-8004-784c1008b1d1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:11 GMT", - "x-ms-correlation-request-id" : "411a455d-14cd-4763-9ef8-593a30c6a8dd", - "x-ms-arm-service-request-id" : "c1f88f87-2482-40f8-bb8d-4f0338bb5f98", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172212Z:411a455d-14cd-4763-9ef8-593a30c6a8dd", - "Expires" : "-1", - "Content-Length" : "1340", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2dae7f84-697d-4c37-b625-097e999c6eab?api-version=2023-02-01", - "x-ms-request-id" : "2dae7f84-697d-4c37-b625-097e999c6eab", - "Body" : "{\r\n \"name\": \"vnet03207edc8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e\",\r\n \"etag\": \"W/\\\"55d7710d-6faa-4e35-b896-700f5371826d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8799a446-a6cd-462d-a8a4-8c10231e03dc\",\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/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"55d7710d-6faa-4e35-b896-700f5371826d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "c9a3f922-255e-4535-8004-784c1008b1d1", - "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/2dae7f84-697d-4c37-b625-097e999c6eab?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "19d25b0d-031f-404f-bd8b-c398f502446c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "fbda28f6-2ae0-4e39-ba9f-c5b2f65bc0b7", - "x-ms-arm-service-request-id" : "bea310bb-c1c0-4cd9-8fb5-4c33f7215a1b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:fbda28f6-2ae0-4e39-ba9f-c5b2f65bc0b7", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "fc0def9d-707b-427c-8474-9569ea162d4c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "19d25b0d-031f-404f-bd8b-c398f502446c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5af4d708-bc16-4074-b2c2-8d31fab8b32c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "c207b26c-0d32-4c4b-b3c0-3bc61fbb968b", - "x-ms-arm-service-request-id" : "c2a5263a-ece3-424b-a2c8-d184bc222ef5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"0d2a1556-2038-4b71-91b3-a7748707575a\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:c207b26c-0d32-4c4b-b3c0-3bc61fbb968b", - "Expires" : "-1", - "Content-Length" : "1342", - "x-ms-request-id" : "bf09c5f9-c866-41b0-baad-9a2f8b40464d", - "Body" : "{\r\n \"name\": \"vnet03207edc8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e\",\r\n \"etag\": \"W/\\\"0d2a1556-2038-4b71-91b3-a7748707575a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8799a446-a6cd-462d-a8a4-8c10231e03dc\",\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/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0d2a1556-2038-4b71-91b3-a7748707575a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "5af4d708-bc16-4074-b2c2-8d31fab8b32c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "07d0ed20-102c-49e1-8638-e00eda28e646", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:18 GMT", - "x-ms-correlation-request-id" : "f356a7b6-1b38-48f4-9bae-ed3972cf440e", - "x-ms-arm-service-request-id" : "99b1180e-e7fc-4438-8dd1-b9eaa13d254e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:f356a7b6-1b38-48f4-9bae-ed3972cf440e", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/98d7f3e6-ffe2-4e9e-b164-50a71126f61c?api-version=2023-02-01", - "x-ms-request-id" : "98d7f3e6-ffe2-4e9e-b164-50a71126f61c", - "Body" : "{\r\n \"name\": \"nic20943039d3f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\r\n \"etag\": \"W/\\\"ca20c237-3d00-497a-9273-f6c4855c8605\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8af587a-25fe-4d69-8c47-2d90e0567cc1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca20c237-3d00-497a-9273-f6c4855c8605\\\"\",\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/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e/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\": \"i0sjtb4nuywunkferqicghqd1e.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "07d0ed20-102c-49e1-8638-e00eda28e646", - "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/westus/asyncoperations/41e0b5b2-041e-4e40-9e2c-998268c1a1af?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d77ad85f-e321-4841-9b49-dfddefe013d7" - }, - "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" : "11973", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:28 GMT", - "x-ms-correlation-request-id" : "74ebc011-aab6-42bc-a896-adc26c4befda", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172228Z:74ebc011-aab6-42bc-a896-adc26c4befda", - "Expires" : "-1", - "Content-Length" : "1191", - "x-ms-request-id" : "c8a7748a-e70f-4044-a4d3-c17863e13f68", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg095257c6e7c3f\",\"name\":\"stg095257c6e7c3f\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:10.5228158Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:10.5228158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:10.4290678Z\",\"primaryEndpoints\":{\"blob\":\"https://stg095257c6e7c3f.blob.core.windows.net/\",\"queue\":\"https://stg095257c6e7c3f.queue.core.windows.net/\",\"table\":\"https://stg095257c6e7c3f.table.core.windows.net/\",\"file\":\"https://stg095257c6e7c3f.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "d77ad85f-e321-4841-9b49-dfddefe013d7", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg095257c6e7c3f?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e210fa5-59b7-4c96-bc9d-29039d0aa45e", - "Content-Type" : "application/json" - }, - "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" : "11988", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:28 GMT", - "x-ms-correlation-request-id" : "caa59b49-8a37-4980-a13c-86629b266d4e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172229Z:caa59b49-8a37-4980-a13c-86629b266d4e", - "Expires" : "-1", - "Content-Length" : "1191", - "x-ms-request-id" : "eaa73d69-995f-42ab-8515-c5a9b71256d8", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg095257c6e7c3f\",\"name\":\"stg095257c6e7c3f\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:10.5228158Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:10.5228158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:10.4290678Z\",\"primaryEndpoints\":{\"blob\":\"https://stg095257c6e7c3f.blob.core.windows.net/\",\"queue\":\"https://stg095257c6e7c3f.queue.core.windows.net/\",\"table\":\"https://stg095257c6e7c3f.table.core.windows.net/\",\"file\":\"https://stg095257c6e7c3f.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "4e210fa5-59b7-4c96-bc9d-29039d0aa45e", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba58548b-8b6c-42da-889d-8071c1a109e9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:31 GMT", - "x-ms-correlation-request-id" : "d1bcfd8c-c457-4d76-ae7d-0934efcf86d0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1191", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172232Z:d1bcfd8c-c457-4d76-ae7d-0934efcf86d0", - "Expires" : "-1", - "Content-Length" : "1712", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/42d9e28b-06f6-4df9-88d3-2e376bd77681?api-version=2021-11-01", - "x-ms-request-id" : "42d9e28b-06f6-4df9-88d3-2e376bd77681", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "ba58548b-8b6c-42da-889d-8071c1a109e9", - "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/42d9e28b-06f6-4df9-88d3-2e376bd77681?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "79ec7dd2-a432-4c83-aacc-ccd43d084735" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:42 GMT", - "x-ms-correlation-request-id" : "d2a6ef06-8f81-4689-a9ad-916de5b12892", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172242Z:d2a6ef06-8f81-4689-a9ad-916de5b12892", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "9b07c4e1-d5ad-4ea4-920b-0b5a51256a3e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:31.3655095+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"42d9e28b-06f6-4df9-88d3-2e376bd77681\"\r\n}", - "x-ms-client-request-id" : "79ec7dd2-a432-4c83-aacc-ccd43d084735", - "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/42d9e28b-06f6-4df9-88d3-2e376bd77681?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bf0efea-2b70-4ad6-ac03-d72314e299d0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:32 GMT", - "x-ms-correlation-request-id" : "469fde9e-5585-4395-a2b9-ca56d31d239c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29958", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172333Z:469fde9e-5585-4395-a2b9-ca56d31d239c", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "c1a42e7c-f485-41cd-99b7-10593152abc5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:31.3655095+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"42d9e28b-06f6-4df9-88d3-2e376bd77681\"\r\n}", - "x-ms-client-request-id" : "3bf0efea-2b70-4ad6-ac03-d72314e299d0", - "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/42d9e28b-06f6-4df9-88d3-2e376bd77681?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "898d821c-634d-4446-a605-62ab26dfb898" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11843", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:02 GMT", - "x-ms-correlation-request-id" : "77b08123-f2c1-4b52-b8ba-51343f3efdd3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29939", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172403Z:77b08123-f2c1-4b52-b8ba-51343f3efdd3", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "95fa7f2b-dcbb-48db-9075-1d0beb8909e1", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:31.3655095+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:42.9776207+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"42d9e28b-06f6-4df9-88d3-2e376bd77681\"\r\n}", - "x-ms-client-request-id" : "898d821c-634d-4446-a605-62ab26dfb898", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4f7c039-a80b-47b4-984e-f52378ae6d5f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11842", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:02 GMT", - "x-ms-correlation-request-id" : "cec9f6c8-fec0-4a0a-a1d5-03b5a031d1c2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31966", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172403Z:cec9f6c8-fec0-4a0a-a1d5-03b5a031d1c2", - "Expires" : "-1", - "Content-Length" : "1741", - "x-ms-request-id" : "87807b0c-0c6c-48bd-b77c-a9736856377b", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "a4f7c039-a80b-47b4-984e-f52378ae6d5f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bf20463-cc4b-4e32-ac17-be1eac28c306", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:07 GMT", - "x-ms-correlation-request-id" : "857e655c-0ee9-4638-9930-d7a6e1c6f2eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;217,Microsoft.Compute/PutVM30Min;1177", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172408Z:857e655c-0ee9-4638-9930-d7a6e1c6f2eb", - "Expires" : "-1", - "Content-Length" : "1795", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/69d3d4c2-d581-466f-8975-473969c5dea6?api-version=2021-11-01", - "x-ms-request-id" : "69d3d4c2-d581-466f-8975-473969c5dea6", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "1bf20463-cc4b-4e32-ac17-be1eac28c306", - "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/69d3d4c2-d581-466f-8975-473969c5dea6?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6b2c9f2-6960-4369-b5ea-601d99658efc" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11898", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:37 GMT", - "x-ms-correlation-request-id" : "87abbd19-5700-467c-8dbf-662e0447f55d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14912,Microsoft.Compute/GetOperation30Min;29912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172438Z:87abbd19-5700-467c-8dbf-662e0447f55d", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "bd6e0e01-f495-4b8f-ab8d-a83d9acc4117", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:05.4473096+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:05.5879187+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"69d3d4c2-d581-466f-8975-473969c5dea6\"\r\n}", - "x-ms-client-request-id" : "b6b2c9f2-6960-4369-b5ea-601d99658efc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "197383a4-89f6-4f18-964f-96d6a01c6742" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11854", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:38 GMT", - "x-ms-correlation-request-id" : "ba3c1130-95fc-4911-aa9f-ddde6570648d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3948,Microsoft.Compute/LowCostGet30Min;31948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172438Z:ba3c1130-95fc-4911-aa9f-ddde6570648d", - "Expires" : "-1", - "Content-Length" : "1796", - "x-ms-request-id" : "c60c6c62-bd37-4d34-9284-6b1945b3dcc9", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "197383a4-89f6-4f18-964f-96d6a01c6742", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ad943d0-4c05-4a94-9677-af496c0de666", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:42 GMT", - "x-ms-correlation-request-id" : "bcc1ec52-d466-4fd5-b434-a550a99e45c7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;215,Microsoft.Compute/PutVM30Min;1175", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172442Z:bcc1ec52-d466-4fd5-b434-a550a99e45c7", - "Expires" : "-1", - "Content-Length" : "2576", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/db8d2689-0dab-45f1-b9d8-12a5ecd3a5ef?api-version=2021-11-01", - "x-ms-request-id" : "db8d2689-0dab-45f1-b9d8-12a5ecd3a5ef", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-1-a54345b1-ff42-4b1c-8e27-8450050bd5ea.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "9ad943d0-4c05-4a94-9677-af496c0de666", - "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/db8d2689-0dab-45f1-b9d8-12a5ecd3a5ef?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ef4d631-4182-4c8c-8467-1abf2dcba1c7" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:12 GMT", - "x-ms-correlation-request-id" : "e4a9b1d4-55a6-468f-99ed-1f03a29e81d9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14878,Microsoft.Compute/GetOperation30Min;29878", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172513Z:e4a9b1d4-55a6-468f-99ed-1f03a29e81d9", - "Expires" : "-1", - "Content-Length" : "182", - "x-ms-request-id" : "c233d3c9-596d-453c-b4d8-f69eb1563763", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:40.1049469+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:58.13691+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"db8d2689-0dab-45f1-b9d8-12a5ecd3a5ef\"\r\n}", - "x-ms-client-request-id" : "7ef4d631-4182-4c8c-8467-1abf2dcba1c7", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f4860f6-d16e-459e-b365-b488fe1dcd32" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11866", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:13 GMT", - "x-ms-correlation-request-id" : "1621c4df-7658-46b6-829f-8758f48646ca", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3931,Microsoft.Compute/LowCostGet30Min;31931", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172514Z:1621c4df-7658-46b6-829f-8758f48646ca", - "Expires" : "-1", - "Content-Length" : "2577", - "x-ms-request-id" : "1474f8d0-4af5-4684-a5f6-03d35e143df0", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-1-a54345b1-ff42-4b1c-8e27-8450050bd5ea.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "8f4860f6-d16e-459e-b365-b488fe1dcd32", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8c2ae2e-f7a9-4093-a373-f7f380363b55", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:17 GMT", - "x-ms-correlation-request-id" : "0fd1135b-7e66-4ecc-934b-209e9f759c14", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1170", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172517Z:0fd1135b-7e66-4ecc-934b-209e9f759c14", - "Expires" : "-1", - "Content-Length" : "2575", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe5ea3bd-8f57-440a-aa0f-e6fcb02ab682?api-version=2021-11-01", - "x-ms-request-id" : "fe5ea3bd-8f57-440a-aa0f-e6fcb02ab682", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-1-a54345b1-ff42-4b1c-8e27-8450050bd5ea.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": true\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "f8c2ae2e-f7a9-4093-a373-f7f380363b55", - "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/fe5ea3bd-8f57-440a-aa0f-e6fcb02ab682?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "471e3891-f37e-4ba2-80c9-224b78a176d5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11887", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:47 GMT", - "x-ms-correlation-request-id" : "6387c963-d012-475f-84a9-9eabe32a7792", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14873,Microsoft.Compute/GetOperation30Min;29855", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172547Z:6387c963-d012-475f-84a9-9eabe32a7792", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ab286254-fb05-4aae-af6d-2ee2696c1add", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:15.2469752+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:26.6069081+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fe5ea3bd-8f57-440a-aa0f-e6fcb02ab682\"\r\n}", - "x-ms-client-request-id" : "471e3891-f37e-4ba2-80c9-224b78a176d5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "19aaf704-ea96-4a84-8c2a-05293313cc1d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11792", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:47 GMT", - "x-ms-correlation-request-id" : "a87b2547-f439-401e-881c-66a4313da0d9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3925,Microsoft.Compute/LowCostGet30Min;31922", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172548Z:a87b2547-f439-401e-881c-66a4313da0d9", - "Expires" : "-1", - "Content-Length" : "2199", - "x-ms-request-id" : "03796e1b-dc36-4d3d-b9da-cda07dac7b4e", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "19aaf704-ea96-4a84-8c2a-05293313cc1d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "889d9a65-906d-4a27-b4f2-93a1cd618cdb", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:47 GMT", - "x-ms-correlation-request-id" : "0b148b85-e077-4e25-a9f3-4b8c89c4b831", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;224,Microsoft.Compute/DeleteVM30Min;1184", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172548Z:0b148b85-e077-4e25-a9f3-4b8c89c4b831", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2b488ce4-f97f-4ecf-a934-053be71efa3c?api-version=2021-11-01", - "x-ms-request-id" : "2b488ce4-f97f-4ecf-a934-053be71efa3c", - "x-ms-client-request-id" : "889d9a65-906d-4a27-b4f2-93a1cd618cdb", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2b488ce4-f97f-4ecf-a934-053be71efa3c?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2b488ce4-f97f-4ecf-a934-053be71efa3c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e529b553-5dcb-45a9-80b5-db0c5feaf1a6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:57 GMT", - "x-ms-correlation-request-id" : "13db40b9-43f8-41ff-898c-25a7b8f6df7d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14859,Microsoft.Compute/GetOperation30Min;29841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172558Z:13db40b9-43f8-41ff-898c-25a7b8f6df7d", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "ed6c4569-e8ed-41de-ab96-73ed8a7d1171", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:48.2485662+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2b488ce4-f97f-4ecf-a934-053be71efa3c\"\r\n}", - "x-ms-client-request-id" : "e529b553-5dcb-45a9-80b5-db0c5feaf1a6", - "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/2b488ce4-f97f-4ecf-a934-053be71efa3c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0be5f916-cd75-4b69-8537-3c77f1103d61" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11832", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:34 GMT", - "x-ms-correlation-request-id" : "57f10b03-8ec2-401e-9226-128ad09570bf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14879,Microsoft.Compute/GetOperation30Min;29821", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172635Z:57f10b03-8ec2-401e-9226-128ad09570bf", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "78901aff-3408-4791-b209-ae97d1ec9b9a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:25:48.2485662+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:34.4694268+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2b488ce4-f97f-4ecf-a934-053be71efa3c\"\r\n}", - "x-ms-client-request-id" : "0be5f916-cd75-4b69-8537-3c77f1103d61", - "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/2b488ce4-f97f-4ecf-a934-053be71efa3c?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "365502bd-fb46-469b-b019-41ba1493cf8c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11903", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:34 GMT", - "x-ms-correlation-request-id" : "60ff402e-aa32-4901-8b69-2f2a40050a06", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14877,Microsoft.Compute/GetOperation30Min;29819", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172635Z:60ff402e-aa32-4901-8b69-2f2a40050a06", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "ab5d67e6-f99a-4fe5-aa15-4be2e19333b2", - "x-ms-client-request-id" : "365502bd-fb46-469b-b019-41ba1493cf8c" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "053df6b3-6807-4ecc-83ff-4b2fe8b04ebe", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:26:37 GMT", - "x-ms-correlation-request-id" : "bf398738-cb41-492a-9b31-b03424f428f8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1165", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172637Z:bf398738-cb41-492a-9b31-b03424f428f8", - "Expires" : "-1", - "Content-Length" : "2198", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a99bc039-d67f-4261-afd4-6e9c1e3dea65?api-version=2021-11-01", - "x-ms-request-id" : "a99bc039-d67f-4261-afd4-6e9c1e3dea65", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "053df6b3-6807-4ecc-83ff-4b2fe8b04ebe", - "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/a99bc039-d67f-4261-afd4-6e9c1e3dea65?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "98f631a7-72f3-4b3e-9fc8-63ed78f49318" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11871", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:06 GMT", - "x-ms-correlation-request-id" : "e2ea28ca-0a39-4e4b-b6fa-fada274d5c9b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14879,Microsoft.Compute/GetOperation30Min;29800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172707Z:e2ea28ca-0a39-4e4b-b6fa-fada274d5c9b", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "0448e042-7310-4fbe-b9ed-a4022fc1f301", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:26:35.7663765+00:00\",\r\n \"endTime\": \"2021-01-29T17:26:36.3914059+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a99bc039-d67f-4261-afd4-6e9c1e3dea65\"\r\n}", - "x-ms-client-request-id" : "98f631a7-72f3-4b3e-9fc8-63ed78f49318", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "87677d54-ebb5-42ee-84f8-530b256af7d5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11893", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:07 GMT", - "x-ms-correlation-request-id" : "ec778ab2-5ada-4bb7-883e-e61cc9a0d4bb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3945,Microsoft.Compute/LowCostGet30Min;31896", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172708Z:ec778ab2-5ada-4bb7-883e-e61cc9a0d4bb", - "Expires" : "-1", - "Content-Length" : "2199", - "x-ms-request-id" : "51f2a921-0679-4716-94af-e4a7df7a17ce", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "87677d54-ebb5-42ee-84f8-530b256af7d5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a0ad1e7-4aa1-4ae6-9866-d15c0004e543", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:11 GMT", - "x-ms-correlation-request-id" : "4b496b59-434c-4c37-ba66-d33119394966", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1161", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172712Z:4b496b59-434c-4c37-ba66-d33119394966", - "Expires" : "-1", - "Content-Length" : "2198", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b652c81a-9880-4b45-b8d0-b65febb8c7df?api-version=2021-11-01", - "x-ms-request-id" : "b652c81a-9880-4b45-b8d0-b65febb8c7df", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 137\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3a0ad1e7-4aa1-4ae6-9866-d15c0004e543", - "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/b652c81a-9880-4b45-b8d0-b65febb8c7df?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a74f74c6-134b-41d7-996b-2fe92cc06b94" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11769", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:42 GMT", - "x-ms-correlation-request-id" : "8510eb99-4ed8-4e7c-9b29-eed07bd50cca", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14889,Microsoft.Compute/GetOperation30Min;29787", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172742Z:8510eb99-4ed8-4e7c-9b29-eed07bd50cca", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "e70251d7-60c2-417d-9df3-47752d3ab98b", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:09.330187+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:09.9552238+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b652c81a-9880-4b45-b8d0-b65febb8c7df\"\r\n}", - "x-ms-client-request-id" : "a74f74c6-134b-41d7-996b-2fe92cc06b94", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5db475aa-6cda-4e84-923e-37449610fbfa" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11768", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:42 GMT", - "x-ms-correlation-request-id" : "2f216e98-ccaa-4d20-9c0c-87d9e093cf38", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3950,Microsoft.Compute/LowCostGet30Min;31891", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172742Z:2f216e98-ccaa-4d20-9c0c-87d9e093cf38", - "Expires" : "-1", - "Content-Length" : "2199", - "x-ms-request-id" : "0118bd17-8c3a-4eab-bfd3-024d8f87f2df", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 137\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "5db475aa-6cda-4e84-923e-37449610fbfa", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84/start?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "47431519-863b-451c-852a-dd81923dc005", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:42 GMT", - "x-ms-correlation-request-id" : "c2134a60-cc25-4842-95a9-e55159dc8778", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;230,Microsoft.Compute/UpdateVM30Min;1185", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172743Z:c2134a60-cc25-4842-95a9-e55159dc8778", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8dad8d70-b738-4d9d-adb6-8c7b9489779c?api-version=2021-11-01", - "x-ms-request-id" : "8dad8d70-b738-4d9d-adb6-8c7b9489779c", - "x-ms-client-request-id" : "47431519-863b-451c-852a-dd81923dc005", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8dad8d70-b738-4d9d-adb6-8c7b9489779c?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8dad8d70-b738-4d9d-adb6-8c7b9489779c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0706972-3a09-421f-ac7b-bf4012347d69" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11862", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:53 GMT", - "x-ms-correlation-request-id" : "cb65a94c-5833-4849-958e-cabcc4427ad6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14883,Microsoft.Compute/GetOperation30Min;29781", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172753Z:cb65a94c-5833-4849-958e-cabcc4427ad6", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "a28cd02d-3827-43e6-8b40-e27e82f37ba3", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:42.9252885+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:52.4257007+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8dad8d70-b738-4d9d-adb6-8c7b9489779c\"\r\n}", - "x-ms-client-request-id" : "f0706972-3a09-421f-ac7b-bf4012347d69", - "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/8dad8d70-b738-4d9d-adb6-8c7b9489779c?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5918e5b-4917-4fa7-91fa-d0235b292c5e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11861", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:53 GMT", - "x-ms-correlation-request-id" : "8a53fd36-aaf5-4775-a907-2858744b13bc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14882,Microsoft.Compute/GetOperation30Min;29780", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172753Z:8a53fd36-aaf5-4775-a907-2858744b13bc", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "ffae5949-4558-42f1-9ffd-8e39c92d65c4", - "x-ms-client-request-id" : "e5918e5b-4917-4fa7-91fa-d0235b292c5e" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?$expand=instanceView&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5db53a8-9e29-46f9-8e78-beb36797b487", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11827", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:27:53 GMT", - "x-ms-correlation-request-id" : "6bdfb7b3-ce10-4b49-8b61-73e579037a3c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3946,Microsoft.Compute/LowCostGet30Min;31887", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172753Z:6bdfb7b3-ce10-4b49-8b61-73e579037a3c", - "Expires" : "-1", - "Content-Length" : "3870", - "x-ms-request-id" : "72f071e6-95d7-4a58-9228-d6fa99763171", - "Body" : "{\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 137\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and processing the extensions.\",\r\n \"time\": \"2021-01-29T17:25:51+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:27:43.0346375+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-01-29T17:27:43.0346375+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\": \"2021-01-29T17:27:52.4100033+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n }\r\n}", - "x-ms-client-request-id" : "e5db53a8-9e29-46f9-8e78-beb36797b487", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84/restart?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b954d44f-369c-4e77-8bf2-5cdcfb185c57", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:27:53 GMT", - "x-ms-correlation-request-id" : "291856e9-54d7-4f57-a5c0-6a40e6819953", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;229,Microsoft.Compute/UpdateVM30Min;1184", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172754Z:291856e9-54d7-4f57-a5c0-6a40e6819953", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e1129704-e958-4b31-a981-dd002c36e07b?api-version=2021-11-01", - "x-ms-request-id" : "e1129704-e958-4b31-a981-dd002c36e07b", - "x-ms-client-request-id" : "b954d44f-369c-4e77-8bf2-5cdcfb185c57", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e1129704-e958-4b31-a981-dd002c36e07b?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e1129704-e958-4b31-a981-dd002c36e07b?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd102d7b-5633-49a7-87cd-fd866d0b6f3b" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:23 GMT", - "x-ms-correlation-request-id" : "783e17f3-dae6-4180-a0e1-2c59a01d6ad6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14894,Microsoft.Compute/GetOperation30Min;29765", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172824Z:783e17f3-dae6-4180-a0e1-2c59a01d6ad6", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "19574f4f-4249-4d26-b700-639b56c50092", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:27:54.1913664+00:00\",\r\n \"endTime\": \"2021-01-29T17:27:54.3476079+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e1129704-e958-4b31-a981-dd002c36e07b\"\r\n}", - "x-ms-client-request-id" : "dd102d7b-5633-49a7-87cd-fd866d0b6f3b", - "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/e1129704-e958-4b31-a981-dd002c36e07b?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "70a8f8b9-7916-4339-ab1c-f2131db08a3a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11712", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:24 GMT", - "x-ms-correlation-request-id" : "9ccbdae6-1e69-4b5e-add0-fbc8d07988ac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14893,Microsoft.Compute/GetOperation30Min;29764", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172824Z:9ccbdae6-1e69-4b5e-add0-fbc8d07988ac", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "a789a636-933b-41df-9551-73c03baf975d", - "x-ms-client-request-id" : "70a8f8b9-7916-4339-ab1c-f2131db08a3a" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84/powerOff?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "47a970e7-6417-4755-8682-b9651a7049dd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:28:25 GMT", - "x-ms-correlation-request-id" : "d19f803a-dbe4-4783-80f7-4d053a387057", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/UpdateVM3Min;230,Microsoft.Compute/UpdateVM30Min;1183", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172825Z:d19f803a-dbe4-4783-80f7-4d053a387057", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b9b6e44-b6e8-4c52-9c60-605d147f661d?api-version=2021-11-01", - "x-ms-request-id" : "0b9b6e44-b6e8-4c52-9c60-605d147f661d", - "x-ms-client-request-id" : "47a970e7-6417-4755-8682-b9651a7049dd", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b9b6e44-b6e8-4c52-9c60-605d147f661d?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b9b6e44-b6e8-4c52-9c60-605d147f661d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff7ac62a-3ea4-4fd8-a845-fa0ede6cb88f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11758", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:54 GMT", - "x-ms-correlation-request-id" : "f283c9a8-97be-42ce-a570-192383dea750", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14910,Microsoft.Compute/GetOperation30Min;29749", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172855Z:f283c9a8-97be-42ce-a570-192383dea750", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "47031e98-4aae-41cb-ae6a-52b9bc899230", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:28:25.1746676+00:00\",\r\n \"endTime\": \"2021-01-29T17:28:31.9708056+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0b9b6e44-b6e8-4c52-9c60-605d147f661d\"\r\n}", - "x-ms-client-request-id" : "ff7ac62a-3ea4-4fd8-a845-fa0ede6cb88f", - "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/0b9b6e44-b6e8-4c52-9c60-605d147f661d?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "12677458-1591-4409-bee5-75910143fd17" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11757", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:54 GMT", - "x-ms-correlation-request-id" : "f8b8b3d3-6b94-4418-9d92-d467fc5783ab", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14909,Microsoft.Compute/GetOperation30Min;29748", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172855Z:f8b8b3d3-6b94-4418-9d92-d467fc5783ab", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "92a61bfe-8eb8-4041-8e95-4ab3773441f0", - "x-ms-client-request-id" : "12677458-1591-4409-bee5-75910143fd17" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ba6fbe8-f50e-42d9-8677-476ea72157b9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11846", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:55 GMT", - "x-ms-correlation-request-id" : "cc95f2b0-d3ad-4af7-9e55-a91b25731bd4", - "x-ms-arm-service-request-id" : "97d1b2b8-d206-4dbf-89d2-76695feec27b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"e994df4c-b559-446e-89f2-33c93eef3730\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172856Z:cc95f2b0-d3ad-4af7-9e55-a91b25731bd4", - "Expires" : "-1", - "Content-Length" : "1907", - "x-ms-request-id" : "3da66912-db51-4f03-bcfd-f5eec4f3e7c6", - "Body" : "{\r\n \"name\": \"nic20943039d3f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\r\n \"etag\": \"W/\\\"e994df4c-b559-446e-89f2-33c93eef3730\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8af587a-25fe-4d69-8c47-2d90e0567cc1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e994df4c-b559-446e-89f2-33c93eef3730\\\"\",\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/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e/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\": \"i0sjtb4nuywunkferqicghqd1e.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-22-48-05-DA-34\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "2ba6fbe8-f50e-42d9-8677-476ea72157b9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3b21e82-c880-45ab-87da-f458cb7d2f49", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11876", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:28:56 GMT", - "x-ms-correlation-request-id" : "28664ebc-7190-472d-944e-ea0265f34650", - "x-ms-arm-service-request-id" : "236fad2d-55e9-48a6-9356-b206a98b8c24", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"2b62cbce-7f25-4b55-9eba-4cc1d9801504\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172856Z:28664ebc-7190-472d-944e-ea0265f34650", - "Expires" : "-1", - "Content-Length" : "1609", - "x-ms-request-id" : "2b914dd1-c1a4-471b-89d2-ca6ccb1b1f3e", - "Body" : "{\r\n \"name\": \"vnet03207edc8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e\",\r\n \"etag\": \"W/\\\"2b62cbce-7f25-4b55-9eba-4cc1d9801504\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8799a446-a6cd-462d-a8a4-8c10231e03dc\",\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/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2b62cbce-7f25-4b55-9eba-4cc1d9801504\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "d3b21e82-c880-45ab-87da-f458cb7d2f49", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic7077193eaad?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e19e0db9-35db-4981-96ab-fa179335a412", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:29:02 GMT", - "x-ms-correlation-request-id" : "92d863b7-7836-4626-b54d-440555cc2285", - "x-ms-arm-service-request-id" : "056cc1fc-f60f-43b6-9682-b85453ebdff5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172902Z:92d863b7-7836-4626-b54d-440555cc2285", - "Expires" : "-1", - "Content-Length" : "1660", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/375e1e0a-c68c-4427-9e12-292059e01c9c?api-version=2023-02-01", - "x-ms-request-id" : "375e1e0a-c68c-4427-9e12-292059e01c9c", - "Body" : "{\r\n \"name\": \"nic7077193eaad\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic7077193eaad\",\r\n \"etag\": \"W/\\\"93478ace-454c-4dc2-9714-ea0b3b282c2f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4676486e-1c76-4899-be0a-3061c909fbee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic7077193eaad/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"93478ace-454c-4dc2-9714-ea0b3b282c2f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Network/virtualNetworks/vnet03207edc8e/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\": \"i0sjtb4nuywunkferqicghqd1e.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "e19e0db9-35db-4981-96ab-fa179335a412", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg650836fb086ab?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea3e0a0b-bfd6-4505-abd8-6c015a5db7ef", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1191", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:29:05 GMT", - "x-ms-correlation-request-id" : "3a8a599d-25b3-40bb-aefb-ce20e763727b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172906Z:3a8a599d-25b3-40bb-aefb-ce20e763727b", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "8fd97290-c683-4ad0-b5b0-4f0078031999", - "Body" : "", - "x-ms-client-request-id" : "ea3e0a0b-bfd6-4505-abd8-6c015a5db7ef", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8fd97290-c683-4ad0-b5b0-4f0078031999?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8fd97290-c683-4ad0-b5b0-4f0078031999?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa1ff454-df68-4b29-b81d-84bd0f9c6539" - }, - "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" : "11863", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:22 GMT", - "x-ms-correlation-request-id" : "2e213d4d-8089-42d1-96a6-ab41f54a7487", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172923Z:2e213d4d-8089-42d1-96a6-ab41f54a7487", - "Expires" : "-1", - "Content-Length" : "1191", - "x-ms-request-id" : "41948761-f9f8-416d-bc74-7b265c6eea0e", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg650836fb086ab\",\"name\":\"stg650836fb086ab\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:29:05.4304866Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:29:05.4304866Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:29:05.3367618Z\",\"primaryEndpoints\":{\"blob\":\"https://stg650836fb086ab.blob.core.windows.net/\",\"queue\":\"https://stg650836fb086ab.queue.core.windows.net/\",\"table\":\"https://stg650836fb086ab.table.core.windows.net/\",\"file\":\"https://stg650836fb086ab.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "fa1ff454-df68-4b29-b81d-84bd0f9c6539", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg650836fb086ab?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6acd518b-052d-4e42-be5a-c0b733a7d258", - "Content-Type" : "application/json" - }, - "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" : "11755", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:23 GMT", - "x-ms-correlation-request-id" : "b310215d-debe-47a2-8c70-d3a9a9762c33", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172923Z:b310215d-debe-47a2-8c70-d3a9a9762c33", - "Expires" : "-1", - "Content-Length" : "1191", - "x-ms-request-id" : "304232a7-c029-4994-9520-88f4d79f7def", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Storage/storageAccounts/stg650836fb086ab\",\"name\":\"stg650836fb086ab\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:29:05.4304866Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:29:05.4304866Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:29:05.3367618Z\",\"primaryEndpoints\":{\"blob\":\"https://stg650836fb086ab.blob.core.windows.net/\",\"queue\":\"https://stg650836fb086ab.queue.core.windows.net/\",\"table\":\"https://stg650836fb086ab.table.core.windows.net/\",\"file\":\"https://stg650836fb086ab.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "6acd518b-052d-4e42-be5a-c0b733a7d258", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/lvm244110de?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f19d7fd-c768-4a11-9aba-307824099936", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:29:29 GMT", - "x-ms-correlation-request-id" : "fff27f9a-ef14-47c9-beef-14eb70c827b3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1157", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172930Z:fff27f9a-ef14-47c9-beef-14eb70c827b3", - "Expires" : "-1", - "Content-Length" : "1688", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e44d4377-6bf7-46e9-abe5-bc75abbaee5c?api-version=2021-11-01", - "x-ms-request-id" : "e44d4377-6bf7-46e9-abe5-bc75abbaee5c", - "Body" : "{\r\n \"name\": \"lvm244110de\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/lvm244110de\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"356d262c-7753-4322-84e2-2784a6bc7963\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm244110de-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg650836fb086ab.blob.core.windows.net/vhds/lvm244110de-os-disk-4c81df48-8f24-4483-bf3e-7299a604f531.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm244110de\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic7077193eaad\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "3f19d7fd-c768-4a11-9aba-307824099936", - "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/e44d4377-6bf7-46e9-abe5-bc75abbaee5c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ebe8e69-6944-4f57-829e-49d7a15cd5a1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11759", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:29:40 GMT", - "x-ms-correlation-request-id" : "446dcb8f-19ce-4c42-9bdf-3394799079f4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29735", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172940Z:446dcb8f-19ce-4c42-9bdf-3394799079f4", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "e98665e0-7b47-4fd8-b188-c01e6cff38b0", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:28.9137067+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e44d4377-6bf7-46e9-abe5-bc75abbaee5c\"\r\n}", - "x-ms-client-request-id" : "1ebe8e69-6944-4f57-829e-49d7a15cd5a1", - "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/e44d4377-6bf7-46e9-abe5-bc75abbaee5c?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "10aa2f1d-175e-4964-887a-a5a68b301a64" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11820", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:15 GMT", - "x-ms-correlation-request-id" : "b625aebd-7615-4b3e-80f0-0ca6d3689101", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14934,Microsoft.Compute/GetOperation30Min;29726", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173015Z:b625aebd-7615-4b3e-80f0-0ca6d3689101", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "c4557502-63c0-4cd9-8ee9-c66b58728ffb", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:29:28.9137067+00:00\",\r\n \"endTime\": \"2021-01-29T17:29:51.3991003+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e44d4377-6bf7-46e9-abe5-bc75abbaee5c\"\r\n}", - "x-ms-client-request-id" : "10aa2f1d-175e-4964-887a-a5a68b301a64", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/lvm244110de?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c035f90a-5d06-402a-8496-19c816d7bd43" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11754", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:15 GMT", - "x-ms-correlation-request-id" : "ff3601e5-d951-4596-b69a-8eec5449d281", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31873", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173016Z:ff3601e5-d951-4596-b69a-8eec5449d281", - "Expires" : "-1", - "Content-Length" : "1716", - "x-ms-request-id" : "23bd0ff1-1ba2-4f6c-ad64-d8c744b5b921", - "Body" : "{\r\n \"name\": \"lvm244110de\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/lvm244110de\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"356d262c-7753-4322-84e2-2784a6bc7963\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm244110de-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg650836fb086ab.blob.core.windows.net/vhds/lvm244110de-os-disk-4c81df48-8f24-4483-bf3e-7299a604f531.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm244110de\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic7077193eaad\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "c035f90a-5d06-402a-8496-19c816d7bd43", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0544908a-5eea-49d4-b97f-09da761adefd", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11749", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:15 GMT", - "x-ms-correlation-request-id" : "577347f7-6e59-45ca-9eb4-58af8024a16b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;697", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173016Z:577347f7-6e59-45ca-9eb4-58af8024a16b", - "Expires" : "-1", - "Content-Length" : "4395", - "x-ms-request-id" : "119d2eec-b1ed-46ae-b8d6-3dc23ef714d0", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"lvm244110de\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/lvm244110de\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"356d262c-7753-4322-84e2-2784a6bc7963\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm244110de-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg650836fb086ab.blob.core.windows.net/vhds/lvm244110de-os-disk-4c81df48-8f24-4483-bf3e-7299a604f531.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm244110de\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic7077193eaad\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"wvm60460a84\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c0644be7-4fb2-4346-88fa-4c1524afb279\",\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.19920.2101101839\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm60460a84-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-os-disk-e4f3c44c-3539-4cd6-a830-b84b40f5c456.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 137\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm60460a84-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg095257c6e7c3f.blob.core.windows.net/vhds/wvm60460a84-data-disk-0-c525dbd9-c119-4670-a3dc-208ce93716a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm60460a84\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\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/rgcomv7218997/providers/Microsoft.Network/networkInterfaces/nic20943039d3f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "0544908a-5eea-49d4-b97f-09da761adefd", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv7218997/providers/Microsoft.Compute/virtualMachines/wvm60460a84?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6730f9f3-a79a-4edc-a2fc-2e70bb175a85", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:30:16 GMT", - "x-ms-correlation-request-id" : "b746045b-8bc7-42ed-86fd-2f1810b78225", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;233,Microsoft.Compute/DeleteVM30Min;1174", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173016Z:b746045b-8bc7-42ed-86fd-2f1810b78225", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/39959a6a-c091-4b58-8757-54d2aeb9d296?api-version=2021-11-01", - "x-ms-request-id" : "39959a6a-c091-4b58-8757-54d2aeb9d296", - "x-ms-client-request-id" : "6730f9f3-a79a-4edc-a2fc-2e70bb175a85", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/39959a6a-c091-4b58-8757-54d2aeb9d296?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/39959a6a-c091-4b58-8757-54d2aeb9d296?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "21c972a9-a053-4a28-b9e8-49abb483395d" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11704", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:26 GMT", - "x-ms-correlation-request-id" : "c915f6d7-93c6-4d93-b2a5-7da663132e07", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14931,Microsoft.Compute/GetOperation30Min;29723", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173027Z:c915f6d7-93c6-4d93-b2a5-7da663132e07", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "c70275af-a980-47dc-b053-248b7388e6e7", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:30:16.7282382+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39959a6a-c091-4b58-8757-54d2aeb9d296\"\r\n}", - "x-ms-client-request-id" : "21c972a9-a053-4a28-b9e8-49abb483395d", - "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/39959a6a-c091-4b58-8757-54d2aeb9d296?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d7697b7-b797-4bb3-8599-d78fd1cb60d1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11896", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:56 GMT", - "x-ms-correlation-request-id" : "4b6f829a-2e15-464c-8c34-594c812ac5ed", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29716", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173057Z:4b6f829a-2e15-464c-8c34-594c812ac5ed", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "fc49a1e0-a112-4724-830e-b42b0e71792a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:30:16.7282382+00:00\",\r\n \"endTime\": \"2021-01-29T17:30:50.682693+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"39959a6a-c091-4b58-8757-54d2aeb9d296\"\r\n}", - "x-ms-client-request-id" : "3d7697b7-b797-4bb3-8599-d78fd1cb60d1", - "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/39959a6a-c091-4b58-8757-54d2aeb9d296?monitor=true&api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fdb11f58-b6c5-47c4-af69-971746a21c14" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11751", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:30:56 GMT", - "x-ms-correlation-request-id" : "4d3c1ac7-7a6c-40c4-abba-63a98a89759d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29715", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173057Z:4d3c1ac7-7a6c-40c4-abba-63a98a89759d", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "8b996e1c-c641-449b-8fd4-95905725b383", - "x-ms-client-request-id" : "fdb11f58-b6c5-47c4-af69-971746a21c14" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv7218997?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d562299-f8bd-4b18-8810-009fd9ed1d13", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:31:00 GMT", - "x-ms-correlation-request-id" : "a81845f8-d3ac-4068-88f9-f776012a7c12", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T173101Z:a81845f8-d3ac-4068-88f9-f776012a7c12", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "a81845f8-d3ac-4068-88f9-f776012a7c12", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3MjE4OTk3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "wvm60460a84", "lvm244110de", "rgcomv7218997", "nic20943039d3f", "vnet03207edc8e", "stg095257c6e7c3f", "nic7077193eaad", "stg650836fb086ab" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachinesInParallel.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachinesInParallel.json deleted file mode 100644 index 6e00609a03ca..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageVirtualMachinesInParallel.json +++ /dev/null @@ -1,1687 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopp66887a62b10?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7eb97681-d75b-4e08-b66a-94e202c53041", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "df7783da-c562-4090-9398-beacf7189bb8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:df7783da-c562-4090-9398-beacf7189bb8", - "Expires" : "-1", - "Content-Length" : "239", - "x-ms-request-id" : "df7783da-c562-4090-9398-beacf7189bb8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10\",\"name\":\"rgcopp66887a62b10\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"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/rgcopp66887a62b10/providers/Microsoft.Storage/storageAccounts/stgcomv4168926d3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2e54a39-3966-4e2c-8737-f2f4b8975348", - "Content-Type" : "application/json" - }, - "Response" : { - "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" : "1193", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "56bd695b-2485-4a4a-a625-1274c933e176", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:56bd695b-2485-4a4a-a625-1274c933e176", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "b76a7664-d5f5-42c0-acd0-635f43bdd33d", - "Body" : "", - "x-ms-client-request-id" : "a2e54a39-3966-4e2c-8737-f2f4b8975348", - "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b76a7664-d5f5-42c0-acd0-635f43bdd33d?monitor=true&api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6776e3a9-a708-4d2e-a5a2-5bd43dbd1014", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "59ab4e35-da3d-466c-81b4-08f02812cde8", - "x-ms-arm-service-request-id" : "d5d1dc23-ac87-4a4e-93ed-0bc2d384c09a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172214Z:59ab4e35-da3d-466c-81b4-08f02812cde8", - "Expires" : "-1", - "Content-Length" : "1372", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ef11b267-4f94-400e-a2d9-c7330dae985d?api-version=2023-02-01", - "x-ms-request-id" : "ef11b267-4f94-400e-a2d9-c7330dae985d", - "Body" : "{\r\n \"name\": \"vnetcomv79948ef037\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037\",\r\n \"etag\": \"W/\\\"88dd6ebd-30ce-4854-9f54-88225d745073\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4e516d1d-e9a6-44bc-be6d-4b2ad84ddcda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/subnets/subnet1\",\r\n \"etag\": \"W/\\\"88dd6ebd-30ce-4854-9f54-88225d745073\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "6776e3a9-a708-4d2e-a5a2-5bd43dbd1014", - "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/southcentralus/operations/ef11b267-4f94-400e-a2d9-c7330dae985d?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab14af2b-c35d-45bd-908c-9c7a57ee1ae9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "ebdee2c8-27b3-4e6d-a1b0-1115e55c3f67", - "x-ms-arm-service-request-id" : "2d7d3375-f0ac-472d-b9be-2947564429c1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:ebdee2c8-27b3-4e6d-a1b0-1115e55c3f67", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "ce2d2165-41af-4ea1-8d4f-e3ebffe25bd8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "ab14af2b-c35d-45bd-908c-9c7a57ee1ae9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ac27ea2-d2b8-461e-97ae-c4bcfa68fd17" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:17 GMT", - "x-ms-correlation-request-id" : "41dfb061-4786-412f-94e3-fcab38306713", - "x-ms-arm-service-request-id" : "845b583a-0f25-4695-aa80-2dc0541c26dc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"6141d649-071b-4e0e-b454-39f3e305ea9e\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172218Z:41dfb061-4786-412f-94e3-fcab38306713", - "Expires" : "-1", - "Content-Length" : "1374", - "x-ms-request-id" : "b02f28e6-7aac-4976-97c1-7be2bfb7c96f", - "Body" : "{\r\n \"name\": \"vnetcomv79948ef037\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037\",\r\n \"etag\": \"W/\\\"6141d649-071b-4e0e-b454-39f3e305ea9e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4e516d1d-e9a6-44bc-be6d-4b2ad84ddcda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6141d649-071b-4e0e-b454-39f3e305ea9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "4ac27ea2-d2b8-461e-97ae-c4bcfa68fd17", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic49011d71b5b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d905ac65-418b-4653-824f-bb7bdcfe9ff8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:21 GMT", - "x-ms-correlation-request-id" : "c12d2778-7903-488c-9a92-2774ba4eccb3", - "x-ms-arm-service-request-id" : "0cb8bacf-fe9e-49c0-bb25-75b1858c77fa", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172222Z:c12d2778-7903-488c-9a92-2774ba4eccb3", - "Expires" : "-1", - "Content-Length" : "1686", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9f60615e-8e68-4e93-804f-c33806da8754?api-version=2023-02-01", - "x-ms-request-id" : "9f60615e-8e68-4e93-804f-c33806da8754", - "Body" : "{\r\n \"name\": \"nic49011d71b5b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic49011d71b5b\",\r\n \"etag\": \"W/\\\"ca67125b-13d5-425a-8c3f-876f10af6ea2\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ea995e9-d15c-49f0-b500-3f7eb5f663a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic49011d71b5b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca67125b-13d5-425a-8c3f-876f10af6ea2\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "d905ac65-418b-4653-824f-bb7bdcfe9ff8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic11411ac7ea6?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "140b8254-4100-4f1a-96e8-59f7cfb37816", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:24 GMT", - "x-ms-correlation-request-id" : "49a88afa-bbd7-403b-9ef6-c2cec0e40edf", - "x-ms-arm-service-request-id" : "1487c75d-d0ae-4a83-9246-9253f159845a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172224Z:49a88afa-bbd7-403b-9ef6-c2cec0e40edf", - "Expires" : "-1", - "Content-Length" : "1686", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3b11e513-0db1-46c2-bba6-1bb28d6d35f0?api-version=2023-02-01", - "x-ms-request-id" : "3b11e513-0db1-46c2-bba6-1bb28d6d35f0", - "Body" : "{\r\n \"name\": \"nic11411ac7ea6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic11411ac7ea6\",\r\n \"etag\": \"W/\\\"98ea4c4c-7f81-4466-b09d-41a3149b1621\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b3e47c43-5f28-46fa-a12c-fec500d84a49\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic11411ac7ea6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"98ea4c4c-7f81-4466-b09d-41a3149b1621\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "140b8254-4100-4f1a-96e8-59f7cfb37816", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic845882cbd86?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3214872b-8e9c-4e5a-98d4-23ab0bed700f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:24 GMT", - "x-ms-correlation-request-id" : "c5a4b9bd-1595-4c7c-ad06-d1fea3ce7b32", - "x-ms-arm-service-request-id" : "5182e8b9-24fa-4f57-b991-8a58956f7e79", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172225Z:c5a4b9bd-1595-4c7c-ad06-d1fea3ce7b32", - "Expires" : "-1", - "Content-Length" : "1686", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d4c0a046-0a1c-4c56-8a1b-48c120fcb7dd?api-version=2023-02-01", - "x-ms-request-id" : "d4c0a046-0a1c-4c56-8a1b-48c120fcb7dd", - "Body" : "{\r\n \"name\": \"nic845882cbd86\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic845882cbd86\",\r\n \"etag\": \"W/\\\"ee3960d9-a0ee-4d93-9140-021b722bca8d\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9d43407b-aad4-4dfb-9ec4-d280f6e9475a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic845882cbd86/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ee3960d9-a0ee-4d93-9140-021b722bca8d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "3214872b-8e9c-4e5a-98d4-23ab0bed700f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic388298d6f02?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b220c28-5e8e-430d-899f-4fc11290db21", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:25 GMT", - "x-ms-correlation-request-id" : "51dfd3fc-b260-4ce3-98e6-f494336eb2c8", - "x-ms-arm-service-request-id" : "a09653f6-3990-47a7-b6e7-96ace501418b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172225Z:51dfd3fc-b260-4ce3-98e6-f494336eb2c8", - "Expires" : "-1", - "Content-Length" : "1686", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7812bc9a-90b7-4f68-85d4-6d6c222653fb?api-version=2023-02-01", - "x-ms-request-id" : "7812bc9a-90b7-4f68-85d4-6d6c222653fb", - "Body" : "{\r\n \"name\": \"nic388298d6f02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic388298d6f02\",\r\n \"etag\": \"W/\\\"adc0da43-246b-40cf-bad1-7a6b2316d2b0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cbf9b511-9590-40db-8caf-8ba147f80881\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic388298d6f02/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"adc0da43-246b-40cf-bad1-7a6b2316d2b0\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "3b220c28-5e8e-430d-899f-4fc11290db21", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic591656b587c?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "48b054fb-17e1-4873-859b-19663200169d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:25 GMT", - "x-ms-correlation-request-id" : "540d4d4b-bf25-4267-9618-286459883461", - "x-ms-arm-service-request-id" : "da012c0c-c23a-4e5a-a228-6562b058e316", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:540d4d4b-bf25-4267-9618-286459883461", - "Expires" : "-1", - "Content-Length" : "1686", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7d43ef78-82d6-47fc-998f-53f286d1beb8?api-version=2023-02-01", - "x-ms-request-id" : "7d43ef78-82d6-47fc-998f-53f286d1beb8", - "Body" : "{\r\n \"name\": \"nic591656b587c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic591656b587c\",\r\n \"etag\": \"W/\\\"afa3e7dd-f82b-4e5f-b534-23e45adf1396\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1bcc609-f0b2-4198-a705-6b075f07aef0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic591656b587c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"afa3e7dd-f82b-4e5f-b534-23e45adf1396\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "48b054fb-17e1-4873-859b-19663200169d", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic24257ce1057?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "45ac6693-fd60-4418-9414-acd1556bebd8", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:25 GMT", - "x-ms-correlation-request-id" : "b5b552b1-e038-460a-9880-e95308869d75", - "x-ms-arm-service-request-id" : "abd9bb3e-fb27-45cb-aa85-49a0c3a7766a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:b5b552b1-e038-460a-9880-e95308869d75", - "Expires" : "-1", - "Content-Length" : "1686", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f70c0ccd-21b8-48ce-b6e5-daa16e0927f8?api-version=2023-02-01", - "x-ms-request-id" : "f70c0ccd-21b8-48ce-b6e5-daa16e0927f8", - "Body" : "{\r\n \"name\": \"nic24257ce1057\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic24257ce1057\",\r\n \"etag\": \"W/\\\"d1431416-a651-4e10-9074-ecfb05eab21f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f00d474-c196-4f48-89ce-1fbd251e5636\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic24257ce1057/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d1431416-a651-4e10-9074-ecfb05eab21f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "45ac6693-fd60-4418-9414-acd1556bebd8", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51828499d5f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d03b3c7e-2838-4bc9-85dd-c0e48599ec3e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "cf10f77d-88a8-4081-b289-8f37eb42483b", - "x-ms-arm-service-request-id" : "9d3c8bfe-fb8e-490b-8c43-45a552aa672b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172226Z:cf10f77d-88a8-4081-b289-8f37eb42483b", - "Expires" : "-1", - "Content-Length" : "1687", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7b475346-d2e2-439f-a794-9668bdc9d6e6?api-version=2023-02-01", - "x-ms-request-id" : "7b475346-d2e2-439f-a794-9668bdc9d6e6", - "Body" : "{\r\n \"name\": \"nic51828499d5f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51828499d5f\",\r\n \"etag\": \"W/\\\"3547ed25-a984-43c6-92c8-15ae0e8a30df\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06d2272b-27ef-4f30-886c-f74c2b431af8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51828499d5f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3547ed25-a984-43c6-92c8-15ae0e8a30df\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "d03b3c7e-2838-4bc9-85dd-c0e48599ec3e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic85752938576?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1fdf15a-b451-4668-a661-25f1970a5d62", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "3effcd4d-3eef-4e3e-9050-c1f624343a55", - "x-ms-arm-service-request-id" : "7c982a06-773e-4d42-a1a4-527bf68d425d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:3effcd4d-3eef-4e3e-9050-c1f624343a55", - "Expires" : "-1", - "Content-Length" : "1687", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d4751c6c-dc2e-4518-84ac-b5232dc67cf5?api-version=2023-02-01", - "x-ms-request-id" : "d4751c6c-dc2e-4518-84ac-b5232dc67cf5", - "Body" : "{\r\n \"name\": \"nic85752938576\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic85752938576\",\r\n \"etag\": \"W/\\\"623e8c32-a809-49fc-9816-a53d2e51afd7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"405087e3-8ce9-4293-b9af-99a3e50fcb80\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic85752938576/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"623e8c32-a809-49fc-9816-a53d2e51afd7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "a1fdf15a-b451-4668-a661-25f1970a5d62", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51259cf9e72?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "06b2e0bf-cc46-4c7b-8032-0798591cc66b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:26 GMT", - "x-ms-correlation-request-id" : "bbb72a22-22de-4b04-bba7-ab1185086bdf", - "x-ms-arm-service-request-id" : "ab3cf451-c308-49b9-bf4a-7c471b57b4ed", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:bbb72a22-22de-4b04-bba7-ab1185086bdf", - "Expires" : "-1", - "Content-Length" : "1687", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/de4c0183-b9fa-4c43-8306-bbb22fb08fac?api-version=2023-02-01", - "x-ms-request-id" : "de4c0183-b9fa-4c43-8306-bbb22fb08fac", - "Body" : "{\r\n \"name\": \"nic51259cf9e72\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51259cf9e72\",\r\n \"etag\": \"W/\\\"2cfd9963-1eac-4afe-9fb3-ef9677ab4224\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad3dc35d-31e9-438f-8b8c-39f0f371342d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51259cf9e72/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2cfd9963-1eac-4afe-9fb3-ef9677ab4224\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "06b2e0bf-cc46-4c7b-8032-0798591cc66b", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic30133b0f1ec?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "77c80508-0467-4bec-88bb-a7b3bfd82274", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:27 GMT", - "x-ms-correlation-request-id" : "127d5ae4-42cf-4bef-b700-cdb27ae27d82", - "x-ms-arm-service-request-id" : "5448a217-3b30-425c-a3a4-a148705d69be", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172227Z:127d5ae4-42cf-4bef-b700-cdb27ae27d82", - "Expires" : "-1", - "Content-Length" : "1687", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/240ce238-ed6f-4810-9fe5-321d4978fa6c?api-version=2023-02-01", - "x-ms-request-id" : "240ce238-ed6f-4810-9fe5-321d4978fa6c", - "Body" : "{\r\n \"name\": \"nic30133b0f1ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic30133b0f1ec\",\r\n \"etag\": \"W/\\\"b89694d5-d0f1-4049-9dff-c66fe9f1173d\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f3f20a4-5eea-4201-8805-e9e0a951db6a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic30133b0f1ec/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b89694d5-d0f1-4049-9dff-c66fe9f1173d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Network/virtualNetworks/vnetcomv79948ef037/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\": \"dvwvctvg3g4ejptnjmvnqto21c.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "77c80508-0467-4bec-88bb-a7b3bfd82274", - "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/southcentralus/asyncoperations/b76a7664-d5f5-42c0-acd0-635f43bdd33d?monitor=true&api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "32052e60-6b47-457d-9aa4-f28727d8f739" - }, - "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", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "fe41351b-ed1a-43ea-92e4-41719ebd2436", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172232Z:fe41351b-ed1a-43ea-92e4-41719ebd2436", - "Expires" : "-1", - "Content-Length" : "1219", - "x-ms-request-id" : "fdcbd3ae-4701-4e48-9fdb-bcd3a42130f8", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Storage/storageAccounts/stgcomv4168926d3\",\"name\":\"stgcomv4168926d3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8563285Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8563285Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:13.7613872Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcomv4168926d3.blob.core.windows.net/\",\"queue\":\"https://stgcomv4168926d3.queue.core.windows.net/\",\"table\":\"https://stgcomv4168926d3.table.core.windows.net/\",\"file\":\"https://stgcomv4168926d3.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "32052e60-6b47-457d-9aa4-f28727d8f739", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Storage/storageAccounts/stgcomv4168926d3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "71357743-b0c3-4baf-8af6-162e696412a2", - "Content-Type" : "application/json" - }, - "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" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:32 GMT", - "x-ms-correlation-request-id" : "95fe307e-6b51-47d4-8614-d4de0c57502d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172233Z:95fe307e-6b51-47d4-8614-d4de0c57502d", - "Expires" : "-1", - "Content-Length" : "1219", - "x-ms-request-id" : "dceb989c-690f-4626-b5a0-190f6ffe8517", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Storage/storageAccounts/stgcomv4168926d3\",\"name\":\"stgcomv4168926d3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8563285Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-29T17:22:13.8563285Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-29T17:22:13.7613872Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcomv4168926d3.blob.core.windows.net/\",\"queue\":\"https://stgcomv4168926d3.queue.core.windows.net/\",\"table\":\"https://stgcomv4168926d3.table.core.windows.net/\",\"file\":\"https://stgcomv4168926d3.file.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus\",\"statusOfSecondary\":\"available\"}}", - "x-ms-client-request-id" : "71357743-b0c3-4baf-8af6-162e696412a2", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e46a143e-2a3d-46e2-bd55-a943dff2b9cf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "9c0a832a-0736-41d1-b53e-2274313c8879", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;566,Microsoft.Compute/PutVM30Min;2841", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:9c0a832a-0736-41d1-b53e-2274313c8879", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/68667ebc-3f47-4618-b259-5bb896c67a2e?api-version=2021-11-01", - "x-ms-request-id" : "68667ebc-3f47-4618-b259-5bb896c67a2e", - "Body" : "{\r\n \"name\": \"VM-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d2b14d5-0483-4d2e-8e19-ede8550036c8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic85752938576\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "e46a143e-2a3d-46e2-bd55-a943dff2b9cf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5770aecd-b5a1-4957-a94c-dc83b1c922b1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "7ca9e363-ba08-4535-85a4-0affb6373ed8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;563,Microsoft.Compute/PutVM30Min;2838", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:7ca9e363-ba08-4535-85a4-0affb6373ed8", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23b89ffe-70e0-494e-be3b-211b7447b7ff?api-version=2021-11-01", - "x-ms-request-id" : "23b89ffe-70e0-494e-be3b-211b7447b7ff", - "Body" : "{\r\n \"name\": \"VM-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"76f90c67-a496-487a-afdd-c12740ee0506\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51259cf9e72\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "5770aecd-b5a1-4957-a94c-dc83b1c922b1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d25b939a-5f9c-473a-98d7-a1d124409c68", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "bd694767-121c-42d6-a8b4-1ed60e1503b2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;565,Microsoft.Compute/PutVM30Min;2840", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:bd694767-121c-42d6-a8b4-1ed60e1503b2", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9639d5df-31d5-4d8b-b67c-e59cd7e2e059?api-version=2021-11-01", - "x-ms-request-id" : "9639d5df-31d5-4d8b-b67c-e59cd7e2e059", - "Body" : "{\r\n \"name\": \"VM-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7f1a83e3-e943-471c-94f2-4a0a29a8cac5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic845882cbd86\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "d25b939a-5f9c-473a-98d7-a1d124409c68", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-6?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "14f2a472-6069-44d8-a263-9a1080f0221a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "a589dc4a-ff33-4de6-bc57-d0ea6304fd93", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;564,Microsoft.Compute/PutVM30Min;2839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:a589dc4a-ff33-4de6-bc57-d0ea6304fd93", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/850891e4-b90a-4520-a597-57842062ce1f?api-version=2021-11-01", - "x-ms-request-id" : "850891e4-b90a-4520-a597-57842062ce1f", - "Body" : "{\r\n \"name\": \"VM-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"08fbb380-1b45-4d99-8336-f7950251b2b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic24257ce1057\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "14f2a472-6069-44d8-a263-9a1080f0221a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-8?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c056ace9-3527-4288-8807-3edf7b432d8c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "bbca97c9-15b5-4371-9828-17592c54bb58", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;561,Microsoft.Compute/PutVM30Min;2832", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172236Z:bbca97c9-15b5-4371-9828-17592c54bb58", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6e465055-77b2-46ee-a8cc-42b978048501?api-version=2021-11-01", - "x-ms-request-id" : "6e465055-77b2-46ee-a8cc-42b978048501", - "Body" : "{\r\n \"name\": \"VM-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-8\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"403eb55c-2711-4987-b3f9-6aac0af59fc5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51828499d5f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "c056ace9-3527-4288-8807-3edf7b432d8c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce9945e8-fc4d-403d-8a38-daa4559d3003", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "e0a4704b-024c-4efc-89ed-b951e327f158", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;560,Microsoft.Compute/PutVM30Min;2831", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:e0a4704b-024c-4efc-89ed-b951e327f158", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f57175b1-7ebe-4287-acf2-89e7190d255d?api-version=2021-11-01", - "x-ms-request-id" : "f57175b1-7ebe-4287-acf2-89e7190d255d", - "Body" : "{\r\n \"name\": \"VM-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"250d7a63-fe33-45cc-9b32-2f8d160e1b04\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic49011d71b5b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "ce9945e8-fc4d-403d-8a38-daa4559d3003", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "933ffa78-7411-4166-9bd0-0419e4e19e05", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:36 GMT", - "x-ms-correlation-request-id" : "6e632f50-94a1-463b-8179-c78db4bb7cd1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;559,Microsoft.Compute/PutVM30Min;2828", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:6e632f50-94a1-463b-8179-c78db4bb7cd1", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/52a9bc3f-9502-4003-a1e5-578102db9d56?api-version=2021-11-01", - "x-ms-request-id" : "52a9bc3f-9502-4003-a1e5-578102db9d56", - "Body" : "{\r\n \"name\": \"VM-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db136cf6-b394-4124-9e57-91064ee7ebfd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic30133b0f1ec\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "933ffa78-7411-4166-9bd0-0419e4e19e05", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-7?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ebd0d4f-5da5-42ba-90ec-3f4bf8a8fe4f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:37 GMT", - "x-ms-correlation-request-id" : "02876363-9629-4003-8fba-91cf37c25c14", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;558,Microsoft.Compute/PutVM30Min;2827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172237Z:02876363-9629-4003-8fba-91cf37c25c14", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4942f06a-bb42-4a66-b73a-4cefcf228bc3?api-version=2021-11-01", - "x-ms-request-id" : "4942f06a-bb42-4a66-b73a-4cefcf228bc3", - "Body" : "{\r\n \"name\": \"VM-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d4776f7f-4ea7-479d-bd47-cbd6512c9711\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic388298d6f02\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "7ebd0d4f-5da5-42ba-90ec-3f4bf8a8fe4f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "21592e83-b946-468d-b4c1-5da603a3fc40", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:39 GMT", - "x-ms-correlation-request-id" : "d45a35d6-bd05-4764-93b2-11df5652e642", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;556,Microsoft.Compute/PutVM30Min;2824", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172239Z:d45a35d6-bd05-4764-93b2-11df5652e642", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/19839d1d-ad9b-48c6-860a-ca3ead1402ea?api-version=2021-11-01", - "x-ms-request-id" : "19839d1d-ad9b-48c6-860a-ca3ead1402ea", - "Body" : "{\r\n \"name\": \"VM-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-5\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7d4d4efd-9455-4d8b-9ce5-eb4cd40ae248\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic591656b587c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "21592e83-b946-468d-b4c1-5da603a3fc40", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "af6472d9-d2e6-4419-a362-2c9aa8917231", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:40 GMT", - "x-ms-correlation-request-id" : "fe40d546-fc37-4fef-8310-6f6a94462230", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;664,Microsoft.Compute/PutVM30Min;3364", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172240Z:fe40d546-fc37-4fef-8310-6f6a94462230", - "Expires" : "-1", - "Content-Length" : "1593", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6bf0a567-48b1-4bfa-ad2a-a9290ddee927?api-version=2021-11-01", - "x-ms-request-id" : "6bf0a567-48b1-4bfa-ad2a-a9290ddee927", - "Body" : "{\r\n \"name\": \"VM-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3d42e34d-8378-40f0-9ee5-16dc4a375419\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic11411ac7ea6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "x-ms-client-request-id" : "af6472d9-d2e6-4419-a362-2c9aa8917231", - "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/southcentralus/operations/68667ebc-3f47-4618-b259-5bb896c67a2e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "cae354ae-1306-4408-a472-840a7f6c85d1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:45 GMT", - "x-ms-correlation-request-id" : "f2e4b534-3d09-404d-8c26-25c76661885e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172246Z:f2e4b534-3d09-404d-8c26-25c76661885e", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "d191a3e1-a4f4-4a61-a064-dc02c870cb7c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.1941486+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"68667ebc-3f47-4618-b259-5bb896c67a2e\"\r\n}", - "x-ms-client-request-id" : "cae354ae-1306-4408-a472-840a7f6c85d1", - "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/southcentralus/operations/23b89ffe-70e0-494e-be3b-211b7447b7ff?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "038fce6d-a2c9-479b-933d-367b5ed44334" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "3671c4e1-6561-4e34-9c9e-97dfbcacd97b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172246Z:3671c4e1-6561-4e34-9c9e-97dfbcacd97b", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "f14bd726-e4d5-4ec8-abeb-6e304fbbfba2", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.2941621+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23b89ffe-70e0-494e-be3b-211b7447b7ff\"\r\n}", - "x-ms-client-request-id" : "038fce6d-a2c9-479b-933d-367b5ed44334", - "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/southcentralus/operations/9639d5df-31d5-4d8b-b67c-e59cd7e2e059?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "40dc2799-f63c-43ba-bdeb-52fa713c9d90" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "2e598208-7bcb-4df9-9824-71d1c0daa0e1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:2e598208-7bcb-4df9-9824-71d1c0daa0e1", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "c032d7b5-0359-47f6-a4a6-7c40b45ae7ee", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.2141001+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9639d5df-31d5-4d8b-b67c-e59cd7e2e059\"\r\n}", - "x-ms-client-request-id" : "40dc2799-f63c-43ba-bdeb-52fa713c9d90", - "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/southcentralus/operations/6e465055-77b2-46ee-a8cc-42b978048501?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b78aceb7-d888-4482-99de-cd2da329c2a1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "161d4d09-b1b8-492e-b39f-9c3480721749", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:161d4d09-b1b8-492e-b39f-9c3480721749", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "cea67dd4-30a8-4d54-97f3-504a3c2b5368", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.4691614+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6e465055-77b2-46ee-a8cc-42b978048501\"\r\n}", - "x-ms-client-request-id" : "b78aceb7-d888-4482-99de-cd2da329c2a1", - "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/southcentralus/operations/f57175b1-7ebe-4287-acf2-89e7190d255d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "08c7a778-a51d-438f-8e8f-d916ab016e90" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:46 GMT", - "x-ms-correlation-request-id" : "8ca39c87-c846-4099-9ac2-185d4256160c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:8ca39c87-c846-4099-9ac2-185d4256160c", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "a7b76fda-1fa9-4505-8a06-6cc4c82182bb", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6541899+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f57175b1-7ebe-4287-acf2-89e7190d255d\"\r\n}", - "x-ms-client-request-id" : "08c7a778-a51d-438f-8e8f-d916ab016e90", - "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/southcentralus/operations/52a9bc3f-9502-4003-a1e5-578102db9d56?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f834a104-09a1-4b04-8bf3-ae90af19e117" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "21d0025c-62d3-416e-851b-35384446cb47", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:21d0025c-62d3-416e-851b-35384446cb47", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "61b58499-a2ab-4a54-b520-fb6ee1705233", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.0192268+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52a9bc3f-9502-4003-a1e5-578102db9d56\"\r\n}", - "x-ms-client-request-id" : "f834a104-09a1-4b04-8bf3-ae90af19e117", - "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/southcentralus/operations/4942f06a-bb42-4a66-b73a-4cefcf228bc3?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "366403ee-2445-4ba3-88b3-5902bb9dbf57" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "b639815c-d25b-41fb-a137-53d1751c6255", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:b639815c-d25b-41fb-a137-53d1751c6255", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "e583d815-857b-4250-830f-82a413979059", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.1941906+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4942f06a-bb42-4a66-b73a-4cefcf228bc3\"\r\n}", - "x-ms-client-request-id" : "366403ee-2445-4ba3-88b3-5902bb9dbf57", - "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/southcentralus/operations/850891e4-b90a-4520-a597-57842062ce1f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dbd3547-30a9-4ed8-9937-b87f786fa3df" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:47 GMT", - "x-ms-correlation-request-id" : "0e9161cf-9859-4af2-8d6c-83ff94d23aa1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172247Z:0e9161cf-9859-4af2-8d6c-83ff94d23aa1", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "4b44c12d-9c80-42f9-8ad9-52288596042f", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.2591511+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"850891e4-b90a-4520-a597-57842062ce1f\"\r\n}", - "x-ms-client-request-id" : "2dbd3547-30a9-4ed8-9937-b87f786fa3df", - "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/southcentralus/operations/19839d1d-ad9b-48c6-860a-ca3ead1402ea?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "30f28d9b-7148-4ac9-a3f1-acef7ac5a9b5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:49 GMT", - "x-ms-correlation-request-id" : "86fc76cc-5ceb-4088-9426-e1cb4e9b5b26", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172249Z:86fc76cc-5ceb-4088-9426-e1cb4e9b5b26", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "26338111-d557-4ead-a154-b27403bcf278", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:38.1444218+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19839d1d-ad9b-48c6-860a-ca3ead1402ea\"\r\n}", - "x-ms-client-request-id" : "30f28d9b-7148-4ac9-a3f1-acef7ac5a9b5", - "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/southcentralus/operations/6bf0a567-48b1-4bfa-ad2a-a9290ddee927?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "54d76b89-9b46-4635-ba33-0bb5fbb5c5c9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:50 GMT", - "x-ms-correlation-request-id" : "a95ba9af-6cc3-416f-bbf5-170b0aa0c7fc", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172251Z:a95ba9af-6cc3-416f-bbf5-170b0aa0c7fc", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "e52e25b9-707c-49f6-bd4d-00e6ba029216", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:39.654519+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bf0a567-48b1-4bfa-ad2a-a9290ddee927\"\r\n}", - "x-ms-client-request-id" : "54d76b89-9b46-4635-ba33-0bb5fbb5c5c9", - "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/southcentralus/operations/23b89ffe-70e0-494e-be3b-211b7447b7ff?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d21c07b4-5594-47ed-8991-4e15c6195d6f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "339d1105-8f2b-48c3-8e57-a04357b7d4e7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:339d1105-8f2b-48c3-8e57-a04357b7d4e7", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "238d36ad-e518-4090-bba6-ffe31433a87c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.2941621+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:00.6014735+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"23b89ffe-70e0-494e-be3b-211b7447b7ff\"\r\n}", - "x-ms-client-request-id" : "d21c07b4-5594-47ed-8991-4e15c6195d6f", - "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/southcentralus/operations/68667ebc-3f47-4618-b259-5bb896c67a2e?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "81521c7c-3f62-4479-aa33-234862ca1ffa" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "67456a98-2458-4e38-bf7d-ded6d1d4d540", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:67456a98-2458-4e38-bf7d-ded6d1d4d540", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "9727152d-67bd-4174-ab1e-b66d67fc2a3c", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.1941486+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:01.6015192+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"68667ebc-3f47-4618-b259-5bb896c67a2e\"\r\n}", - "x-ms-client-request-id" : "81521c7c-3f62-4479-aa33-234862ca1ffa", - "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/southcentralus/operations/9639d5df-31d5-4d8b-b67c-e59cd7e2e059?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4e58f08-1ef1-4914-8134-7279cfe2e64a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "f744b7d4-04f9-4eea-802a-e1c56ca64a04", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:f744b7d4-04f9-4eea-802a-e1c56ca64a04", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "b5bb17cf-a9c2-45d8-8e2f-c9442645bfae", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.2141001+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:01.6565731+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9639d5df-31d5-4d8b-b67c-e59cd7e2e059\"\r\n}", - "x-ms-client-request-id" : "f4e58f08-1ef1-4914-8134-7279cfe2e64a", - "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/southcentralus/operations/6e465055-77b2-46ee-a8cc-42b978048501?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5629545-6c91-4252-be1c-0ded700a413c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "87903eda-73d0-4367-8948-7c6e48965884", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29973", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:87903eda-73d0-4367-8948-7c6e48965884", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "3a90e817-2292-4e44-b88a-e41ed3e98efc", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.4691614+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:59.5813865+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6e465055-77b2-46ee-a8cc-42b978048501\"\r\n}", - "x-ms-client-request-id" : "c5629545-6c91-4252-be1c-0ded700a413c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-2?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e05d078-3006-44b2-bcef-fa963d9bbbd9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11928", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "3e4f6152-864d-4dca-8064-bff4c6f1f256", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:3e4f6152-864d-4dca-8064-bff4c6f1f256", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "5a4cb5d1-fb28-4025-b75a-a3057b431b8f", - "Body" : "{\r\n \"name\": \"VM-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"76f90c67-a496-487a-afdd-c12740ee0506\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-2_OsDisk_1_75f05ef7600a406c810429244d1d04e0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-2_OsDisk_1_75f05ef7600a406c810429244d1d04e0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51259cf9e72\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "7e05d078-3006-44b2-bcef-fa963d9bbbd9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-3?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee27a34a-4efc-423a-aa6a-264ec20286a5" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "1a50ec3c-eaf9-447a-a7e9-c281c0978459", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:1a50ec3c-eaf9-447a-a7e9-c281c0978459", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "973c98fe-44e2-4195-89bd-a8c521ee7ec2", - "Body" : "{\r\n \"name\": \"VM-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d2b14d5-0483-4d2e-8e19-ede8550036c8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-3_OsDisk_1_60148ce89a8346099ae98badbda5ef62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-3_OsDisk_1_60148ce89a8346099ae98badbda5ef62\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic85752938576\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "ee27a34a-4efc-423a-aa6a-264ec20286a5", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-9?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b271c99f-a820-4973-8be6-7d1b1e23c3f6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:21 GMT", - "x-ms-correlation-request-id" : "e207713e-cb2c-47d0-8407-eb69aca350a5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:e207713e-cb2c-47d0-8407-eb69aca350a5", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "fa12f4d8-3f93-4f39-957f-a11152d390d0", - "Body" : "{\r\n \"name\": \"VM-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7f1a83e3-e943-471c-94f2-4a0a29a8cac5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-9_OsDisk_1_e5fdc5f8d1be47f194d18c725a0b98c5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-9_OsDisk_1_e5fdc5f8d1be47f194d18c725a0b98c5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic845882cbd86\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "b271c99f-a820-4973-8be6-7d1b1e23c3f6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-8?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "560356cf-c600-4ab6-bc06-3afb442343cc" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "7852febb-c0f0-4283-b66f-c0ae0e1cb2ad", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31984", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:7852febb-c0f0-4283-b66f-c0ae0e1cb2ad", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "d3ec9002-3477-46ba-a14a-de958f5913b4", - "Body" : "{\r\n \"name\": \"VM-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-8\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"403eb55c-2711-4987-b3f9-6aac0af59fc5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-8_OsDisk_1_6211cb9206f84a098d3258d860c89618\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-8_OsDisk_1_6211cb9206f84a098d3258d860c89618\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic51828499d5f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "560356cf-c600-4ab6-bc06-3afb442343cc", - "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/southcentralus/operations/f57175b1-7ebe-4287-acf2-89e7190d255d?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "366a0eb4-a6dc-4021-86f4-158470994820" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11921", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "bffca8aa-459c-4095-a048-863f56689730", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29972", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:bffca8aa-459c-4095-a048-863f56689730", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "87c3fa19-50ad-47dc-a8c4-84010f78aacc", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.6541899+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:59.5813865+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f57175b1-7ebe-4287-acf2-89e7190d255d\"\r\n}", - "x-ms-client-request-id" : "366a0eb4-a6dc-4021-86f4-158470994820", - "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/southcentralus/operations/52a9bc3f-9502-4003-a1e5-578102db9d56?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fbc74d2-bc67-4035-a626-e20fd501eee8" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "14aca91e-8c28-4781-951b-29cf30d986af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29971", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172322Z:14aca91e-8c28-4781-951b-29cf30d986af", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "642f5288-13d0-4ccc-b8b5-a6d0ab6371a5", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.0192268+00:00\",\r\n \"endTime\": \"2021-01-29T17:22:59.5963885+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"52a9bc3f-9502-4003-a1e5-578102db9d56\"\r\n}", - "x-ms-client-request-id" : "6fbc74d2-bc67-4035-a626-e20fd501eee8", - "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/southcentralus/operations/4942f06a-bb42-4a66-b73a-4cefcf228bc3?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "498fc6bb-51f2-4cb2-aac3-8871a2e9d1c0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "1618acea-181f-4734-be08-04537083afbf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29970", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:1618acea-181f-4734-be08-04537083afbf", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "ae3ea5ef-9277-43af-8b79-d986e4bcb88d", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:36.1941906+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:01.5915161+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4942f06a-bb42-4a66-b73a-4cefcf228bc3\"\r\n}", - "x-ms-client-request-id" : "498fc6bb-51f2-4cb2-aac3-8871a2e9d1c0", - "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/southcentralus/operations/850891e4-b90a-4520-a597-57842062ce1f?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "92050870-7b39-4925-84be-eb1c9578d0dc" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "70abb589-d904-47df-a924-529bba46bee4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:70abb589-d904-47df-a924-529bba46bee4", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "4821be95-f850-4202-87d8-1c69205922a3", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:35.2591511+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:01.5915161+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"850891e4-b90a-4520-a597-57842062ce1f\"\r\n}", - "x-ms-client-request-id" : "92050870-7b39-4925-84be-eb1c9578d0dc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-1?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4bfda849-81a3-4f81-be4f-94a2c3a92477" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "f129419d-2181-49c6-8570-8b2ab2ab4758", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31983", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:f129419d-2181-49c6-8570-8b2ab2ab4758", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "46fa0dec-380a-4b73-b13d-f670ca29cf40", - "Body" : "{\r\n \"name\": \"VM-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"250d7a63-fe33-45cc-9b32-2f8d160e1b04\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-1_OsDisk_1_1b31c63878ce4c0e9462102945ca7514\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-1_OsDisk_1_1b31c63878ce4c0e9462102945ca7514\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic49011d71b5b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "4bfda849-81a3-4f81-be4f-94a2c3a92477", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-4?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d7e5a77-062f-4da8-9475-0d5d7f0582e0" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:22 GMT", - "x-ms-correlation-request-id" : "c054380f-daed-4b27-8841-077d367c6843", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31982", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:c054380f-daed-4b27-8841-077d367c6843", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "cb8a9d98-f2ec-404e-a619-c94bcd985573", - "Body" : "{\r\n \"name\": \"VM-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"db136cf6-b394-4124-9e57-91064ee7ebfd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-4_OsDisk_1_00cd3943e76446949a0b0bddf5985337\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-4_OsDisk_1_00cd3943e76446949a0b0bddf5985337\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic30133b0f1ec\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "8d7e5a77-062f-4da8-9475-0d5d7f0582e0", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-7?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "156c174a-81b7-4070-bc0f-b9085afc3875" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "c71af5cd-098f-4973-87fb-c6c1ed449b9b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3981,Microsoft.Compute/LowCostGet30Min;31981", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:c71af5cd-098f-4973-87fb-c6c1ed449b9b", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "2508d888-9193-4e9c-9c96-8f5555c069ef", - "Body" : "{\r\n \"name\": \"VM-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d4776f7f-4ea7-479d-bd47-cbd6512c9711\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-7_OsDisk_1_2329e79e322142d2b67a61c0859d9078\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-7_OsDisk_1_2329e79e322142d2b67a61c0859d9078\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic388298d6f02\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "156c174a-81b7-4070-bc0f-b9085afc3875", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-6?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1f98ed1-47a8-4a30-84af-329c0e529a87" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11917", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:23 GMT", - "x-ms-correlation-request-id" : "33fa6e0f-f607-41fe-9020-2eec6c2db15f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172323Z:33fa6e0f-f607-41fe-9020-2eec6c2db15f", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "9b4f777a-5345-45f8-812e-964946d6be54", - "Body" : "{\r\n \"name\": \"VM-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"08fbb380-1b45-4d99-8336-f7950251b2b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-6_OsDisk_1_7407a0b9fc064b7a93ad066bf805322e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-6_OsDisk_1_7407a0b9fc064b7a93ad066bf805322e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic24257ce1057\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "e1f98ed1-47a8-4a30-84af-329c0e529a87", - "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/southcentralus/operations/19839d1d-ad9b-48c6-860a-ca3ead1402ea?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4b78a2d-9f38-461f-9f0e-d913f1bae166" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11916", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:24 GMT", - "x-ms-correlation-request-id" : "a376f5b2-571d-4a3d-95f1-0139fa2483fe", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172325Z:a376f5b2-571d-4a3d-95f1-0139fa2483fe", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "1fc97492-c417-4020-b68b-65ebf6590fe2", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:38.1444218+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:00.5814627+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"19839d1d-ad9b-48c6-860a-ca3ead1402ea\"\r\n}", - "x-ms-client-request-id" : "b4b78a2d-9f38-461f-9f0e-d913f1bae166", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-5?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "410fd536-ae11-40b2-8cfb-68289b2b9ce1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:25 GMT", - "x-ms-correlation-request-id" : "ad096d0b-d4d9-4327-a372-6df53d3f9a3d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172325Z:ad096d0b-d4d9-4327-a372-6df53d3f9a3d", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "cf02f8d3-9b04-4301-a9e4-1519672bfd96", - "Body" : "{\r\n \"name\": \"VM-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-5\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7d4d4efd-9455-4d8b-9ce5-eb4cd40ae248\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-5_OsDisk_1_6ebcaf371b44422290297623ed825fc6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-5_OsDisk_1_6ebcaf371b44422290297623ed825fc6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic591656b587c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "410fd536-ae11-40b2-8cfb-68289b2b9ce1", - "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/southcentralus/operations/6bf0a567-48b1-4bfa-ad2a-a9290ddee927?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a9d4a99-e536-4776-823e-16306f321962" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:26 GMT", - "x-ms-correlation-request-id" : "c63b5717-3233-44d7-b949-484f2ca06b25", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172326Z:c63b5717-3233-44d7-b949-484f2ca06b25", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "dd4937c4-4162-4633-89a9-64cc85855b36", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:39.654519+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:02.5915968+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6bf0a567-48b1-4bfa-ad2a-a9290ddee927\"\r\n}", - "x-ms-client-request-id" : "9a9d4a99-e536-4776-823e-16306f321962", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-0?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9055dda-acc4-44fd-a49b-6859f13b3720" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:27 GMT", - "x-ms-correlation-request-id" : "d2f32d7a-42b3-4400-b258-5caf334ffe83", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172327Z:d2f32d7a-42b3-4400-b258-5caf334ffe83", - "Expires" : "-1", - "Content-Length" : "1847", - "x-ms-request-id" : "54779262-ed51-478a-a207-ce3ccdbbe38e", - "Body" : "{\r\n \"name\": \"VM-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/virtualMachines/VM-0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3d42e34d-8378-40f0-9ee5-16dc4a375419\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-0_OsDisk_1_9c06fbff9e4243fa82bad238518a9f1e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopp66887a62b10/providers/Microsoft.Compute/disks/VM-0_OsDisk_1_9c06fbff9e4243fa82bad238518a9f1e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcopp66887a62b10/providers/Microsoft.Network/networkInterfaces/nic11411ac7ea6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "x-ms-client-request-id" : "d9055dda-acc4-44fd-a49b-6859f13b3720", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopp66887a62b10?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "81f3cf20-cf50-4b46-9432-d2126378cd64", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:23:29 GMT", - "x-ms-correlation-request-id" : "125f5634-0342-4bf3-8a05-1449ab80aab7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172329Z:125f5634-0342-4bf3-8a05-1449ab80aab7", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "125f5634-0342-4bf3-8a05-1449ab80aab7", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUFA2Njg4N0E2MkIxMC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcopp66887a62b10", "vnetcomv79948ef037", "stgcomv4168926d3", "nic11411ac7ea6", "nic49011d71b5b", "nic51259cf9e72", "nic85752938576", "nic30133b0f1ec", "nic591656b587c", "nic24257ce1057", "nic388298d6f02", "nic51828499d5f", "nic845882cbd86" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachine.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachine.json deleted file mode 100644 index 501eb2b0c4fc..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachine.json +++ /dev/null @@ -1,815 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv49985c2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "34dafe67-befb-46f1-832b-27a9b719322f", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:07 GMT", - "x-ms-correlation-request-id" : "d6ede180-2e9b-4069-9571-13aa738b0de1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172207Z:d6ede180-2e9b-4069-9571-13aa738b0de1", - "Expires" : "-1", - "Content-Length" : "224", - "x-ms-request-id" : "d6ede180-2e9b-4069-9571-13aa738b0de1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2\",\"name\":\"rgcomv49985c2\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"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/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "002b8530-555e-48ae-99b8-77486a9070c1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "18e8d3bf-0dae-4345-9f9d-f2f9bb86afbf", - "x-ms-arm-service-request-id" : "44762a31-4c69-46bc-862e-ea09f2843e93", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172216Z:18e8d3bf-0dae-4345-9f9d-f2f9bb86afbf", - "Expires" : "-1", - "Content-Length" : "1341", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8a0682a2-adf5-4639-9838-13504aa4729f?api-version=2023-02-01", - "x-ms-request-id" : "8a0682a2-adf5-4639-9838-13504aa4729f", - "Body" : "{\r\n \"name\": \"vnet635132336e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e\",\r\n \"etag\": \"W/\\\"2642ec6b-7da0-4f87-ac34-ffd7c18dfa34\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9a26ede3-08e4-40ff-8ed2-8d7c4a5bc7d3\",\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/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2642ec6b-7da0-4f87-ac34-ffd7c18dfa34\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "002b8530-555e-48ae-99b8-77486a9070c1", - "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/eastus2/operations/8a0682a2-adf5-4639-9838-13504aa4729f?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "65bd92bc-8d27-4d76-a643-e1f96a8c9c11" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "a7763695-f274-4409-817b-7808fb390928", - "x-ms-arm-service-request-id" : "48f18f98-d397-413e-8a64-51a3d03b7908", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172219Z:a7763695-f274-4409-817b-7808fb390928", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "2ef85145-c045-45bb-af4b-a1c9e8ad194c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "65bd92bc-8d27-4d76-a643-e1f96a8c9c11", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "946f842e-198c-4ab0-a335-2ef6a76706d3" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:19 GMT", - "x-ms-correlation-request-id" : "2f8bd409-2508-4127-a874-4a06df728732", - "x-ms-arm-service-request-id" : "b7220718-1b32-4b86-a83d-e388406c4ade", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"0c92a3f8-f9be-41ed-8059-4be04af5c343\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172220Z:2f8bd409-2508-4127-a874-4a06df728732", - "Expires" : "-1", - "Content-Length" : "1343", - "x-ms-request-id" : "25664da8-ad6e-459b-b689-a02fdc6b2675", - "Body" : "{\r\n \"name\": \"vnet635132336e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e\",\r\n \"etag\": \"W/\\\"0c92a3f8-f9be-41ed-8059-4be04af5c343\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a26ede3-08e4-40ff-8ed2-8d7c4a5bc7d3\",\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/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0c92a3f8-f9be-41ed-8059-4be04af5c343\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "946f842e-198c-4ab0-a335-2ef6a76706d3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip03500fba?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e87767cd-c488-4430-a74a-c3f41f7cee42", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:56 GMT", - "x-ms-correlation-request-id" : "2478cc0f-b604-405e-9ac6-93d29249050d", - "x-ms-arm-service-request-id" : "a8ce91ac-61dd-48a1-ad44-d8e8cb654591", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172257Z:2478cc0f-b604-405e-9ac6-93d29249050d", - "Expires" : "-1", - "Content-Length" : "807", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/28a89930-8bbe-4974-a28b-64b3e6ef9fa1?api-version=2023-02-01", - "x-ms-request-id" : "28a89930-8bbe-4974-a28b-64b3e6ef9fa1", - "Body" : "{\r\n \"name\": \"pip03500fba\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip03500fba\",\r\n \"etag\": \"W/\\\"56006463-385a-4842-928c-1c712fff64bf\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1abf6b6e-e7c9-4f36-941e-2a86d814180b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip129748d05\",\r\n \"fqdn\": \"pip129748d05.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "e87767cd-c488-4430-a74a-c3f41f7cee42", - "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/eastus2/operations/28a89930-8bbe-4974-a28b-64b3e6ef9fa1?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c608d32c-95cd-4990-b5e6-af294f4b27d6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:57 GMT", - "x-ms-correlation-request-id" : "7d748ffd-65bb-4230-b981-08e5d5aaef13", - "x-ms-arm-service-request-id" : "a39aceef-c72b-4ccb-824f-8e9c12905299", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172258Z:7d748ffd-65bb-4230-b981-08e5d5aaef13", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "353f3d36-ece6-4099-a726-7dbed1c784e4", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "c608d32c-95cd-4990-b5e6-af294f4b27d6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip03500fba?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "461cfe37-50c7-4e7e-aef0-4bf7637accc4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:58 GMT", - "x-ms-correlation-request-id" : "16af4478-a766-49ab-a292-065ea49a64dc", - "x-ms-arm-service-request-id" : "c46066f5-491a-4645-a89f-a1150f4d4501", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"b9bde0f8-07e8-40b9-9d42-eaf5e1dd81d0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172258Z:16af4478-a766-49ab-a292-065ea49a64dc", - "Expires" : "-1", - "Content-Length" : "808", - "x-ms-request-id" : "782f7c27-3f47-4f07-bb00-ce42a92560f9", - "Body" : "{\r\n \"name\": \"pip03500fba\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip03500fba\",\r\n \"etag\": \"W/\\\"b9bde0f8-07e8-40b9-9d42-eaf5e1dd81d0\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1abf6b6e-e7c9-4f36-941e-2a86d814180b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip129748d05\",\r\n \"fqdn\": \"pip129748d05.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "461cfe37-50c7-4e7e-aef0-4bf7637accc4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic624465808ab?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd110a7d-01e6-4538-b6ef-b48f39b9d0d3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:01 GMT", - "x-ms-correlation-request-id" : "9269d7f4-c0d6-4491-b948-28c6f8c63ac7", - "x-ms-arm-service-request-id" : "bc3625ba-17ca-4910-9eeb-841e2b485b36", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172302Z:9269d7f4-c0d6-4491-b948-28c6f8c63ac7", - "Expires" : "-1", - "Content-Length" : "1867", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/6814f272-add7-4609-9265-2c9a4ccbe4dd?api-version=2023-02-01", - "x-ms-request-id" : "6814f272-add7-4609-9265-2c9a4ccbe4dd", - "Body" : "{\r\n \"name\": \"nic624465808ab\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic624465808ab\",\r\n \"etag\": \"W/\\\"4cdaaf7b-f918-4d69-a3f7-dc097e433627\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9ea8a585-fd2b-4f36-8d60-7b89bb6af163\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic624465808ab/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4cdaaf7b-f918-4d69-a3f7-dc097e433627\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip03500fba\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet635132336e/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\": \"2pwsngxebd5ubdwsrv4euw4h0d.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "dd110a7d-01e6-4538-b6ef-b48f39b9d0d3", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm195910815?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e003e1ae-ddde-4a00-b3f9-51874146f22d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:09 GMT", - "x-ms-correlation-request-id" : "4b937f92-a914-4eef-b4ed-7ef1f55cb393", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;739,Microsoft.Compute/PutVM30Min;3718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172310Z:4b937f92-a914-4eef-b4ed-7ef1f55cb393", - "Expires" : "-1", - "Content-Length" : "1631", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b2339cea-1d05-4679-9bad-634619824a65?api-version=2021-11-01", - "x-ms-request-id" : "b2339cea-1d05-4679-9bad-634619824a65", - "Body" : "{\r\n \"name\": \"lvm195910815\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm195910815\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e64080b-aa57-4c93-b97d-6b6cb4054bc4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm195910815\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic624465808ab\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "e003e1ae-ddde-4a00-b3f9-51874146f22d", - "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/eastus2/operations/b2339cea-1d05-4679-9bad-634619824a65?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "31faeb34-dc9b-459b-aa61-516d37a47de1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:20 GMT", - "x-ms-correlation-request-id" : "9cad13fa-7045-4bae-b51e-404c3657abd2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172320Z:9cad13fa-7045-4bae-b51e-404c3657abd2", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "36d3d777-5fef-4918-9cc7-dcd262b4a449", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:08.9116016+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2339cea-1d05-4679-9bad-634619824a65\"\r\n}", - "x-ms-client-request-id" : "31faeb34-dc9b-459b-aa61-516d37a47de1", - "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/eastus2/operations/b2339cea-1d05-4679-9bad-634619824a65?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c43b9f9b-187f-441f-bad7-c75088246758" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11913", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:56 GMT", - "x-ms-correlation-request-id" : "63424fbb-f2f0-45ce-a3ab-1eb376c96371", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29979", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172356Z:63424fbb-f2f0-45ce-a3ab-1eb376c96371", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "20e957e4-eb6b-4e8c-bfdb-65f9bbf54491", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:08.9116016+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:34.7569592+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b2339cea-1d05-4679-9bad-634619824a65\"\r\n}", - "x-ms-client-request-id" : "c43b9f9b-187f-441f-bad7-c75088246758", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm195910815?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fdfc36bc-c456-42fa-88a5-0f6e3c8eed0f" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11909", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:56 GMT", - "x-ms-correlation-request-id" : "8743455b-5858-4bce-bf6b-62bb0198a053", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172356Z:8743455b-5858-4bce-bf6b-62bb0198a053", - "Expires" : "-1", - "Content-Length" : "1897", - "x-ms-request-id" : "90222401-a1f8-48b4-8e45-31c6ab27bd98", - "Body" : "{\r\n \"name\": \"lvm195910815\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm195910815\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e64080b-aa57-4c93-b97d-6b6cb4054bc4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm195910815_OsDisk_1_0964b5cdad2b40f6bb1503e193e93beb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/lvm195910815_OsDisk_1_0964b5cdad2b40f6bb1503e193e93beb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm195910815\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic624465808ab\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "fdfc36bc-c456-42fa-88a5-0f6e3c8eed0f", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip255547bf7?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "fabde8f9-f2ab-4961-bd9d-538581113f80", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:03 GMT", - "x-ms-correlation-request-id" : "98836e09-80d1-4598-a6f2-458392374446", - "x-ms-arm-service-request-id" : "edd8c55a-b621-47c9-8719-a334721d68a1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172403Z:98836e09-80d1-4598-a6f2-458392374446", - "Expires" : "-1", - "Content-Length" : "682", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/c96dc4a1-b5d4-4b08-83fa-2793af0f9297?api-version=2023-02-01", - "x-ms-request-id" : "c96dc4a1-b5d4-4b08-83fa-2793af0f9297", - "Body" : "{\r\n \"name\": \"pip255547bf7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip255547bf7\",\r\n \"etag\": \"W/\\\"d6672403-eaeb-4e7b-95bb-2cffa90eeb49\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f956b673-920f-4c00-b104-50275d1debe3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "fabde8f9-f2ab-4961-bd9d-538581113f80", - "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/eastus2/operations/c96dc4a1-b5d4-4b08-83fa-2793af0f9297?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "69fa62fe-fea2-4d25-9e29-20bbac669224" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11849", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:04 GMT", - "x-ms-correlation-request-id" : "1e6db621-e493-4cfe-be5c-884d4a324119", - "x-ms-arm-service-request-id" : "d04b3425-b99a-40fa-bf3e-97baea95ad2a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172405Z:1e6db621-e493-4cfe-be5c-884d4a324119", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "5ad1a5d1-d7c7-4512-9ebd-70da72f7f13d", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "69fa62fe-fea2-4d25-9e29-20bbac669224", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip255547bf7?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4608961-0012-4ec6-a6c3-7182d1b9d96e" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11900", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:04 GMT", - "x-ms-correlation-request-id" : "ee2a4620-81fc-449b-b613-d5ebdb090f6b", - "x-ms-arm-service-request-id" : "27e967b4-e48c-4351-a765-34868e3c7c1c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"3cdb8bdc-71e9-4ccc-ab13-51128516d6ed\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172405Z:ee2a4620-81fc-449b-b613-d5ebdb090f6b", - "Expires" : "-1", - "Content-Length" : "718", - "x-ms-request-id" : "ef2cd141-74b1-489b-9be3-5aa835d9765c", - "Body" : "{\r\n \"name\": \"pip255547bf7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip255547bf7\",\r\n \"etag\": \"W/\\\"3cdb8bdc-71e9-4ccc-ab13-51128516d6ed\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f956b673-920f-4c00-b104-50275d1debe3\",\r\n \"ipAddress\": \"20.80.251.178\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "c4608961-0012-4ec6-a6c3-7182d1b9d96e", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/ds5224311ff?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "95871ff4-1afd-4791-9fba-03130fd49323", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "ce96b30d-0275-4436-80e4-d93926dd88a7_132540869509624272", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:24:15 GMT", - "x-ms-correlation-request-id" : "170a5f76-c985-4ee5-a92e-08e237efea46", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172416Z:170a5f76-c985-4ee5-a92e-08e237efea46", - "Expires" : "-1", - "Content-Length" : "275", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/755c61ea-b5eb-48b5-9a5d-c931851e1699?api-version=2021-11-01", - "x-ms-request-id" : "755c61ea-b5eb-48b5-9a5d-c931851e1699", - "Body" : "{\r\n \"name\": \"ds5224311ff\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "x-ms-client-request-id" : "95871ff4-1afd-4791-9fba-03130fd49323", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/755c61ea-b5eb-48b5-9a5d-c931851e1699?monitor=true&api-version=2021-11-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/755c61ea-b5eb-48b5-9a5d-c931851e1699?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "be0a6304-5a40-4e6e-9c8c-a5904fa7f385" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "ce96b30d-0275-4436-80e4-d93926dd88a7_132540869509624272", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11889", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:17 GMT", - "x-ms-correlation-request-id" : "4a0c0bb8-8bcd-42db-adf3-8b1b59112f57", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172418Z:4a0c0bb8-8bcd-42db-adf3-8b1b59112f57", - "Expires" : "-1", - "Content-Length" : "1082", - "x-ms-request-id" : "0c7e0a79-34eb-4a21-a8d3-79d3151d8f5e", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:15.8804058+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:16.0210524+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"ds5224311ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/ds5224311ff\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:24:15.8960404+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"c8206342-9005-4716-9a80-924a8851a7e6\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": \"755c61ea-b5eb-48b5-9a5d-c931851e1699\"\r\n}", - "x-ms-client-request-id" : "be0a6304-5a40-4e6e-9c8c-a5904fa7f385", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/ds5224311ff?api-version=2022-07-02", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9629c597-84b3-4221-be59-08fd920dc7e2" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-served-by" : "ce96b30d-0275-4436-80e4-d93926dd88a7_132540869509624272", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11824", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:17 GMT", - "x-ms-correlation-request-id" : "bb981113-ad0f-4168-8f74-e63a7fdf02f4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172418Z:bb981113-ad0f-4168-8f74-e63a7fdf02f4", - "Expires" : "-1", - "Content-Length" : "857", - "x-ms-request-id" : "8b4f8f8c-2b91-4cd6-b192-229f26d32e45", - "Body" : "{\r\n \"name\": \"ds5224311ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/ds5224311ff\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-29T17:24:15.8960404+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 107374182400,\r\n \"uniqueId\": \"c8206342-9005-4716-9a80-924a8851a7e6\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", - "x-ms-client-request-id" : "9629c597-84b3-4221-be59-08fd920dc7e2", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv49985c2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "944a7f1d-0d2e-4468-bdfe-e88b63a4db01", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:19 GMT", - "x-ms-correlation-request-id" : "3d996209-2cb6-447d-ab59-a13c760a0148", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172420Z:3d996209-2cb6-447d-ab59-a13c760a0148", - "Expires" : "-1", - "Content-Length" : "224", - "x-ms-request-id" : "3d996209-2cb6-447d-ab59-a13c760a0148", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2\",\"name\":\"rgcomv49985c2\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"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/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "88fa40c2-8e1d-4040-9dea-63cbc7335635", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:27 GMT", - "x-ms-correlation-request-id" : "0206d492-4005-4257-8e56-c6b13566bce0", - "x-ms-arm-service-request-id" : "215b27ad-411f-4eb4-b7fa-bd5eae2c7c7e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172428Z:0206d492-4005-4257-8e56-c6b13566bce0", - "Expires" : "-1", - "Content-Length" : "1341", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/76a057ae-6d43-4ba8-a735-14c7ffec7b5b?api-version=2023-02-01", - "x-ms-request-id" : "76a057ae-6d43-4ba8-a735-14c7ffec7b5b", - "Body" : "{\r\n \"name\": \"vnet37516e3572\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572\",\r\n \"etag\": \"W/\\\"a0a3d8c7-8a9c-4cff-9f16-382e26f67b11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a84b4f3e-5e05-402f-9e2f-e93090740d13\",\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/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a0a3d8c7-8a9c-4cff-9f16-382e26f67b11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "88fa40c2-8e1d-4040-9dea-63cbc7335635", - "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/eastus2/operations/76a057ae-6d43-4ba8-a735-14c7ffec7b5b?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "81e859f9-42d9-48c9-bf94-0473034e5ed4" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:30 GMT", - "x-ms-correlation-request-id" : "5f0285d6-a055-4966-b4c6-39106d971153", - "x-ms-arm-service-request-id" : "33030d6d-4a23-4b8c-b472-7bcb444f9cd8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172431Z:5f0285d6-a055-4966-b4c6-39106d971153", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "e234f3d4-abda-4950-bfd5-50a0934fca56", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "81e859f9-42d9-48c9-bf94-0473034e5ed4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "542289ce-85e7-4230-b605-3523206544c9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11817", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:31 GMT", - "x-ms-correlation-request-id" : "48f4d3ff-f986-436e-9cd6-f96fc33fd892", - "x-ms-arm-service-request-id" : "2d023bcd-eef9-4037-b530-ba7df2cb8962", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"88173c3c-78f5-4c80-b620-b0b6180234eb\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172431Z:48f4d3ff-f986-436e-9cd6-f96fc33fd892", - "Expires" : "-1", - "Content-Length" : "1343", - "x-ms-request-id" : "fcde8fc9-060c-4282-9686-6f1bdbc3ae62", - "Body" : "{\r\n \"name\": \"vnet37516e3572\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572\",\r\n \"etag\": \"W/\\\"88173c3c-78f5-4c80-b620-b0b6180234eb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a84b4f3e-5e05-402f-9e2f-e93090740d13\",\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/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572/subnets/subnet1\",\r\n \"etag\": \"W/\\\"88173c3c-78f5-4c80-b620-b0b6180234eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "542289ce-85e7-4230-b605-3523206544c9", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic995282bca91?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c31647ae-6204-480e-8b03-c70f1d22a3b1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:39 GMT", - "x-ms-correlation-request-id" : "5a2fef17-7502-4480-9dc5-6f1a8b90dd26", - "x-ms-arm-service-request-id" : "4c0b494d-073e-4934-a0f1-856af8f556f8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172439Z:5a2fef17-7502-4480-9dc5-6f1a8b90dd26", - "Expires" : "-1", - "Content-Length" : "1868", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/43a06092-cfd5-4790-84e6-bff4ea3ef7e4?api-version=2023-02-01", - "x-ms-request-id" : "43a06092-cfd5-4790-84e6-bff4ea3ef7e4", - "Body" : "{\r\n \"name\": \"nic995282bca91\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic995282bca91\",\r\n \"etag\": \"W/\\\"968a1d05-e5b2-47d4-9a9e-efd00bf3b77e\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b3c32cd-8a40-42c7-a8de-a5979a51ebdb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic995282bca91/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"968a1d05-e5b2-47d4-9a9e-efd00bf3b77e\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/publicIPAddresses/pip255547bf7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Network/virtualNetworks/vnet37516e3572/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\": \"hzhuxkaflyxubhrp3eyja3ancd.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-client-request-id" : "c31647ae-6204-480e-8b03-c70f1d22a3b1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm246490101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1abe0cef-9da4-4c6d-8b9a-b87acf00da4a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:24:47 GMT", - "x-ms-correlation-request-id" : "b44b402a-39f9-4ae7-9c05-829f2b94172e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;738,Microsoft.Compute/PutVM30Min;3716", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172447Z:b44b402a-39f9-4ae7-9c05-829f2b94172e", - "Expires" : "-1", - "Content-Length" : "2092", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b8b1e358-df6c-4f1c-9ec7-94114727dcea?api-version=2021-11-01", - "x-ms-request-id" : "b8b1e358-df6c-4f1c-9ec7-94114727dcea", - "Body" : "{\r\n \"name\": \"lvm246490101\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm246490101\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b2acff2e-17da-458b-8aaf-cb5093060df1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds5224311ff\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/ds5224311ff\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm246490101\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic995282bca91\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "1abe0cef-9da4-4c6d-8b9a-b87acf00da4a", - "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/eastus2/operations/b8b1e358-df6c-4f1c-9ec7-94114727dcea?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbebb859-1588-4435-8a62-785783a0fe11" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11775", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:57 GMT", - "x-ms-correlation-request-id" : "053e0d34-6cc9-458e-9d6d-790ade960f5d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172457Z:053e0d34-6cc9-458e-9d6d-790ade960f5d", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "8e1ebf1c-8b88-4ba5-b641-991d69f482df", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:45.886511+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b8b1e358-df6c-4f1c-9ec7-94114727dcea\"\r\n}", - "x-ms-client-request-id" : "bbebb859-1588-4435-8a62-785783a0fe11", - "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/eastus2/operations/b8b1e358-df6c-4f1c-9ec7-94114727dcea?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "370b8edb-b719-4dda-bd9d-a8c0636dec42" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11816", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:33 GMT", - "x-ms-correlation-request-id" : "33e2f17b-acd8-41fb-9773-cf7a5d21124a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172533Z:33e2f17b-acd8-41fb-9773-cf7a5d21124a", - "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "2db5806a-d66c-4522-9abd-76c8afdf0d30", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:24:45.886511+00:00\",\r\n \"endTime\": \"2021-01-29T17:25:10.9036681+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b8b1e358-df6c-4f1c-9ec7-94114727dcea\"\r\n}", - "x-ms-client-request-id" : "370b8edb-b719-4dda-bd9d-a8c0636dec42", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm246490101?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2a7459b-9a18-4c28-98ab-56acafb1becf" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11788", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:33 GMT", - "x-ms-correlation-request-id" : "50542ccd-d026-4ac8-a93d-3023bb41e446", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31975", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172533Z:50542ccd-d026-4ac8-a93d-3023bb41e446", - "Expires" : "-1", - "Content-Length" : "2358", - "x-ms-request-id" : "6a7454ed-a341-445d-8c21-169e364c1407", - "Body" : "{\r\n \"name\": \"lvm246490101\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/virtualMachines/lvm246490101\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b2acff2e-17da-458b-8aaf-cb5093060df1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202101190\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm246490101_OsDisk_1_ce53c5874eb34cb697975371b6c9c9fb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/lvm246490101_OsDisk_1_ce53c5874eb34cb697975371b6c9c9fb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"ds5224311ff\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv49985c2/providers/Microsoft.Compute/disks/ds5224311ff\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm246490101\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\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/rgcomv49985c2/providers/Microsoft.Network/networkInterfaces/nic995282bca91\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "c2a7459b-9a18-4c28-98ab-56acafb1becf", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv49985c2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd1c8f73-33a8-4c9f-9e4f-3f06edfd80e9", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:37 GMT", - "x-ms-correlation-request-id" : "961badd8-d96c-4b1a-85ff-0c86ec3cc1cf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172538Z:961badd8-d96c-4b1a-85ff-0c86ec3cc1cf", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "961badd8-d96c-4b1a-85ff-0c86ec3cc1cf", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY0OTk4NUMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcomv49985c2", "lvm195910815", "lvm246490101", "pip129748d05", "pip255547bf7", "ds5224311ff", "nic624465808ab", "vnet635132336e", "pip03500fba", "nic995282bca91", "vnet37516e3572" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachineScaleSet.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachineScaleSet.json deleted file mode 100644 index 084936ab4f86..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ComputeSampleTests.testManageZonalVirtualMachineScaleSet.json +++ /dev/null @@ -1,553 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv51667b6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c447600a-2854-4f38-824f-db4a276eaf86", - "Content-Type" : "application/json" - }, - "Response" : { - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:06 GMT", - "x-ms-correlation-request-id" : "b7aecc2f-fec1-44d9-ba0d-3590be60a7cf", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172206Z:b7aecc2f-fec1-44d9-ba0d-3590be60a7cf", - "Expires" : "-1", - "Content-Length" : "224", - "x-ms-request-id" : "b7aecc2f-fec1-44d9-ba0d-3590be60a7cf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6\",\"name\":\"rgcomv51667b6\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"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/rgcomv51667b6/providers/Microsoft.Network/publicIPAddresses/pip-extlb0495867?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "426efc34-98b9-4663-8eb0-6bc8951a85c1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:13 GMT", - "x-ms-correlation-request-id" : "4fce09da-4120-496a-bce7-d63b199c3b3c", - "x-ms-arm-service-request-id" : "02d7e726-ca8c-4271-bd50-39e5acd84da0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172213Z:4fce09da-4120-496a-bce7-d63b199c3b3c", - "Expires" : "-1", - "Content-Length" : "798", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8857ba76-8906-416b-aedd-8812c806fd54?api-version=2023-02-01", - "x-ms-request-id" : "8857ba76-8906-416b-aedd-8812c806fd54", - "Body" : "{\r\n \"name\": \"pip-extlb0495867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/publicIPAddresses/pip-extlb0495867\",\r\n \"etag\": \"W/\\\"a71a398b-6fb3-49c8-be01-96865001c492\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"515ed286-29f7-479b-b81f-1883ac4bc848\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-extlb0495867\",\r\n \"fqdn\": \"pip-extlb0495867.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "426efc34-98b9-4663-8eb0-6bc8951a85c1", - "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/eastus2/operations/8857ba76-8906-416b-aedd-8812c806fd54?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3825678d-52e9-4974-bfe4-a1803f2d59a1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:14 GMT", - "x-ms-correlation-request-id" : "8bb52b7e-9013-483f-9e4d-4341697d1ea8", - "x-ms-arm-service-request-id" : "726ebe6d-d85b-4be3-a059-eb62e9ade349", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:8bb52b7e-9013-483f-9e4d-4341697d1ea8", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "222dd1e7-a585-44d7-b143-fb2fe3a52755", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "3825678d-52e9-4974-bfe4-a1803f2d59a1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/publicIPAddresses/pip-extlb0495867?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7dfec57-1f4f-4817-a5cc-155815de289a" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:15 GMT", - "x-ms-correlation-request-id" : "5d0cfe0a-bfd5-44bf-8393-7c71a3545d3f", - "x-ms-arm-service-request-id" : "ae372d58-39d8-415c-b2ed-552d41b6a7f8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"1cec3982-32ba-45cf-8626-8a05b0511a07\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172215Z:5d0cfe0a-bfd5-44bf-8393-7c71a3545d3f", - "Expires" : "-1", - "Content-Length" : "832", - "x-ms-request-id" : "200d50a0-d71d-45f3-99de-34fe9b421ca4", - "Body" : "{\r\n \"name\": \"pip-extlb0495867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/publicIPAddresses/pip-extlb0495867\",\r\n \"etag\": \"W/\\\"1cec3982-32ba-45cf-8626-8a05b0511a07\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"515ed286-29f7-479b-b81f-1883ac4bc848\",\r\n \"ipAddress\": \"20.75.17.17\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-extlb0495867\",\r\n \"fqdn\": \"pip-extlb0495867.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "d7dfec57-1f4f-4817-a5cc-155815de289a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ff8b99d-cc0c-4816-97df-aa4b151bb40a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "811364e2-31d6-49f7-84f8-2fa17c74b8d1", - "x-ms-arm-service-request-id" : "4b9fbb08-86a4-4ebc-a525-6487e3394c99", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172223Z:811364e2-31d6-49f7-84f8-2fa17c74b8d1", - "Expires" : "-1", - "Content-Length" : "10946", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/192512bb-0245-4711-942a-81b57884d1a8?api-version=2023-02-01", - "x-ms-request-id" : "192512bb-0245-4711-942a-81b57884d1a8", - "Body" : "{\r\n \"name\": \"extlb0495867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ac67888-2e98-4c22-a30b-2bab83872941\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb0495867-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/publicIPAddresses/pip-extlb0495867\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP2\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb0495867-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP1\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancerBackendAddresses\": [],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"extlb0495867-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP2\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancerBackendAddresses\": [],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"disableOutboundSnat\": false,\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"disableOutboundSnat\": false,\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpProbe\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb0495867-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP1\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"extlb0495867-INP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP2\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "0ff8b99d-cc0c-4816-97df-aa4b151bb40a", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7b8aafd-6d41-4190-b252-6922207064d4", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:23 GMT", - "x-ms-correlation-request-id" : "a50af0fc-ebaa-4226-873a-722110864c3d", - "x-ms-arm-service-request-id" : "8872d1ac-fed7-4d70-b151-26a9442bbfde", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"9c55a959-39a4-483f-9c81-545abe942097\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172224Z:a50af0fc-ebaa-4226-873a-722110864c3d", - "Expires" : "-1", - "Content-Length" : "10946", - "x-ms-request-id" : "c4e010f9-2425-4914-9bde-3b3a988bcfd9", - "Body" : "{\r\n \"name\": \"extlb0495867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ac67888-2e98-4c22-a30b-2bab83872941\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"extlb0495867-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/publicIPAddresses/pip-extlb0495867\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP2\"\r\n }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"extlb0495867-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP1\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancerBackendAddresses\": [],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"extlb0495867-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP2\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancerBackendAddresses\": [],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"disableOutboundSnat\": false,\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"disableOutboundSnat\": false,\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpProbe\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"extlb0495867-INP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP1\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"extlb0495867-INP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP2\",\r\n \"etag\": \"W/\\\"9c55a959-39a4-483f-9c81-545abe942097\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/frontendIPConfigurations/extlb0495867-FE1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "x-ms-client-request-id" : "c7b8aafd-6d41-4190-b252-6922207064d4", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ea2bdae-aee8-41d4-962f-78ef13996008", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:31 GMT", - "x-ms-correlation-request-id" : "f3cf83e0-99ed-4b45-b605-83ea6fe3d2e8", - "x-ms-arm-service-request-id" : "6a8636d4-d483-42f7-ac98-74a7abe9b6a2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172231Z:f3cf83e0-99ed-4b45-b605-83ea6fe3d2e8", - "Expires" : "-1", - "Content-Length" : "1323", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/ce264d8e-accf-43dd-a22e-c03574a9df93?api-version=2023-02-01", - "x-ms-request-id" : "ce264d8e-accf-43dd-a22e-c03574a9df93", - "Body" : "{\r\n \"name\": \"vmssvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet\",\r\n \"etag\": \"W/\\\"cbe33e25-cb9b-479e-8f24-5b6f0a70f4d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cb52901a-7edf-4018-bc02-8ba7c7baa5d0\",\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/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cbe33e25-cb9b-479e-8f24-5b6f0a70f4d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "2ea2bdae-aee8-41d4-962f-78ef13996008", - "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/eastus2/operations/ce264d8e-accf-43dd-a22e-c03574a9df93?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd203b31-d00e-4ffe-acc2-64552a0a6ad1" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:34 GMT", - "x-ms-correlation-request-id" : "4e439eb9-2dd2-4003-b2d4-d8646711609b", - "x-ms-arm-service-request-id" : "a51612f0-06bd-49b5-8270-39acd5f8521e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172235Z:4e439eb9-2dd2-4003-b2d4-d8646711609b", - "Expires" : "-1", - "Content-Length" : "29", - "x-ms-request-id" : "2a4baa59-34c9-409f-b425-23b45e3753cf", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "bd203b31-d00e-4ffe-acc2-64552a0a6ad1", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2d9f3d2-72df-491d-aeb3-2d41afc5f779" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:34 GMT", - "x-ms-correlation-request-id" : "9c156fb8-9dd1-4d31-8002-e2f11280afca", - "x-ms-arm-service-request-id" : "5254d61e-a160-4c58-9a27-444a10d2f81b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "W/\"3ff06a0b-9928-4298-949d-8b82ed0cde25\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172235Z:9c156fb8-9dd1-4d31-8002-e2f11280afca", - "Expires" : "-1", - "Content-Length" : "1325", - "x-ms-request-id" : "25c3ccf0-ad52-460a-a13a-67ba989ef9b0", - "Body" : "{\r\n \"name\": \"vmssvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet\",\r\n \"etag\": \"W/\\\"3ff06a0b-9928-4298-949d-8b82ed0cde25\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb52901a-7edf-4018-bc02-8ba7c7baa5d0\",\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/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3ff06a0b-9928-4298-949d-8b82ed0cde25\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "x-ms-client-request-id" : "f2d9f3d2-72df-491d-aeb3-2d41afc5f779", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/virtualNetworkPeerings?api-version=2023-02-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "13eecef5-a50f-449e-85b8-4b836d935558", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:35 GMT", - "x-ms-correlation-request-id" : "06a8790a-4db8-4a52-9890-2f38df3d9600", - "x-ms-arm-service-request-id" : "8e805354-e191-415b-b463-c6741b878288", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172235Z:06a8790a-4db8-4a52-9890-2f38df3d9600", - "Expires" : "-1", - "Content-Length" : "19", - "x-ms-request-id" : "488a4cfc-840c-4618-a2a9-bd942e509435", - "Body" : "{\r\n \"value\": []\r\n}", - "x-ms-client-request-id" : "13eecef5-a50f-449e-85b8-4b836d935558", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1360781d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25a94b77-23bb-4528-a9dd-29ef0f969492", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "4", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:22:39 GMT", - "x-ms-correlation-request-id" : "7fbe0941-9aec-4334-b13f-d313173c7339", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;178,Microsoft.Compute/CreateVMScaleSet30Min;901,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3603,Microsoft.Compute/VmssQueuedVMOperations;4796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172239Z:7fbe0941-9aec-4334-b13f-d313173c7339", - "Expires" : "-1", - "Content-Length" : "2528", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/abb94918-72ea-486c-8fae-bb3dfc8e2c84?api-version=2021-11-01", - "x-ms-request-id" : "abb94918-72ea-486c-8fae-bb3dfc8e2c84", - "Body" : "{\r\n \"name\": \"vmss1360781d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1360781d\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss1360781d-vm\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"76792553-c05c-4aaa-8a38-bf4250451e21\",\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "25a94b77-23bb-4528-a9dd-29ef0f969492", - "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/eastus2/operations/abb94918-72ea-486c-8fae-bb3dfc8e2c84?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d418c3dd-402f-49d7-ab11-9799b854a1a9" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:22:50 GMT", - "x-ms-correlation-request-id" : "dc8564b8-c1c0-4968-8324-a7120d43c8dd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172250Z:dc8564b8-c1c0-4968-8324-a7120d43c8dd", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "f92c1b1a-dd6f-45ec-b362-8166b2e54084", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:38.0189879+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"abb94918-72ea-486c-8fae-bb3dfc8e2c84\"\r\n}", - "x-ms-client-request-id" : "d418c3dd-402f-49d7-ab11-9799b854a1a9", - "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/eastus2/operations/abb94918-72ea-486c-8fae-bb3dfc8e2c84?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4c69fa3-7afd-4abf-ace6-5504921c7f40" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11841", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:50 GMT", - "x-ms-correlation-request-id" : "56ae55b3-608f-4cc3-8cbe-3a5d5607c4c3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172351Z:56ae55b3-608f-4cc3-8cbe-3a5d5607c4c3", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "eca391df-fc08-46cb-9205-bfa55cec48db", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:22:38.0189879+00:00\",\r\n \"endTime\": \"2021-01-29T17:23:27.3658677+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"abb94918-72ea-486c-8fae-bb3dfc8e2c84\"\r\n}", - "x-ms-client-request-id" : "b4c69fa3-7afd-4abf-ace6-5504921c7f40", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1360781d?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2a65479-bbaa-44dd-a777-4091229d1d3c" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11859", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:23:51 GMT", - "x-ms-correlation-request-id" : "01adefc3-095e-44f5-9167-d6b2edc40b82", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1296", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172351Z:01adefc3-095e-44f5-9167-d6b2edc40b82", - "Expires" : "-1", - "Content-Length" : "2529", - "x-ms-request-id" : "81ea72e8-ef8d-477c-a50b-5679291fd663", - "Body" : "{\r\n \"name\": \"vmss1360781d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1360781d\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss1360781d-vm\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP1\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP1\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"76792553-c05c-4aaa-8a38-bf4250451e21\",\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "d2a65479-bbaa-44dd-a777-4091229d1d3c", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss238251f8?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8e86a8b-8844-4811-9b9b-d51d312fbe5a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "4", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 29 Jan 2021 17:23:55 GMT", - "x-ms-correlation-request-id" : "bb924577-49ad-4f78-9d92-62aaa0bf167c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;183,Microsoft.Compute/CreateVMScaleSet30Min;931,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;3700,Microsoft.Compute/VmssQueuedVMOperations;4796", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172355Z:bb924577-49ad-4f78-9d92-62aaa0bf167c", - "Expires" : "-1", - "Content-Length" : "2528", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/171c0f0e-0950-456e-8514-7e0ef02c37fe?api-version=2021-11-01", - "x-ms-request-id" : "171c0f0e-0950-456e-8514-7e0ef02c37fe", - "Body" : "{\r\n \"name\": \"vmss238251f8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss238251f8\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss238251f8-vm\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP2\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"902cb45f-8527-419b-a225-c6d2eb028c1f\",\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "a8e86a8b-8844-4811-9b9b-d51d312fbe5a", - "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/eastus2/operations/171c0f0e-0950-456e-8514-7e0ef02c37fe?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "84ac32f4-399f-4457-9d83-fabc94b4f850" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11848", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:24:05 GMT", - "x-ms-correlation-request-id" : "2d09ad7a-949f-4530-b587-dcab0cef8e16", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172406Z:2d09ad7a-949f-4530-b587-dcab0cef8e16", - "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "ce217f07-17f1-4cac-8af0-696ef4bb4cf4", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:53.8675796+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"171c0f0e-0950-456e-8514-7e0ef02c37fe\"\r\n}", - "x-ms-client-request-id" : "84ac32f4-399f-4457-9d83-fabc94b4f850", - "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/eastus2/operations/171c0f0e-0950-456e-8514-7e0ef02c37fe?api-version=2021-11-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "877e9622-d4f7-4cff-997f-4c437397a2fc" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11796", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:06 GMT", - "x-ms-correlation-request-id" : "873f201b-10a3-4137-b20c-6254012daab2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172507Z:873f201b-10a3-4137-b20c-6254012daab2", - "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "3b495367-8afa-4f4e-b47a-0b3bc856f05a", - "Body" : "{\r\n \"startTime\": \"2021-01-29T17:23:53.8675796+00:00\",\r\n \"endTime\": \"2021-01-29T17:24:40.0423819+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"171c0f0e-0950-456e-8514-7e0ef02c37fe\"\r\n}", - "x-ms-client-request-id" : "877e9622-d4f7-4cff-997f-4c437397a2fc", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss238251f8?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "389309f4-4c1f-4321-847b-c42f137495b6" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11881", - "StatusCode" : "200", - "Date" : "Fri, 29 Jan 2021 17:25:07 GMT", - "x-ms-correlation-request-id" : "63dde868-f0cf-4317-89b9-2f5609c6904f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;192,Microsoft.Compute/GetVMScaleSet30Min;1292", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172507Z:63dde868-f0cf-4317-89b9-2f5609c6904f", - "Expires" : "-1", - "Content-Length" : "2529", - "x-ms-request-id" : "d4a174f9-eba1-47b2-b398-7c4a8061d96f", - "Body" : "{\r\n \"name\": \"vmss238251f8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Compute/virtualMachineScaleSets/vmss238251f8\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss238251f8-vm\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"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\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/backendAddressPools/extlb0495867-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv51667b6/providers/Microsoft.Network/loadBalancers/extlb0495867/inboundNatPools/extlb0495867-INP2\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"902cb45f-8527-419b-a225-c6d2eb028c1f\",\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "x-ms-client-request-id" : "389309f4-4c1f-4321-847b-c42f137495b6", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv51667b6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb0660cb-e0cb-482d-8664-786f52c67565", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 29 Jan 2021 17:25:11 GMT", - "x-ms-correlation-request-id" : "27a8401f-e442-42cd-a26d-69301ee146e0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210129T172512Z:27a8401f-e442-42cd-a26d-69301ee146e0", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "27a8401f-e442-42cd-a26d-69301ee146e0", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY1MTY2N0I2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgcomv51667b6", "extlb0495867", "vmss1360781d", "vmss238251f8" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithAzureFileShareMount.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithAzureFileShareMount.json deleted file mode 100644 index 27254bf36ccc..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithAzureFileShareMount.json +++ /dev/null @@ -1,393 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci5dd81710c?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:15 GMT", - "content-length" : "309", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9b2cbaa4-5208-42ea-a59a-b4d91d971429", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032916Z:9b2cbaa4-5208-42ea-a59a-b4d91d971429", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9b2cbaa4-5208-42ea-a59a-b4d91d971429", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c\",\"name\":\"rgaci5dd81710c\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2019-10-17T03:29:12.134Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:18 GMT", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5cf86a5-2337-4a0a-8b78-312c8fc19fb1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032919Z:c5cf86a5-2337-4a0a-8b78-312c8fc19fb1", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/450e87bd-ce5c-4c23-9c1d-10a2935028eb?monitor=true&api-version=2018-11-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "450e87bd-ce5c-4c23-9c1d-10a2935028eb", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/450e87bd-ce5c-4c23-9c1d-10a2935028eb?monitor=true&api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:18 GMT", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57e05ec4-9dfc-4768-9178-9222ae06aad9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032919Z:57e05ec4-9dfc-4768-9178-9222ae06aad9", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/450e87bd-ce5c-4c23-9c1d-10a2935028eb?monitor=true&api-version=2018-11-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5757a597-4fc0-4b60-9eb0-bdcbf5944a3b", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/450e87bd-ce5c-4c23-9c1d-10a2935028eb?monitor=true&api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:36 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1127", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03aa31e7-390c-4ec1-8b9a-e2e448b77366", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032937Z:03aa31e7-390c-4ec1-8b9a-e2e448b77366", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "fa186e75-78a6-452e-a40a-37655f47ba19", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6\",\"name\":\"fs0be57634eca9dd6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:29:18.5350679Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:29:18.5350679Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-17T03:29:18.4725937Z\",\"primaryEndpoints\":{\"blob\":\"https://fs0be57634eca9dd6.blob.core.windows.net/\",\"queue\":\"https://fs0be57634eca9dd6.queue.core.windows.net/\",\"table\":\"https://fs0be57634eca9dd6.table.core.windows.net/\",\"file\":\"https://fs0be57634eca9dd6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:37 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1127", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "82f9b37b-3b19-4f7a-855c-10d77ee30687", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032937Z:82f9b37b-3b19-4f7a-855c-10d77ee30687", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "ad8ee51d-9571-4c83-8b71-d7bffcf897c4", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6\",\"name\":\"fs0be57634eca9dd6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:29:18.5350679Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:29:18.5350679Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-17T03:29:18.4725937Z\",\"primaryEndpoints\":{\"blob\":\"https://fs0be57634eca9dd6.blob.core.windows.net/\",\"queue\":\"https://fs0be57634eca9dd6.queue.core.windows.net/\",\"table\":\"https://fs0be57634eca9dd6.table.core.windows.net/\",\"file\":\"https://fs0be57634eca9dd6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6/listKeys?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:37 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ef4603b6-68e7-4234-8560-d456af12a598", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032937Z:ef4603b6-68e7-4234-8560-d456af12a598", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "da9b2815-8ee9-4610-b137-2c9b2f5c0f0b", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:46 GMT", - "content-length" : "1006", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75ebe8d7-6e5b-4f8f-a868-9b13ca73deff", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "299", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "99", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032946Z:75ebe8d7-6e5b-4f8f-a868-9b13ca73deff", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:6f55560d-3fc8-41c7-bf2b-bbf08b774c94", - "Body" : "{\"properties\":{\"provisioningState\":\"Pending\",\"containers\":[{\"name\":\"acisamplec0795467e\",\"properties\":{\"image\":\"seanmckenna/aci-hellofiles\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}},\"volumeMounts\":[{\"name\":\"aci-helloshare\",\"mountPath\":\"/aci/logs/\",\"readOnly\":false}]}}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"20.189.143.81\",\"type\":\"Public\",\"dnsNameLabel\":\"acisamplec0795467e\",\"fqdn\":\"acisamplec0795467e.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"volumes\":[{\"name\":\"aci-helloshare\",\"azureFile\":{\"shareName\":\"fileshare2ab99151a\",\"readOnly\":false,\"storageAccountName\":\"fs0be57634eca9dd6\"}}],\"instanceView\":{\"events\":[],\"state\":\"Pending\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e\",\"name\":\"acisamplec0795467e\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/6f55560d-3fc8-41c7-bf2b-bbf08b774c94?api-version=2018-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/6f55560d-3fc8-41c7-bf2b-bbf08b774c94?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:29:47 GMT", - "content-length" : "252", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1180aa3-4a59-4a44-8f30-c09a68cfbd5b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T032947Z:a1180aa3-4a59-4a44-8f30-c09a68cfbd5b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:47cad93e-1519-474c-9d0b-784e418a150b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e\",\"status\":\"Pending\",\"startTime\":\"2019-10-17T03:29:46.0621059Z\",\"properties\":{\"events\":[]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/6f55560d-3fc8-41c7-bf2b-bbf08b774c94?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:30:17 GMT", - "content-length" : "934", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df4cdb41-6496-4959-b762-aaead786bb2c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033018Z:df4cdb41-6496-4959-b762-aaead786bb2c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:0c6cb804-c651-4d1c-86d9-90be35cef00f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e\",\"status\":\"Succeeded\",\"startTime\":\"2019-10-17T03:29:46.0621059Z\",\"properties\":{\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:51Z\",\"lastTimestamp\":\"2019-10-17T03:29:51Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:56Z\",\"lastTimestamp\":\"2019-10-17T03:29:56Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:59Z\",\"lastTimestamp\":\"2019-10-17T03:29:59Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:59Z\",\"lastTimestamp\":\"2019-10-17T03:29:59Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:30:17 GMT", - "content-length" : "1822", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c04b141-0cd6-4dfa-a739-e852a364bb8b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033018Z:3c04b141-0cd6-4dfa-a739-e852a364bb8b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:a51d095e-7436-461c-b424-6039a212fde6", - "Body" : "{\"properties\":{\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisamplec0795467e\",\"properties\":{\"image\":\"seanmckenna/aci-hellofiles\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2019-10-17T03:29:59Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:51Z\",\"lastTimestamp\":\"2019-10-17T03:29:51Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:56Z\",\"lastTimestamp\":\"2019-10-17T03:29:56Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:59Z\",\"lastTimestamp\":\"2019-10-17T03:29:59Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:59Z\",\"lastTimestamp\":\"2019-10-17T03:29:59Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}},\"volumeMounts\":[{\"name\":\"aci-helloshare\",\"mountPath\":\"/aci/logs/\",\"readOnly\":false}]}}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"20.189.143.81\",\"type\":\"Public\",\"dnsNameLabel\":\"acisamplec0795467e\",\"fqdn\":\"acisamplec0795467e.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"volumes\":[{\"name\":\"aci-helloshare\",\"azureFile\":{\"shareName\":\"fileshare2ab99151a\",\"readOnly\":false,\"storageAccountName\":\"fs0be57634eca9dd6\"}}],\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e\",\"name\":\"acisamplec0795467e\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e/containers/acisamplec0795467e/logs?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:31:06 GMT", - "content-length" : "43", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "598d90ab-3954-42d3-9161-f06becb3c7ed", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033107Z:598d90ab-3954-42d3-9161-f06becb3c7ed", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:6b28f0a1-4a97-42ce-8f59-de5709cab475", - "Body" : "{\"content\":\"listening on port undefined\\n\"}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:31:07 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1127", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "439f87f2-79db-495c-8e54-bcce2834ab32", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033108Z:439f87f2-79db-495c-8e54-bcce2834ab32", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "99b08e0f-6152-411e-a48e-b4b35a3ec511", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6\",\"name\":\"fs0be57634eca9dd6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:29:18.5350679Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:29:18.5350679Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-17T03:29:18.4725937Z\",\"primaryEndpoints\":{\"blob\":\"https://fs0be57634eca9dd6.blob.core.windows.net/\",\"queue\":\"https://fs0be57634eca9dd6.queue.core.windows.net/\",\"table\":\"https://fs0be57634eca9dd6.table.core.windows.net/\",\"file\":\"https://fs0be57634eca9dd6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.Storage/storageAccounts/fs0be57634eca9dd6/listKeys?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:31:07 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18126070-5e64-470f-9ef2-c840309a4cc9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033108Z:18126070-5e64-470f-9ef2-c840309a4cc9", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "10dc1aa9-079b-4cd1-8e9f-ce73206c9226", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:31:12 GMT", - "content-length" : "1822", - "expires" : "-1", - "transfer-encoding" : "chunked", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c448460f-48ea-4993-98dc-1f5699746873", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "299", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "99", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033113Z:c448460f-48ea-4993-98dc-1f5699746873", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:d04efe81-df26-4454-b8c2-93996574eac1", - "Body" : "{\"properties\":{\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisamplec0795467e\",\"properties\":{\"image\":\"seanmckenna/aci-hellofiles\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2019-10-17T03:29:59Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:51Z\",\"lastTimestamp\":\"2019-10-17T03:29:51Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:56Z\",\"lastTimestamp\":\"2019-10-17T03:29:56Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:59Z\",\"lastTimestamp\":\"2019-10-17T03:29:59Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:29:59Z\",\"lastTimestamp\":\"2019-10-17T03:29:59Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}},\"volumeMounts\":[{\"name\":\"aci-helloshare\",\"mountPath\":\"/aci/logs/\",\"readOnly\":false}]}}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"20.189.143.81\",\"type\":\"Public\",\"dnsNameLabel\":\"acisamplec0795467e\",\"fqdn\":\"acisamplec0795467e.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"volumes\":[{\"name\":\"aci-helloshare\",\"azureFile\":{\"shareName\":\"fileshare2ab99151a\",\"readOnly\":false,\"storageAccountName\":\"fs0be57634eca9dd6\"}}],\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci5dd81710c/providers/Microsoft.ContainerInstance/containerGroups/acisamplec0795467e\",\"name\":\"acisamplec0795467e\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci5dd81710c?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:31:17 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9556833-ac96-491e-9588-ae900586784c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033118Z:b9556833-ac96-491e-9588-ae900586784c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTVERDgxNzEwQy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b9556833-ac96-491e-9588-ae900586784c", - "Body" : "" - } - } ], - "variables" : [ "rgaci5dd81710c", "acisamplec0795467e", "fileshare2ab99151a", "714404c8-60da-4b85-9de1-ec49a115f503", "47a29aae-41ea-440d-b084-c8af0919b3ec", "fs0be57634eca9dd6", "eee542ba-84ef-4375-a10b-b01e69707dae", "27fbc142-1aed-4799-b317-edc7a9af707f" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithManualAzureFileShareMountCreation.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithManualAzureFileShareMountCreation.json deleted file mode 100644 index eb2bc64b0d8a..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithManualAzureFileShareMountCreation.json +++ /dev/null @@ -1,364 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci40453132a?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:14 GMT", - "content-length" : "309", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aafb8b4c-ab46-4ed1-b93d-f50386ab17d8", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033814Z:aafb8b4c-ab46-4ed1-b93d-f50386ab17d8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "aafb8b4c-ab46-4ed1-b93d-f50386ab17d8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a\",\"name\":\"rgaci40453132a\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2019-10-17T03:38:10.598Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.Storage/storageAccounts/sa8ba09533dfdd0?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:17 GMT", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48903a80-1fa0-4098-b42f-0c834243f94f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033817Z:48903a80-1fa0-4098-b42f-0c834243f94f", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/878c42c9-759d-42cf-8ae6-0a93dad9fc73?monitor=true&api-version=2018-11-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "878c42c9-759d-42cf-8ae6-0a93dad9fc73", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/878c42c9-759d-42cf-8ae6-0a93dad9fc73?monitor=true&api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:17 GMT", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2bd4035-09d5-4ad1-85a7-619d6ea343dc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033818Z:f2bd4035-09d5-4ad1-85a7-619d6ea343dc", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/878c42c9-759d-42cf-8ae6-0a93dad9fc73?monitor=true&api-version=2018-11-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "7ae4ed01-d54f-45fc-a0cd-2dfca9be3c6d", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/878c42c9-759d-42cf-8ae6-0a93dad9fc73?monitor=true&api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:34 GMT", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1c9e1c56-915d-4839-8960-948c93b4e16f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033835Z:1c9e1c56-915d-4839-8960-948c93b4e16f", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/878c42c9-759d-42cf-8ae6-0a93dad9fc73?monitor=true&api-version=2018-11-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1d62f4e0-1ce7-4b80-ab7b-75051c57ff15", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/878c42c9-759d-42cf-8ae6-0a93dad9fc73?monitor=true&api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:38 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1115", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97361fbb-d7dc-4a22-8a1e-96dd54b06df9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033838Z:97361fbb-d7dc-4a22-8a1e-96dd54b06df9", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "b83f58a2-adb1-41f4-b5bf-67a85ce9edf4", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.Storage/storageAccounts/sa8ba09533dfdd0\",\"name\":\"sa8ba09533dfdd0\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:38:17.1279407Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:38:17.1279407Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-17T03:38:17.0497655Z\",\"primaryEndpoints\":{\"blob\":\"https://sa8ba09533dfdd0.blob.core.windows.net/\",\"queue\":\"https://sa8ba09533dfdd0.queue.core.windows.net/\",\"table\":\"https://sa8ba09533dfdd0.table.core.windows.net/\",\"file\":\"https://sa8ba09533dfdd0.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.Storage/storageAccounts/sa8ba09533dfdd0?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:38 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1115", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d9f7ddc-31db-4923-b88f-36e3e58e8068", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033838Z:5d9f7ddc-31db-4923-b88f-36e3e58e8068", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "596ce4f7-9a70-41ab-b6da-b93c142459ad", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.Storage/storageAccounts/sa8ba09533dfdd0\",\"name\":\"sa8ba09533dfdd0\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:38:17.1279407Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2019-10-17T03:38:17.1279407Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-10-17T03:38:17.0497655Z\",\"primaryEndpoints\":{\"blob\":\"https://sa8ba09533dfdd0.blob.core.windows.net/\",\"queue\":\"https://sa8ba09533dfdd0.queue.core.windows.net/\",\"table\":\"https://sa8ba09533dfdd0.table.core.windows.net/\",\"file\":\"https://sa8ba09533dfdd0.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.Storage/storageAccounts/sa8ba09533dfdd0/listKeys?api-version=2018-11-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (StorageManagementClient, 2018-11-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:38 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3a5a928-4700-4cb3-928c-0df67a2c5c52", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033839Z:d3a5a928-4700-4cb3-928c-0df67a2c5c52", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "4af2e495-961a-4085-8a7a-173dae68a6c5", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:46 GMT", - "content-length" : "1002", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63d19978-3f4f-4c51-84b0-1314df8b18a4", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "298", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "99", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033846Z:63d19978-3f4f-4c51-84b0-1314df8b18a4", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:58105f30-8f0f-47a5-9743-d4486d6f743a", - "Body" : "{\"properties\":{\"provisioningState\":\"Pending\",\"containers\":[{\"name\":\"acisample6bf700152\",\"properties\":{\"image\":\"seanmckenna/aci-hellofiles\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}},\"volumeMounts\":[{\"name\":\"aci-helloshare\",\"mountPath\":\"/aci/logs/\",\"readOnly\":false}]}}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"13.83.23.32\",\"type\":\"Public\",\"dnsNameLabel\":\"acisample6bf700152\",\"fqdn\":\"acisample6bf700152.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"volumes\":[{\"name\":\"aci-helloshare\",\"azureFile\":{\"shareName\":\"fileshare65a35616d\",\"readOnly\":false,\"storageAccountName\":\"sa8ba09533dfdd0\"}}],\"instanceView\":{\"events\":[],\"state\":\"Pending\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152\",\"name\":\"acisample6bf700152\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/58105f30-8f0f-47a5-9743-d4486d6f743a?api-version=2018-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/58105f30-8f0f-47a5-9743-d4486d6f743a?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:47 GMT", - "content-length" : "252", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "607412e2-f401-44f9-9cf4-b93c12454612", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033848Z:607412e2-f401-44f9-9cf4-b93c12454612", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:84472730-b0eb-468a-9f85-05fa5ed19f99", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152\",\"status\":\"Pending\",\"startTime\":\"2019-10-17T03:38:46.2935563Z\",\"properties\":{\"events\":[]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/58105f30-8f0f-47a5-9743-d4486d6f743a?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:17 GMT", - "content-length" : "934", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6dfa2d75-0c3e-4716-b65f-e72641511cf0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033918Z:6dfa2d75-0c3e-4716-b65f-e72641511cf0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:f3b0a78f-0247-47c6-8c56-a00065ec909a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152\",\"status\":\"Succeeded\",\"startTime\":\"2019-10-17T03:38:46.2935563Z\",\"properties\":{\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:38:52Z\",\"lastTimestamp\":\"2019-10-17T03:38:52Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:00Z\",\"lastTimestamp\":\"2019-10-17T03:39:00Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:01Z\",\"lastTimestamp\":\"2019-10-17T03:39:01Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:02Z\",\"lastTimestamp\":\"2019-10-17T03:39:02Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:17 GMT", - "content-length" : "1818", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98e99a77-6ae6-4352-9cb1-a8158d989c10", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033918Z:98e99a77-6ae6-4352-9cb1-a8158d989c10", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:e1ffb02a-2a53-4d7f-8965-4f67a0dc5d10", - "Body" : "{\"properties\":{\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisample6bf700152\",\"properties\":{\"image\":\"seanmckenna/aci-hellofiles\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2019-10-17T03:39:02Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:38:52Z\",\"lastTimestamp\":\"2019-10-17T03:38:52Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:00Z\",\"lastTimestamp\":\"2019-10-17T03:39:00Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:01Z\",\"lastTimestamp\":\"2019-10-17T03:39:01Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:02Z\",\"lastTimestamp\":\"2019-10-17T03:39:02Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}},\"volumeMounts\":[{\"name\":\"aci-helloshare\",\"mountPath\":\"/aci/logs/\",\"readOnly\":false}]}}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"13.83.23.32\",\"type\":\"Public\",\"dnsNameLabel\":\"acisample6bf700152\",\"fqdn\":\"acisample6bf700152.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"volumes\":[{\"name\":\"aci-helloshare\",\"azureFile\":{\"shareName\":\"fileshare65a35616d\",\"readOnly\":false,\"storageAccountName\":\"sa8ba09533dfdd0\"}}],\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152\",\"name\":\"acisample6bf700152\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152/containers/acisample6bf700152/logs?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:36 GMT", - "content-length" : "43", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "be126c8e-fcfa-4605-929e-76cc17ba3710", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033936Z:be126c8e-fcfa-4605-929e-76cc17ba3710", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:fad4acdc-f715-484a-a7a9-000df88215d5", - "Body" : "{\"content\":\"listening on port undefined\\n\"}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:39 GMT", - "content-length" : "1818", - "expires" : "-1", - "transfer-encoding" : "chunked", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c34b485e-3507-42be-84d9-1e83ce52e4b7", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "297", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "99", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033939Z:c34b485e-3507-42be-84d9-1e83ce52e4b7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:055f90a3-52a3-4dd7-bfde-197f18a9981f", - "Body" : "{\"properties\":{\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisample6bf700152\",\"properties\":{\"image\":\"seanmckenna/aci-hellofiles\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2019-10-17T03:39:02Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:38:52Z\",\"lastTimestamp\":\"2019-10-17T03:38:52Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:00Z\",\"lastTimestamp\":\"2019-10-17T03:39:00Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"seanmckenna/aci-hellofiles\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:01Z\",\"lastTimestamp\":\"2019-10-17T03:39:01Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:39:02Z\",\"lastTimestamp\":\"2019-10-17T03:39:02Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}},\"volumeMounts\":[{\"name\":\"aci-helloshare\",\"mountPath\":\"/aci/logs/\",\"readOnly\":false}]}}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"13.83.23.32\",\"type\":\"Public\",\"dnsNameLabel\":\"acisample6bf700152\",\"fqdn\":\"acisample6bf700152.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"volumes\":[{\"name\":\"aci-helloshare\",\"azureFile\":{\"shareName\":\"fileshare65a35616d\",\"readOnly\":false,\"storageAccountName\":\"sa8ba09533dfdd0\"}}],\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci40453132a/providers/Microsoft.ContainerInstance/containerGroups/acisample6bf700152\",\"name\":\"acisample6bf700152\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci40453132a?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:44 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9dc234e8-4d32-4f54-b3f6-88d6a4d35c62", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033944Z:9dc234e8-4d32-4f54-b3f6-88d6a4d35c62", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTQwNDUzMTMyQS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "9dc234e8-4d32-4f54-b3f6-88d6a4d35c62", - "Body" : "" - } - } ], - "variables" : [ "rgaci40453132a", "acisample6bf700152", "sa8ba09533dfdd0", "fileshare65a35616d", "41431ec1-fe63-450b-ac5e-3deda8077149", "63c6b88e-0910-4f8d-8a69-d1fd08d9b632", "f447811b-578d-4654-bfd9-8795e7ba28ac" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithMultipleContainerImages.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithMultipleContainerImages.json deleted file mode 100644 index 8f6c926fa68c..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceWithMultipleContainerImages.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci9ef40856d?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-SNAPSHOT (1.8.0_231; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:32:52 GMT", - "content-length" : "309", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "80624354-f7e6-439a-a15a-4cc937e0c155", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053253Z:80624354-f7e6-439a-a15a-4cc937e0c155", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "80624354-f7e6-439a-a15a-4cc937e0c155", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d\",\"name\":\"rgaci9ef40856d\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-07-21T05:32:51.114Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480?api-version=2023-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerinstance/2.0.0-SNAPSHOT (1.8.0_231; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:33:06 GMT", - "content-length" : "1018", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "999", - "x-ms-correlation-request-id" : "5f4a671c-938a-4172-b20a-805b9acc81eb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "299", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053306Z:5f4a671c-938a-4172-b20a-805b9acc81eb", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:95afcedf-c490-4983-b75b-3430f65b60b4", - "Body" : "{\"properties\":{\"sku\":\"Standard\",\"provisioningState\":\"Pending\",\"containers\":[{\"name\":\"acisamplec67769480-1\",\"properties\":{\"image\":\"microsoft/aci-helloworld\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"resources\":{\"requests\":{\"memoryInGB\":0.8,\"cpu\":0.5}}}},{\"name\":\"acisamplec67769480-2\",\"properties\":{\"image\":\"microsoft/aci-tutorial-sidecar\",\"ports\":[],\"environmentVariables\":[],\"resources\":{\"requests\":{\"memoryInGB\":0.8,\"cpu\":0.5}}}}],\"initContainers\":[],\"restartPolicy\":\"Never\",\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"52.155.41.216\",\"type\":\"Public\",\"dnsNameLabel\":\"acisamplec67769480\",\"fqdn\":\"acisamplec67769480.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"instanceView\":{\"events\":[],\"state\":\"Pending\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480\",\"name\":\"acisamplec67769480\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/95afcedf-c490-4983-b75b-3430f65b60b4?api-version=2018-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/95afcedf-c490-4983-b75b-3430f65b60b4?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (1.8.0_231; Windows 10 10.0)" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:33:38 GMT", - "content-length" : "1619", - "expires" : "-1", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "67318ac2-7bbf-49a9-bad6-b92f4190f7af", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053338Z:67318ac2-7bbf-49a9-bad6-b92f4190f7af", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:01fbd4f4-4bd3-47f6-808f-94f30596dc8d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-21T05:33:05.4449464Z\",\"properties\":{\"events\":[{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:10Z\",\"lastTimestamp\":\"2020-07-21T05:33:10Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"microsoft/aci-helloworld\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:14Z\",\"lastTimestamp\":\"2020-07-21T05:33:14Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"microsoft/aci-helloworld\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"microsoft/aci-tutorial-sidecar\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:19Z\",\"lastTimestamp\":\"2020-07-21T05:33:19Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"microsoft/aci-tutorial-sidecar\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:20Z\",\"lastTimestamp\":\"2020-07-21T05:33:20Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:20Z\",\"lastTimestamp\":\"2020-07-21T05:33:20Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480?api-version=2023-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (1.8.0_231; Windows 10 10.0)" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:33:39 GMT", - "content-length" : "2652", - "expires" : "-1", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "532da50d-8cd4-4c1c-9084-908b223aad46", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053340Z:532da50d-8cd4-4c1c-9084-908b223aad46", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:8c039c0f-9758-4217-b240-25d0bd691ca8", - "Body" : "{\"properties\":{\"sku\":\"Standard\",\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisamplec67769480-1\",\"properties\":{\"image\":\"microsoft/aci-helloworld\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2020-07-21T05:33:16Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:10Z\",\"lastTimestamp\":\"2020-07-21T05:33:10Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"microsoft/aci-helloworld\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:14Z\",\"lastTimestamp\":\"2020-07-21T05:33:14Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"microsoft/aci-helloworld\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":0.8,\"cpu\":0.5}}}},{\"name\":\"acisamplec67769480-2\",\"properties\":{\"image\":\"microsoft/aci-tutorial-sidecar\",\"ports\":[],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2020-07-21T05:33:20Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"microsoft/aci-tutorial-sidecar\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:19Z\",\"lastTimestamp\":\"2020-07-21T05:33:19Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"microsoft/aci-tutorial-sidecar\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:20Z\",\"lastTimestamp\":\"2020-07-21T05:33:20Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:20Z\",\"lastTimestamp\":\"2020-07-21T05:33:20Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":0.8,\"cpu\":0.5}}}}],\"initContainers\":[],\"restartPolicy\":\"Never\",\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"52.155.41.216\",\"type\":\"Public\",\"dnsNameLabel\":\"acisamplec67769480\",\"fqdn\":\"acisamplec67769480.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480\",\"name\":\"acisamplec67769480\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480/containers/acisamplec67769480-1/logs?api-version=2023-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerinstance/2.0.0-SNAPSHOT (1.8.0_231; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:33:57 GMT", - "content-length" : "1433", - "expires" : "-1", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bb06a56a-6ff6-4d24-881c-f39c27b84be8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053358Z:bb06a56a-6ff6-4d24-881c-f39c27b84be8", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:13067716-474f-4b14-8cd6-8bbbe8a177a6", - "Body" : "{\"content\":\"listening on port 80\\n::1 - - [21/Jul/2020:05:33:20 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:23 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:26 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:29 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:32 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:35 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:38 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::ffff:10.240.255.55 - - [21/Jul/2020:05:33:40 +0000] \\\"GET / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"ReactorNetty/0.9.7.RELEASE\\\"\\n::1 - - [21/Jul/2020:05:33:41 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:44 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:47 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:50 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:53 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::1 - - [21/Jul/2020:05:33:56 +0000] \\\"HEAD / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"curl/7.54.0\\\"\\n::ffff:10.240.255.55 - - [21/Jul/2020:05:33:56 +0000] \\\"GET / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"ReactorNetty/0.9.7.RELEASE\\\"\\n\"}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480/containers/acisamplec67769480-2/logs?api-version=2023-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerinstance/2.0.0-SNAPSHOT (1.8.0_231; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:33:58 GMT", - "content-length" : "9621", - "expires" : "-1", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "87f6097d-836b-49fe-9b29-6c899d7b4603", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053359Z:87f6097d-836b-49fe-9b29-6c899d7b4603", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:07450346-131d-44eb-b91d-735ceda4a861", - "Body" : "{\"content\":\"\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:20\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:20 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:23\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:23 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:26\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:26 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:29\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:29 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:32\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:32 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:35\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:35 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:38\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:38 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:41\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:41 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:44\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:44 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:47\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:47 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:50\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:50 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:53\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:53 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\n\\u001b[H\\u001b[JEvery 3s: curl -I http://localhost 2020-07-21 05:33:56\\n\\n % Total % Received % Xferd Average Speed Time Time Time Current\\n Dload Upload Total Spent Left Speed\\nHTTP/1.1 200 OK\\r\\n\\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\r 0 1663 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\\nX-Powered-By: Express\\r\\nAccept-Ranges: bytes\\r\\nCache-Control: public, max-age=0\\r\\nLast-Modified: Wed, 29 Nov 2017 06:40:40 GMT\\r\\nETag: W/\\\"67f-16006818640\\\"\\r\\nContent-Type: text/html; charset=UTF-8\\r\\nContent-Length: 1663\\r\\nDate: Tue, 21 Jul 2020 05:33:56 GMT\\r\\nConnection: keep-alive\\r\\n\\r\\n\"}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480?api-version=2023-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.containerinstance/2.0.0-SNAPSHOT (1.8.0_231; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:34:02 GMT", - "content-length" : "2652", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "999", - "x-ms-correlation-request-id" : "4de8a001-3e83-4dfb-b785-742833162a53", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "299", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053403Z:4de8a001-3e83-4dfb-b785-742833162a53", - "connection" : "keep-alive", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "westus:c4c097f2-73e4-4902-9452-f8675a8e0d04", - "Body" : "{\"properties\":{\"sku\":\"Standard\",\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisamplec67769480-1\",\"properties\":{\"image\":\"microsoft/aci-helloworld\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2020-07-21T05:33:16Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:10Z\",\"lastTimestamp\":\"2020-07-21T05:33:10Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"microsoft/aci-helloworld\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:14Z\",\"lastTimestamp\":\"2020-07-21T05:33:14Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"microsoft/aci-helloworld\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":0.8,\"cpu\":0.5}}}},{\"name\":\"acisamplec67769480-2\",\"properties\":{\"image\":\"microsoft/aci-tutorial-sidecar\",\"ports\":[],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2020-07-21T05:33:20Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:16Z\",\"lastTimestamp\":\"2020-07-21T05:33:16Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"microsoft/aci-tutorial-sidecar\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:19Z\",\"lastTimestamp\":\"2020-07-21T05:33:19Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"microsoft/aci-tutorial-sidecar\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:20Z\",\"lastTimestamp\":\"2020-07-21T05:33:20Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2020-07-21T05:33:20Z\",\"lastTimestamp\":\"2020-07-21T05:33:20Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":0.8,\"cpu\":0.5}}}}],\"initContainers\":[],\"restartPolicy\":\"Never\",\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"52.155.41.216\",\"type\":\"Public\",\"dnsNameLabel\":\"acisamplec67769480\",\"fqdn\":\"acisamplec67769480.westus.azurecontainer.io\"},\"osType\":\"Linux\",\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9ef40856d/providers/Microsoft.ContainerInstance/containerGroups/acisamplec67769480\",\"name\":\"acisamplec67769480\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"westus\",\"tags\":{}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci9ef40856d?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-SNAPSHOT (1.8.0_231; Windows 10 10.0)", - "Content-Type" : "application/json" - }, - "Response" : { - "date" : "Tue, 21 Jul 2020 05:34:06 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7eed4ce1-d3d8-425d-bf59-d75db45c9136", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200721T053407Z:7eed4ce1-d3d8-425d-bf59-d75db45c9136", - "connection" : "keep-alive", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTlFRjQwODU2RC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "7eed4ce1-d3d8-425d-bf59-d75db45c9136", - "Body" : "" - } - } ], - "variables" : [ "rgaci9ef40856d", "acisamplec67769480" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json deleted file mode 100644 index d41b130f46e3..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerInstanceTests.testManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.json +++ /dev/null @@ -1,725 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci9a7509643?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:32 GMT", - "content-length" : "310", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7138f999-7a9f-4dc0-a4b9-e8896cf4ffa6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033232Z:7138f999-7a9f-4dc0-a4b9-e8896cf4ffa6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7138f999-7a9f-4dc0-a4b9-e8896cf4ffa6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643\",\"name\":\"rgaci9a7509643\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2019-10-17T03:32:27.486Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerRegistry/registries/acrd57221498718?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "457", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f302e08-dda1-4c41-98ad-15e1c61eeb70", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033238Z:3f302e08-dda1-4c41-98ad-15e1c61eeb70", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3f302e08-dda1-4c41-98ad-15e1c61eeb70", - "Body" : "{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"type\":\"Microsoft.ContainerRegistry/registries\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerRegistry/registries/acrd57221498718\",\"name\":\"acrd57221498718\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"loginServer\":\"acrd57221498718.azurecr.io\",\"creationDate\":\"2019-10-17T03:32:36.4404508Z\",\"provisioningState\":\"Succeeded\",\"adminUserEnabled\":true}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerRegistry/registries/acrd57221498718/listCredentials?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "171", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "154f2b49-1d98-4272-910e-6f04d19bd136", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033239Z:154f2b49-1d98-4272-910e-6f04d19bd136", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "154f2b49-1d98-4272-910e-6f04d19bd136", - "Body" : "{\"username\":\"acrd57221498718\",\"passwords\":[{\"name\":\"password\",\"value\":\"***REMOVED***\"},{\"name\":\"password2\",\"value\":\"***REMOVED***\"}]}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerRegistry/registries/acrd57221498718/listCredentials?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "171", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "39d5cda8-b800-4e76-8154-f7df3436192b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033239Z:39d5cda8-b800-4e76-8154-f7df3436192b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "39d5cda8-b800-4e76-8154-f7df3436192b", - "Body" : "{\"username\":\"acrd57221498718\",\"passwords\":[{\"name\":\"password\",\"value\":\"***REMOVED***\"},{\"name\":\"password2\",\"value\":\"***REMOVED***\"}]}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:41 GMT", - "content-length" : "773", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "562185f5-daed-485f-9e9a-085fba250fff", - "x-ms-arm-service-request-id" : "5c14a74e-0850-418c-b8ed-ef8c0b78f1e9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033242Z:562185f5-daed-485f-9e9a-085fba250fff", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "25a59835-afe7-4abd-93b5-034bfba0311e", - "Body" : "{\r\n \"name\": \"pip39640a74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74\",\r\n \"etag\": \"W/\\\"1e4f12d5-7d02-44fe-bae0-9a618063163b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eab939d8-5f2d-4282-9cac-c5a746e4977d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip670383\",\r\n \"fqdn\": \"pip670383.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/25a59835-afe7-4abd-93b5-034bfba0311e?api-version=2019-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/25a59835-afe7-4abd-93b5-034bfba0311e?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb2576d4-11e4-4635-a68c-ddd5ec7cf7c2", - "x-ms-arm-service-request-id" : "38237339-2dce-4533-9bc3-6a1732e2b9ad", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033243Z:bb2576d4-11e4-4635-a68c-ddd5ec7cf7c2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "377d315a-204e-4554-b029-0e6d97515fd3", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "774", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f75010aa-aebd-4cd2-b531-1af64bafa0fc", - "x-ms-arm-service-request-id" : "2a3bf22f-e584-4dd2-8327-6b6b3760d45b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033243Z:f75010aa-aebd-4cd2-b531-1af64bafa0fc", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"2357b21a-b4e8-4920-902d-bd33aa12cb6e\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "36178bcb-2611-40d7-8c3d-39743174d2df", - "Body" : "{\r\n \"name\": \"pip39640a74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74\",\r\n \"etag\": \"W/\\\"2357b21a-b4e8-4920-902d-bd33aa12cb6e\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eab939d8-5f2d-4282-9cac-c5a746e4977d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip670383\",\r\n \"fqdn\": \"pip670383.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:45 GMT", - "content-length" : "1343", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e96588ad-0a46-4a96-812c-7a0217755acc", - "x-ms-arm-service-request-id" : "f09cd961-eb83-42f0-8786-78cc1e85dac9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033245Z:e96588ad-0a46-4a96-812c-7a0217755acc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "23079d76-183f-4f4f-beb7-50538602eee7", - "Body" : "{\r\n \"name\": \"vnet396828d03f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f\",\r\n \"etag\": \"W/\\\"949285e0-ff2a-45af-9e65-0d20c3e3b5f3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ed817e9d-c886-436d-8331-f24502b41130\",\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/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"949285e0-ff2a-45af-9e65-0d20c3e3b5f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/23079d76-183f-4f4f-beb7-50538602eee7?api-version=2019-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/23079d76-183f-4f4f-beb7-50538602eee7?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "30", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce60d14d-bcc4-4306-ac66-e014afa5232f", - "x-ms-arm-service-request-id" : "a6e5128e-c794-4b55-a0b5-e0384d8bfb3f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033246Z:ce60d14d-bcc4-4306-ac66-e014afa5232f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "aabd4064-03d0-4356-8705-7c3bdea7ae0f", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/23079d76-183f-4f4f-beb7-50538602eee7?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:55 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9194287f-e7d9-4d3c-a19f-2a5386505681", - "x-ms-arm-service-request-id" : "f10901a8-e101-4a2d-909b-687c6b23fc8c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033256Z:9194287f-e7d9-4d3c-a19f-2a5386505681", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d542c514-b368-4f12-96c1-8fe8ee8d6503", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:55 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1345", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "507c84eb-47a3-46be-a8ff-b2f4aad0ec96", - "x-ms-arm-service-request-id" : "b977bad6-d27b-4d69-92b4-889001a99bfa", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033256Z:507c84eb-47a3-46be-a8ff-b2f4aad0ec96", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"632598a5-c353-416d-8192-30c52d0f9a27\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "972f4b34-4763-427f-8579-c3ba22c2e764", - "Body" : "{\r\n \"name\": \"vnet396828d03f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f\",\r\n \"etag\": \"W/\\\"632598a5-c353-416d-8192-30c52d0f9a27\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed817e9d-c886-436d-8331-f24502b41130\",\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/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"632598a5-c353-416d-8192-30c52d0f9a27\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:32:58 GMT", - "content-length" : "1843", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38ac1355-73a4-42e7-a219-ec7556320caf", - "x-ms-arm-service-request-id" : "e6cfc430-3f96-44d5-9609-95a9ce01dc80", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033258Z:38ac1355-73a4-42e7-a219-ec7556320caf", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "be934091-1803-49a8-bcfb-01055622c18b", - "Body" : "{\r\n \"name\": \"nic10605690f5e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e\",\r\n \"etag\": \"W/\\\"7904852a-2199-4d91-a095-1eef39f14b6b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44f3b369-089c-45dd-809a-afc2c71aa83c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7904852a-2199-4d91-a095-1eef39f14b6b\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f/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\": \"tv5id1mgzbwuhazr4jcqfnarga.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/be934091-1803-49a8-bcfb-01055622c18b?api-version=2019-06-01" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Compute/virtualMachines/dockervm71194c?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:33:01 GMT", - "azure-asyncnotification" : "Enabled", - "content-length" : "1459", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b1c592ef-0a76-4eaf-9f67-51d479f4952d", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033302Z:b1c592ef-0a76-4eaf-9f67-51d479f4952d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "451120d6-f8fb-44d7-b61d-9a3d13a6f006", - "Body" : "{\r\n \"name\": \"dockervm71194c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Compute/virtualMachines/dockervm71194c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e4794804-8253-46e2-821a-44a39a98a967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"dockervm71194c\",\r\n \"adminUsername\": \"dockerUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/451120d6-f8fb-44d7-b61d-9a3d13a6f006?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/451120d6-f8fb-44d7-b61d-9a3d13a6f006?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:33:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a28b084d-4a31-4772-a8dc-083d12dbd24e", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033302Z:a28b084d-4a31-4772-a8dc-083d12dbd24e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2644578a-4517-4574-9384-985fe898abf9", - "Body" : "{\r\n \"startTime\": \"2019-10-17T03:33:01.0295873+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"451120d6-f8fb-44d7-b61d-9a3d13a6f006\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/451120d6-f8fb-44d7-b61d-9a3d13a6f006?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:33:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "daec9adc-113d-4a11-bdf2-8b5b9dc631d3", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033332Z:daec9adc-113d-4a11-bdf2-8b5b9dc631d3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "60e9ca0c-167a-41dd-b246-cff9ba4dfd98", - "Body" : "{\r\n \"startTime\": \"2019-10-17T03:33:01.0295873+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"451120d6-f8fb-44d7-b61d-9a3d13a6f006\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/451120d6-f8fb-44d7-b61d-9a3d13a6f006?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:34:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5a3ea76-19c1-4964-b679-78f57fda1918", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033402Z:c5a3ea76-19c1-4964-b679-78f57fda1918", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "aa42c424-fe4c-41b8-97e5-f1b041fa058d", - "Body" : "{\r\n \"startTime\": \"2019-10-17T03:33:01.0295873+00:00\",\r\n \"endTime\": \"2019-10-17T03:33:49.5164502+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"451120d6-f8fb-44d7-b61d-9a3d13a6f006\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Compute/virtualMachines/dockervm71194c?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:34:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1757", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b84e2016-9a32-46a5-a784-bc6fe7e940c8", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033403Z:b84e2016-9a32-46a5-a784-bc6fe7e940c8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c2ca625c-bd0d-46ae-9c8c-ff314e67bfb0", - "Body" : "{\r\n \"name\": \"dockervm71194c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Compute/virtualMachines/dockervm71194c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e4794804-8253-46e2-821a-44a39a98a967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dockervm71194c_OsDisk_1_a8b5b386c5dc4624b37c1b0a1b23e743\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Compute/disks/dockervm71194c_OsDisk_1_a8b5b386c5dc4624b37c1b0a1b23e743\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"dockervm71194c\",\r\n \"adminUsername\": \"dockerUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:35:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2094", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0de92602-4c67-492b-9e41-d4e09635d52a", - "x-ms-arm-service-request-id" : "a30b1a8b-f79b-403f-aa59-fe40962788f7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033503Z:0de92602-4c67-492b-9e41-d4e09635d52a", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"0e6155af-7b1b-4524-a4a5-c83edf90d131\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "886bdf9f-e803-4aa4-a3d4-f62a2b27fdb8", - "Body" : "{\r\n \"name\": \"nic10605690f5e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e\",\r\n \"etag\": \"W/\\\"0e6155af-7b1b-4524-a4a5-c83edf90d131\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"44f3b369-089c-45dd-809a-afc2c71aa83c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0e6155af-7b1b-4524-a4a5-c83edf90d131\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/virtualNetworks/vnet396828d03f/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\": \"tv5id1mgzbwuhazr4jcqfnarga.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-03-80-48\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Compute/virtualMachines/dockervm71194c\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:35:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1026", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e7924914-1a2b-450e-acc9-a8a45d388783", - "x-ms-arm-service-request-id" : "ae710b75-055a-429d-b3ce-e543586b8a1c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033503Z:e7924914-1a2b-450e-acc9-a8a45d388783", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"07d15f52-14a0-43ad-86c8-89d7ac810cb8\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "c81f1caf-e4de-4940-a26b-a33ef324dbcc", - "Body" : "{\r\n \"name\": \"pip39640a74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/publicIPAddresses/pip39640a74\",\r\n \"etag\": \"W/\\\"07d15f52-14a0-43ad-86c8-89d7ac810cb8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eab939d8-5f2d-4282-9cac-c5a746e4977d\",\r\n \"ipAddress\": \"52.177.23.207\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip670383\",\r\n \"fqdn\": \"pip670383.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.Network/networkInterfaces/nic10605690f5e/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci9a7509643?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:37:05 GMT", - "content-length" : "310", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc0ada01-c403-4bad-8524-77b25af93fcb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033705Z:bc0ada01-c403-4bad-8524-77b25af93fcb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bc0ada01-c403-4bad-8524-77b25af93fcb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643\",\"name\":\"rgaci9a7509643\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2019-10-17T03:37:01.848Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:37:11 GMT", - "content-length" : "899", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05075851-2119-4dbd-a5ef-7906d936c563", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h" : "299", - "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m" : "99", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033711Z:05075851-2119-4dbd-a5ef-7906d936c563", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "eastus2:d2c2ab2a-c7c7-4f88-b922-629192a69ecc", - "Body" : "{\"properties\":{\"provisioningState\":\"Pending\",\"containers\":[{\"name\":\"acisample81b47578f\",\"properties\":{\"image\":\"acrd57221498718.azurecr.io/samples/sample-hello\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}}}}],\"imageRegistryCredentials\":[{\"server\":\"acrd57221498718.azurecr.io\",\"username\":\"acrd57221498718\"}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"40.65.237.220\",\"type\":\"Public\",\"dnsNameLabel\":\"acisample81b47578f\",\"fqdn\":\"acisample81b47578f.eastus2.azurecontainer.io\"},\"osType\":\"Linux\",\"instanceView\":{\"events\":[],\"state\":\"Pending\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f\",\"name\":\"acisample81b47578f\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"eastus2\",\"tags\":{}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/eastus2/operations/d2c2ab2a-c7c7-4f88-b922-629192a69ecc?api-version=2018-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/eastus2/operations/d2c2ab2a-c7c7-4f88-b922-629192a69ecc?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:37:12 GMT", - "content-length" : "250", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86151aa5-aca8-43ce-93da-c5ab9c306ea0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033712Z:86151aa5-aca8-43ce-93da-c5ab9c306ea0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "eastus2:38be4c3b-4946-4f4c-b0fd-5b5a7b623faf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f\",\"status\":\"Pending\",\"startTime\":\"2019-10-17T03:37:10.72547Z\",\"properties\":{\"events\":[]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/eastus2/operations/d2c2ab2a-c7c7-4f88-b922-629192a69ecc?api-version=2018-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:37:41 GMT", - "content-length" : "974", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d89315f6-5feb-4056-8e18-a187901dd9cd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033742Z:d89315f6-5feb-4056-8e18-a187901dd9cd", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "eastus2:46b83e41-2c7f-4e28-8074-873e5bc5ab41", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f\",\"status\":\"Succeeded\",\"startTime\":\"2019-10-17T03:37:10.72547Z\",\"properties\":{\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:19Z\",\"lastTimestamp\":\"2019-10-17T03:37:19Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"acrd57221498718.azurecr.io/samples/sample-hello\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:24Z\",\"lastTimestamp\":\"2019-10-17T03:37:24Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"acrd57221498718.azurecr.io/samples/sample-hello\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:29Z\",\"lastTimestamp\":\"2019-10-17T03:37:29Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:29Z\",\"lastTimestamp\":\"2019-10-17T03:37:29Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:37:42 GMT", - "content-length" : "1757", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b4d6662-5a29-47d4-a034-2e53eba3198f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033742Z:8b4d6662-5a29-47d4-a034-2e53eba3198f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "eastus2:f94a05a5-12af-4b4f-bdea-e4901d454dd1", - "Body" : "{\"properties\":{\"provisioningState\":\"Succeeded\",\"containers\":[{\"name\":\"acisample81b47578f\",\"properties\":{\"image\":\"acrd57221498718.azurecr.io/samples/sample-hello\",\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"environmentVariables\":[],\"instanceView\":{\"restartCount\":0,\"currentState\":{\"state\":\"Running\",\"startTime\":\"2019-10-17T03:37:29Z\",\"detailStatus\":\"\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:19Z\",\"lastTimestamp\":\"2019-10-17T03:37:19Z\",\"name\":\"Pulling\",\"message\":\"pulling image \\\"acrd57221498718.azurecr.io/samples/sample-hello\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:24Z\",\"lastTimestamp\":\"2019-10-17T03:37:24Z\",\"name\":\"Pulled\",\"message\":\"Successfully pulled image \\\"acrd57221498718.azurecr.io/samples/sample-hello\\\"\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:29Z\",\"lastTimestamp\":\"2019-10-17T03:37:29Z\",\"name\":\"Created\",\"message\":\"Created container\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2019-10-17T03:37:29Z\",\"lastTimestamp\":\"2019-10-17T03:37:29Z\",\"name\":\"Started\",\"message\":\"Started container\",\"type\":\"Normal\"}]},\"resources\":{\"requests\":{\"memoryInGB\":1.5,\"cpu\":1.0}}}}],\"imageRegistryCredentials\":[{\"server\":\"acrd57221498718.azurecr.io\",\"username\":\"acrd57221498718\"}],\"ipAddress\":{\"ports\":[{\"protocol\":\"TCP\",\"port\":80}],\"ip\":\"40.65.237.220\",\"type\":\"Public\",\"dnsNameLabel\":\"acisample81b47578f\",\"fqdn\":\"acisample81b47578f.eastus2.azurecontainer.io\"},\"osType\":\"Linux\",\"instanceView\":{\"events\":[],\"state\":\"Running\"}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f\",\"name\":\"acisample81b47578f\",\"type\":\"Microsoft.ContainerInstance/containerGroups\",\"location\":\"eastus2\",\"tags\":{}}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643/providers/Microsoft.ContainerInstance/containerGroups/acisample81b47578f/containers/acisample81b47578f/logs?api-version=2018-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerInstanceManagementClient, 2018-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:00 GMT", - "content-length" : "568", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding,Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b1d3ac4-81c3-41d5-b487-9af8e8ae69de", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033800Z:3b1d3ac4-81c3-41d5-b487-9af8e8ae69de", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "eastus2:4c0827f7-f4db-449b-9d95-f935fa8711cd", - "Body" : "{\"content\":\"listening on port 80\\n::ffff:10.240.255.56 - - [17/Oct/2019:03:37:43 +0000] \\\"GET / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"okhttp/3.12.0\\\"\\n::ffff:10.240.255.55 - - [17/Oct/2019:03:37:56 +0000] \\\"GET / HTTP/1.1\\\" 200 1663 \\\"http://www.bing.com/search?q=amazon\\\" \\\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\\\"\\n::ffff:10.240.255.55 - - [17/Oct/2019:03:38:00 +0000] \\\"GET / HTTP/1.1\\\" 200 1663 \\\"-\\\" \\\"okhttp/3.12.0\\\"\\n\"}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci9a7509643?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:03 GMT", - "content-length" : "310", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d86f9556-af52-4a62-945d-d663b30e2401", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033804Z:d86f9556-af52-4a62-945d-d663b30e2401", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d86f9556-af52-4a62-945d-d663b30e2401", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaci9a7509643\",\"name\":\"rgaci9a7509643\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2019-10-17T03:38:01.116Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaci9a7509643?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:38:08 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a804cce-06be-4350-998a-f69db5d1633b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033809Z:6a804cce-06be-4350-998a-f69db5d1633b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTlBNzUwOTY0My1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6a804cce-06be-4350-998a-f69db5d1633b", - "Body" : "" - } - } ], - "variables" : [ "rgaci9a7509643", "acrd57221498718", "acisample81b47578f", "acssample63c4826651ffc4", "b820f89e-2e09-4877-bffd-ca2aceb48570", "2d0241e2-739e-4988-a508-3989b7d2df47", "dockervm71194c", "pip670383", "47df7b06-5d87-42dc-9338-ff20ab9253a6", "nic10605690f5e", "a34dd435-0a6d-4f0a-8134-c165ac5dc863", "vnet396828d03f", "c86be45a-c6c8-47a9-bf53-c4fda3fb2e0b", "pip39640a74", "06a4e062-eb60-42c9-994d-6069fc702e4b", "95759480-4ee4-470b-9aec-f1a8f11bd2d8", "d55e2476-8643-4942-890a-5dbbda489d6c", "3a27035a-1696-4479-99ac-7ee22a2dacca", "809dee22-61a4-4689-9464-75f11fbf3fe8", "701b1f35-1c97-4afe-b17b-ceb79435c193", "00d2dbaa-de2c-4ac4-a02c-b4ba0a9d25b0" ] -} diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistry.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistry.json deleted file mode 100644 index b965340611a2..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistry.json +++ /dev/null @@ -1,545 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgacr396699839?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:49 GMT", - "content-length" : "309", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dea95ad8-1a5b-4502-9f3a-e4f815d8975a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033949Z:dea95ad8-1a5b-4502-9f3a-e4f815d8975a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dea95ad8-1a5b-4502-9f3a-e4f815d8975a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839\",\"name\":\"rgacr396699839\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2019-10-17T03:39:45.172Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.ContainerRegistry/registries/acrsample76501943e?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:53 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "465", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "782558e1-3dca-463f-9062-4498a1285571", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033953Z:782558e1-3dca-463f-9062-4498a1285571", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "782558e1-3dca-463f-9062-4498a1285571", - "Body" : "{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"type\":\"Microsoft.ContainerRegistry/registries\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.ContainerRegistry/registries/acrsample76501943e\",\"name\":\"acrsample76501943e\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"loginServer\":\"acrsample76501943e.azurecr.io\",\"creationDate\":\"2019-10-17T03:39:51.9555768Z\",\"provisioningState\":\"Succeeded\",\"adminUserEnabled\":true}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.ContainerRegistry/registries/acrsample76501943e/listCredentials?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:53 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "174", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c21a3e1-2490-4eb6-b957-a8de421adca2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033954Z:4c21a3e1-2490-4eb6-b957-a8de421adca2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4c21a3e1-2490-4eb6-b957-a8de421adca2", - "Body" : "{\"username\":\"acrsample76501943e\",\"passwords\":[{\"name\":\"password\",\"value\":\"***REMOVED***\"},{\"name\":\"password2\",\"value\":\"***REMOVED***\"}]}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.ContainerRegistry/registries/acrsample76501943e/listCredentials?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "174", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca1460e9-f235-408b-a5ab-c1b6721231ca", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033954Z:ca1460e9-f235-408b-a5ab-c1b6721231ca", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ca1460e9-f235-408b-a5ab-c1b6721231ca", - "Body" : "{\"username\":\"acrsample76501943e\",\"passwords\":[{\"name\":\"password\",\"value\":\"***REMOVED***\"},{\"name\":\"password2\",\"value\":\"***REMOVED***\"}]}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:56 GMT", - "content-length" : "1342", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "40ed4326-0363-445e-8f49-8a61884c0593", - "x-ms-arm-service-request-id" : "7da90d2e-6d74-495f-aefe-253d9529ce9e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033957Z:40ed4326-0363-445e-8f49-8a61884c0593", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9ecb310d-7c13-4c28-b7cd-95b098fde040", - "Body" : "{\r\n \"name\": \"vnet40414d04f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0\",\r\n \"etag\": \"W/\\\"53bb882b-e06e-49a1-9f41-64c19a9d995c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"849177a9-150c-49f7-a596-7f31a6335245\",\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/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"53bb882b-e06e-49a1-9f41-64c19a9d995c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9ecb310d-7c13-4c28-b7cd-95b098fde040?api-version=2019-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9ecb310d-7c13-4c28-b7cd-95b098fde040?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:39:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "30", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f774933a-9636-44cc-9264-70f0e30ae559", - "x-ms-arm-service-request-id" : "cef7c997-bf3a-40a9-9620-9d98a1fc0af3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T033958Z:f774933a-9636-44cc-9264-70f0e30ae559", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "786ccfdd-9ddb-4f51-a2d9-7f599aeaa49e", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9ecb310d-7c13-4c28-b7cd-95b098fde040?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19910398-3cb9-48c5-9705-813d25b07955", - "x-ms-arm-service-request-id" : "3e749662-7902-4f96-b497-4595dc2ce0b9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034008Z:19910398-3cb9-48c5-9705-813d25b07955", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "31114166-51e8-4e16-97c5-944d2206b15f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1344", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0e06361-a6d5-47e6-8539-d4b6c4ca80ab", - "x-ms-arm-service-request-id" : "8838dc35-8384-4923-b0d9-ec3e3a7c0b19", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034008Z:b0e06361-a6d5-47e6-8539-d4b6c4ca80ab", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"b7827165-7794-46ee-83b4-f542d6ce72ad\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "766dc4a1-2516-40d6-8c22-9716cd55497c", - "Body" : "{\r\n \"name\": \"vnet40414d04f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0\",\r\n \"etag\": \"W/\\\"b7827165-7794-46ee-83b4-f542d6ce72ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"849177a9-150c-49f7-a596-7f31a6335245\",\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/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b7827165-7794-46ee-83b4-f542d6ce72ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:10 GMT", - "content-length" : "771", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c1127ee-fece-4305-8aae-c25fce963a9d", - "x-ms-arm-service-request-id" : "4201ffc3-2600-4c75-a0d1-8d9d1def343a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034011Z:3c1127ee-fece-4305-8aae-c25fce963a9d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "041f57a1-b4ca-4671-9a7f-59c5d6afd587", - "Body" : "{\r\n \"name\": \"pip60587009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009\",\r\n \"etag\": \"W/\\\"438782e3-0aec-4a00-9f30-caaf7e0ea5e3\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"40ec5abf-fd60-40d5-a9aa-44f24beaa499\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip257230\",\r\n \"fqdn\": \"pip257230.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/041f57a1-b4ca-4671-9a7f-59c5d6afd587?api-version=2019-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/041f57a1-b4ca-4671-9a7f-59c5d6afd587?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2b08d08b-b90e-434c-b1bc-1e8152ff1100", - "x-ms-arm-service-request-id" : "3380486a-dd3b-4a04-8548-897383966c97", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034011Z:2b08d08b-b90e-434c-b1bc-1e8152ff1100", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3e3ff370-68e6-4a55-86e7-70a4940e6a21", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "772", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "637cdd55-6493-4931-b49c-291086450836", - "x-ms-arm-service-request-id" : "3993a9b5-72c6-42b9-b03d-81b9ad51b37f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034011Z:637cdd55-6493-4931-b49c-291086450836", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"08873d27-a511-40e6-b08a-0f6243cbd034\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "abe5064a-50f3-46e3-ad4e-539c23dc303a", - "Body" : "{\r\n \"name\": \"pip60587009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009\",\r\n \"etag\": \"W/\\\"08873d27-a511-40e6-b08a-0f6243cbd034\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40ec5abf-fd60-40d5-a9aa-44f24beaa499\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip257230\",\r\n \"fqdn\": \"pip257230.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:13 GMT", - "content-length" : "1842", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "846b3279-bed6-4d20-85c1-bf7c300d70d9", - "x-ms-arm-service-request-id" : "1a1a30b3-c31d-4e7b-a2b1-795221ceb37c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034014Z:846b3279-bed6-4d20-85c1-bf7c300d70d9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "27d94a3d-b70d-42a4-84c2-5c9892f000ed", - "Body" : "{\r\n \"name\": \"nic89229cccda6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6\",\r\n \"etag\": \"W/\\\"956e74fb-e164-42d9-bf32-0d5a38d8f080\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f723848b-5cfb-4ddb-b4ee-9816dcdfedfe\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"956e74fb-e164-42d9-bf32-0d5a38d8f080\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0/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\": \"vf1zdbamcx1utjmwp2y0mm0sif.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/27d94a3d-b70d-42a4-84c2-5c9892f000ed?api-version=2019-06-01" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Compute/virtualMachines/dockervm431888?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:15 GMT", - "azure-asyncnotification" : "Enabled", - "content-length" : "1458", - "server" : "Microsoft-HTTPAPI/2.0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08fb656c-c64f-44c1-9f0a-fcf55be0c3e3", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034016Z:08fb656c-c64f-44c1-9f0a-fcf55be0c3e3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "25f1016a-c533-45f9-9f3c-12058578aad1", - "Body" : "{\r\n \"name\": \"dockervm431888\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Compute/virtualMachines/dockervm431888\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ae461651-93af-4c01-be46-ef4dd0109893\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"dockervm431888\",\r\n \"adminUsername\": \"dockerUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f1016a-c533-45f9-9f3c-12058578aad1?api-version=2019-03-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f1016a-c533-45f9-9f3c-12058578aad1?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e01b6b0e-7508-4ba7-9e8a-9ea13ef52ae6", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034016Z:e01b6b0e-7508-4ba7-9e8a-9ea13ef52ae6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ee466962-5d43-4e8a-b0e8-9b631f83cd54", - "Body" : "{\r\n \"startTime\": \"2019-10-17T03:40:15.6757348+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25f1016a-c533-45f9-9f3c-12058578aad1\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f1016a-c533-45f9-9f3c-12058578aad1?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:40:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2e839532-1dd0-49ad-a5fd-1aa932e49a61", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034047Z:2e839532-1dd0-49ad-a5fd-1aa932e49a61", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4a11b3ee-1e87-4f0c-aa73-7dbd43fcd27c", - "Body" : "{\r\n \"startTime\": \"2019-10-17T03:40:15.6757348+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25f1016a-c533-45f9-9f3c-12058578aad1\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f1016a-c533-45f9-9f3c-12058578aad1?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:41:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1eb0318d-ae5a-4c7b-93a1-6fdffdf2f2be", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034117Z:1eb0318d-ae5a-4c7b-93a1-6fdffdf2f2be", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "175e9b14-e459-49ca-b596-75a27b6fd2c0", - "Body" : "{\r\n \"startTime\": \"2019-10-17T03:40:15.6757348+00:00\",\r\n \"endTime\": \"2019-10-17T03:41:11.9882206+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"25f1016a-c533-45f9-9f3c-12058578aad1\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Compute/virtualMachines/dockervm431888?api-version=2019-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ComputeManagementClient)" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:41:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1756", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd97300e-c4f1-49a0-a15b-bfd4031e775d", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034118Z:fd97300e-c4f1-49a0-a15b-bfd4031e775d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3237fc63-338f-4034-beb9-848ba5405f3a", - "Body" : "{\r\n \"name\": \"dockervm431888\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Compute/virtualMachines/dockervm431888\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ae461651-93af-4c01-be46-ef4dd0109893\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dockervm431888_OsDisk_1_69ef10d8182f4fae975582001a5f8000\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Compute/disks/dockervm431888_OsDisk_1_69ef10d8182f4fae975582001a5f8000\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"dockervm431888\",\r\n \"adminUsername\": \"dockerUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:42:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2093", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94712fb4-882e-4948-b230-1f27147ab1de", - "x-ms-arm-service-request-id" : "eecbb56b-b61e-49e9-9a88-92ef6aadf0e6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034218Z:94712fb4-882e-4948-b230-1f27147ab1de", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"33e45b34-a890-46fa-bdec-107cf69e92fa\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c332284-d04f-42b9-8ce5-584f370abe87", - "Body" : "{\r\n \"name\": \"nic89229cccda6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6\",\r\n \"etag\": \"W/\\\"33e45b34-a890-46fa-bdec-107cf69e92fa\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f723848b-5cfb-4ddb-b4ee-9816dcdfedfe\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"33e45b34-a890-46fa-bdec-107cf69e92fa\\\"\",\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 \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/virtualNetworks/vnet40414d04f0/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\": \"vf1zdbamcx1utjmwp2y0mm0sif.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-17-59-11\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Compute/virtualMachines/dockervm431888\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009?api-version=2019-06-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (NetworkManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:42:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1023", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf2463ff-0366-41f5-9aff-a65e0cdc4c86", - "x-ms-arm-service-request-id" : "dd3dc017-9a1d-4e19-9563-170307fb2161", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034218Z:bf2463ff-0366-41f5-9aff-a65e0cdc4c86", - "content-type" : "application/json; charset=utf-8", - "etag" : "W/\"44990d79-f14c-4b79-b517-ae133df51e3d\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "caa7abaa-df6e-4b33-be07-c1037b8f0ba0", - "Body" : "{\r\n \"name\": \"pip60587009\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/publicIPAddresses/pip60587009\",\r\n \"etag\": \"W/\\\"44990d79-f14c-4b79-b517-ae133df51e3d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40ec5abf-fd60-40d5-a9aa-44f24beaa499\",\r\n \"ipAddress\": \"40.117.100.5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip257230\",\r\n \"fqdn\": \"pip257230.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr396699839/providers/Microsoft.Network/networkInterfaces/nic89229cccda6/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgacr396699839?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:33 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", - "StatusCode" : "202", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8b9f0e1-9196-4215-a33a-ec6d2bbc7b52", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034434Z:c8b9f0e1-9196-4215-a33a-ec6d2bbc7b52", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDUjM5NjY5OTgzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2019-08-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "c8b9f0e1-9196-4215-a33a-ec6d2bbc7b52", - "Body" : "" - } - } ], - "variables" : [ "rgacr396699839", "acrsample76501943e", "8568abc5-5f70-42d3-9a63-7314aaa8fadf", "f6edc49d-aeae-4391-97f1-c00c4d3580b8", "dockervm431888", "pip257230", "8c66a3ab-a12f-4e77-a1a5-87a51dc21b77", "nic89229cccda6", "88509ec6-85d9-4e74-8f43-d2a7b08abf31", "vnet40414d04f0", "05655181-9578-4e74-9e88-6f9ce6ba49db", "pip60587009", "98c1a600-57a5-4186-a733-ccc8628f026c", "34917d79-2e3d-49f1-b8ff-c060cdc2bc97", "5826c392-00fd-4be1-a08a-30d8cc061fae" ] -} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json deleted file mode 100644 index 680b5c8d2830..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/ContainerRegistryTests.testManageContainerRegistryWithWebhooks.json +++ /dev/null @@ -1,872 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgacr5e748538e?api-version=2019-08-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ResourceManagementClient, 2019-08-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:39 GMT", - "content-length" : "316", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7410a46-7b1f-453f-9b93-60f81ac4e73e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034440Z:f7410a46-7b1f-453f-9b93-60f81ac4e73e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f7410a46-7b1f-453f-9b93-60f81ac4e73e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e\",\"name\":\"rgacr5e748538e\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westcentralus\",\"tags\":{\"date\":\"2019-10-17T03:44:35.464Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "487", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "191f361d-e9c2-4052-961b-44d47e708d48", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034445Z:191f361d-e9c2-4052-961b-44d47e708d48", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "191f361d-e9c2-4052-961b-44d47e708d48", - "Body" : "{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"type\":\"Microsoft.ContainerRegistry/registries\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752\",\"name\":\"acrsample749517752\",\"location\":\"westcentralus\",\"tags\":{\"tag1\":\"value1\"},\"properties\":{\"loginServer\":\"acrsample749517752.azurecr.io\",\"creationDate\":\"2019-10-17T03:44:43.2353303Z\",\"provisioningState\":\"Succeeded\",\"adminUserEnabled\":true}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "414", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "383d53da-022f-474d-918f-469404e50932", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034447Z:383d53da-022f-474d-918f-469404e50932", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "383d53da-022f-474d-918f-469404e50932", - "Body" : "{\"type\":\"Microsoft.ContainerRegistry/registries/webhooks\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1\",\"name\":\"webhookbing1\",\"location\":\"westcentralus\",\"tags\":{\"tag\":\"value\"},\"properties\":{\"status\":\"enabled\",\"scope\":\"\",\"actions\":[\"push\",\"delete\"],\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1/getCallbackConfig?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "70", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ca7f13f-526a-499b-9aa1-d0a0ca7bd44b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034447Z:2ca7f13f-526a-499b-9aa1-d0a0ca7bd44b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ca7f13f-526a-499b-9aa1-d0a0ca7bd44b", - "Body" : "{\"serviceUri\":\"https://www.bing.com\",\"customHeaders\":{\"name\":\"value\"}}" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing2?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "393", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94372ed9-5a23-427e-b9ee-f8fa84f37ce2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034450Z:94372ed9-5a23-427e-b9ee-f8fa84f37ce2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "94372ed9-5a23-427e-b9ee-f8fa84f37ce2", - "Body" : "{\"type\":\"Microsoft.ContainerRegistry/registries/webhooks\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing2\",\"name\":\"webhookbing2\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"status\":\"disabled\",\"scope\":\"\",\"actions\":[\"push\"],\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing2/getCallbackConfig?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "37", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f87b556c-c539-4e20-a5fe-472b9e7cad7c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034450Z:f87b556c-c539-4e20-a5fe-472b9e7cad7c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f87b556c-c539-4e20-a5fe-472b9e7cad7c", - "Body" : "{\"serviceUri\":\"https://www.bing.com\"}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/listCredentials?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "174", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2bd4c2f4-5041-4c25-9c29-e306d9a56758", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034451Z:2bd4c2f4-5041-4c25-9c29-e306d9a56758", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2bd4c2f4-5041-4c25-9c29-e306d9a56758", - "Body" : "{\"username\":\"acrsample749517752\",\"passwords\":[{\"name\":\"password\",\"value\":\"***REMOVED***\"},{\"name\":\"password2\",\"value\":\"***REMOVED***\"}]}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "414", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59d19ad0-c62f-4c45-8bb2-17fbd35312c0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034451Z:59d19ad0-c62f-4c45-8bb2-17fbd35312c0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "59d19ad0-c62f-4c45-8bb2-17fbd35312c0", - "Body" : "{\"type\":\"Microsoft.ContainerRegistry/registries/webhooks\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1\",\"name\":\"webhookbing1\",\"location\":\"westcentralus\",\"tags\":{\"tag\":\"value\"},\"properties\":{\"status\":\"enabled\",\"scope\":\"\",\"actions\":[\"push\",\"delete\"],\"provisioningState\":\"Succeeded\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1/getCallbackConfig?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "70", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a16e83f0-4f7c-4b01-8d0d-b36692f02f32", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034451Z:a16e83f0-4f7c-4b01-8d0d-b36692f02f32", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a16e83f0-4f7c-4b01-8d0d-b36692f02f32", - "Body" : "{\"serviceUri\":\"https://www.bing.com\",\"customHeaders\":{\"name\":\"value\"}}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1/ping?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "45", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a1b3467-89a5-412c-84d1-71631561e8e7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034452Z:9a1b3467-89a5-412c-84d1-71631561e8e7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9a1b3467-89a5-412c-84d1-71631561e8e7", - "Body" : "{\"id\":\"9a1b3467-89a5-412c-84d1-71631561e8e7\"}" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgacr5e748538e/providers/Microsoft.ContainerRegistry/registries/acrsample749517752/webhooks/webhookbing1/listEvents?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:d3fc60ad002f4c863d99d3beb851e8edf973a5248d395e580e9f144e262d969c Java:1.8.0_221 (ContainerRegistryManagementClient)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Oct 2019 03:44:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4234", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "retry-after" : "0", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1c80c136-64f8-41d0-8e4d-2cdabaace43b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20191017T034452Z:1c80c136-64f8-41d0-8e4d-2cdabaace43b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1c80c136-64f8-41d0-8e4d-2cdabaace43b", - "Body" : "{\"value\":[{\"eventRequestMessage\":{\"content\":{\"id\":\"9a1b3467-89a5-412c-84d1-71631561e8e7\",\"timestamp\":\"2019-10-17T03:44:51.9438031Z\",\"action\":\"ping\"},\"headers\":{\"name\":\"value\",\"Content-Type\":\"application/json; charset=utf-8\",\"Content-Length\":\"104\"},\"method\":\"POST\",\"requestUri\":\"https://www.bing.com/\",\"version\":\"1.1\"},\"eventResponseMessage\":{\"content\":\"\\r\\n\\r\\n\",\"url\":\"http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456\"}],\"nextLink\":null,\"id\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.DomainRegistration/domains/jsdkdemo-50726f3d.com?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef9b926e-f5ff-4ffa-8f92-223689164d95", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Tue, 01 Sep 2020 05:37:13 GMT", - "x-ms-correlation-request-id" : "aff24414-64f9-45d5-9564-2562b525f28c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053714Z:aff24414-64f9-45d5-9564-2562b525f28c", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "aff24414-64f9-45d5-9564-2562b525f28c", - "X-Powered-By" : "ASP.NET", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.DomainRegistration/domains/jsdkdemo-50726f3d.com/operationresults/49a9df5b-1a23-4843-b986-e2d19ad18b41?api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.DomainRegistration/domains/jsdkdemo-50726f3d.com/operationresults/49a9df5b-1a23-4843-b986-e2d19ad18b41?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "07c13b95-3904-4759-a3d0-3c6ee29d0957" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "202", - "Date" : "Tue, 01 Sep 2020 05:38:41 GMT", - "x-ms-correlation-request-id" : "74f8808c-30d9-4cc6-b0f8-3d83ec0fadb7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053841Z:74f8808c-30d9-4cc6-b0f8-3d83ec0fadb7", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "74f8808c-30d9-4cc6-b0f8-3d83ec0fadb7", - "X-Powered-By" : "ASP.NET", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.DomainRegistration/domains/jsdkdemo-50726f3d.com/operationresults/49a9df5b-1a23-4843-b986-e2d19ad18b41?api-version=2022-09-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.DomainRegistration/domains/jsdkdemo-50726f3d.com/operationresults/49a9df5b-1a23-4843-b986-e2d19ad18b41?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2d95fed-f093-453b-8b06-3a55ec8f9f07" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:39:11 GMT", - "x-ms-correlation-request-id" : "f354435c-ba17-4ab9-8e7a-bda9bba551b0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053912Z:f354435c-ba17-4ab9-8e7a-bda9bba551b0", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "864", - "x-ms-request-id" : "0a8568e0-2f33-4ca7-ada3-06c14baf1192", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.DomainRegistration/domains/jsdkdemo-50726f3d.com\",\"name\":\"jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.DomainRegistration/domains\",\"location\":\"global\",\"tags\":{},\"properties\":{\"registrationStatus\":\"Active\",\"provisioningState\":\"Succeeded\",\"nameServers\":[\"ns1-05.azure-dns.com\",\"ns2-05.azure-dns.net\",\"ns3-05.azure-dns.org\",\"ns4-05.azure-dns.info\"],\"privacy\":true,\"createdTime\":\"2020-09-01T00:37:19\",\"expirationTime\":\"2021-09-01T00:37:19\",\"autoRenew\":true,\"readyForDnsRecordManagement\":true,\"managedHostNames\":[],\"domainNotRenewableReasons\":[\"ExpirationNotInRenewalTimeRange\"],\"dnsType\":\"AzureDns\",\"dnsZoneId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/dnszones/jsdkdemo-50726f3d.com\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f611d565-5f93-4e0d-8885-9be3ab92f8e3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:39:24 GMT", - "x-ms-correlation-request-id" : "d3f38648-e8eb-44d0-b38c-f1c6c2b1d580", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053924Z:d3f38648-e8eb-44d0-b38c-f1c6c2b1d580", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1336", - "x-ms-request-id" : "0acfe148-6644-437c-a811-9bd815954a75", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f0\",\"name\":\"jplan1_23137f0\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"serverFarmId\":33375,\"name\":\"jplan1_23137f0\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rgnemv_972013d55b6-WestUS2webspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":3,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"West US 2\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rgnemv_972013d55b6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-mwh-037_33375\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"B1\",\"tier\":\"Basic\",\"size\":\"B1\",\"family\":\"B\",\"capacity\":1}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e514f422-d0be-485c-bed5-3428a3283544", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:39:32 GMT", - "x-ms-correlation-request-id" : "8bb14107-19ed-49fd-860b-0691b04811d8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053932Z:8bb14107-19ed-49fd-860b-0691b04811d8", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1336", - "x-ms-request-id" : "114b84d7-545d-448d-bacf-8f60b0aba9ed", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f1\",\"name\":\"jplan1_23137f1\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"serverFarmId\":30108,\"name\":\"jplan1_23137f1\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rgnemv_972013d55b6-EastUS2webspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":3,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"East US 2\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rgnemv_972013d55b6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-bn1-011_30108\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"B1\",\"tier\":\"Basic\",\"size\":\"B1\",\"family\":\"B\",\"capacity\":1}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2356c2e6-d29d-4918-ba07-c7175deb474d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:39:41 GMT", - "x-ms-correlation-request-id" : "ae0abbf4-9f4d-4bd0-8705-6d866393e9b9", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053942Z:ae0abbf4-9f4d-4bd0-8705-6d866393e9b9", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1337", - "x-ms-request-id" : "b11e18df-32b9-4fa9-ac45-38d6063053ec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f2\",\"name\":\"jplan1_23137f2\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"serverFarmId\":67160,\"name\":\"jplan1_23137f2\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rgnemv_972013d55b6-EastAsiawebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":3,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rgnemv_972013d55b6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-003_67160\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"B1\",\"tier\":\"Basic\",\"size\":\"B1\",\"family\":\"B\",\"capacity\":1}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "47e33e2f-84c2-48b5-b4fb-a9b216634ffc", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:39:49 GMT", - "x-ms-correlation-request-id" : "2040a638-5393-4192-a761-cec36bd56f1c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T053950Z:2040a638-5393-4192-a761-cec36bd56f1c", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1340", - "x-ms-request-id" : "1f6a73d4-f30a-43b0-a4ad-2fa816baf747", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f3\",\"name\":\"jplan1_23137f3\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"serverFarmId\":33669,\"name\":\"jplan1_23137f3\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"rgnemv_972013d55b6-CentralUSwebspace\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":3,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{},\"kind\":\"app\",\"resourceGroup\":\"rgnemv_972013d55b6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-011_33669\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null},\"sku\":{\"name\":\"B1\",\"tier\":\"Basic\",\"size\":\"B1\",\"family\":\"B\",\"capacity\":1}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5095516-1a78-41ec-af81-79e18f1ad6f4", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:10 GMT", - "x-ms-correlation-request-id" : "87f917b8-0e60-4bab-816a-add0f1de6fb0", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "Cache-Control" : "no-cache", - "ETag" : "\"1D6802251DEAF00\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054011Z:87f917b8-0e60-4bab-816a-add0f1de6fb0", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5510", - "x-ms-request-id" : "76068c54-68cd-44d7-a291-f404b3d49ab7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed0\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed0.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-WestUS2webspace\",\"selfLink\":\"https://waws-prod-mwh-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-WestUS2webspace/sites/webapp1-776220ed0\",\"repositorySiteName\":\"webapp1-776220ed0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed0.azurewebsites.net\",\"webapp1-776220ed0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f0\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:39:54.0766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed0\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"13.66.138.102\",\"possibleInboundIpAddresses\":\"13.66.138.102\",\"ftpUsername\":\"webapp1-776220ed0\\\\$webapp1-776220ed0\",\"ftpsHostName\":\"ftps://waws-prod-mwh-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.66.138.102,51.143.17.179,20.190.41.114,13.66.215.29,52.247.205.127\",\"possibleOutboundIpAddresses\":\"13.66.138.102,51.143.17.179,20.190.41.114,13.66.215.29,52.247.205.127,51.143.19.29,13.66.213.237,13.77.182.110,52.250.112.28,13.66.213.54\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-mwh-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/hostNameBindings/webapp1-776220ed0.jsdkdemo-50726f3d.com?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "16d4dcc0-f01a-41e3-8f99-afe5f080257a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:16 GMT", - "x-ms-correlation-request-id" : "6713b668-cf7c-427a-85a1-7b2f9120f7c4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D6802251DEAF00\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054017Z:6713b668-cf7c-427a-85a1-7b2f9120f7c4", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "530", - "x-ms-request-id" : "2338fca4-c1f9-4b8e-bf88-34266bd8d124", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/hostNameBindings/webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed0/webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US 2\",\"properties\":{\"siteName\":\"webapp1-776220ed0\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed0\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6293ecc-9e99-4bab-91f7-40d9dbf68cbc", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:16 GMT", - "x-ms-correlation-request-id" : "4d9afe8b-5ebf-49ee-b5c9-ebd1fd2f4925", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680225ED26B20\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054017Z:4d9afe8b-5ebf-49ee-b5c9-ebd1fd2f4925", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5619", - "x-ms-request-id" : "38eff395-0404-498f-9826-d10e555105c7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed0\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"webapp1-776220ed0.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-WestUS2webspace\",\"selfLink\":\"https://waws-prod-mwh-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-WestUS2webspace/sites/webapp1-776220ed0\",\"repositorySiteName\":\"webapp1-776220ed0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"webapp1-776220ed0.azurewebsites.net\",\"webapp1-776220ed0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f0\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:40:16.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed0\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"13.66.138.102\",\"possibleInboundIpAddresses\":\"13.66.138.102\",\"ftpUsername\":\"webapp1-776220ed0\\\\$webapp1-776220ed0\",\"ftpsHostName\":\"ftps://waws-prod-mwh-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.66.138.102,51.143.17.179,20.190.41.114,13.66.215.29,52.247.205.127\",\"possibleOutboundIpAddresses\":\"13.66.138.102,51.143.17.179,20.190.41.114,13.66.215.29,52.247.205.127,51.143.19.29,13.66.213.237,13.77.182.110,52.250.112.28,13.66.213.54\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-mwh-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e339541f-2fe9-466d-b56e-6308e2c7b764", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:17 GMT", - "x-ms-correlation-request-id" : "f92580c9-0d3a-4f9f-9b7b-d0b722fe21af", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054017Z:f92580c9-0d3a-4f9f-9b7b-d0b722fe21af", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3579", - "x-ms-request-id" : "9e36d529-114c-4591-9653-d05199cfe7b4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/web\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed0\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4%23%23West%20US%202%23?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "90bcd8a7-40b3-46a5-8d36-2ff41d713918", - "Content-Type" : "application/json" - }, - "Response" : { - "Warning" : "199 Some of the uploaded certificates are either self-signed or expired.,199 Some of the uploaded certificates cannot be validated to a trusted CA", - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:23 GMT", - "x-ms-correlation-request-id" : "bf3aee08-1acd-44d8-81d2-8e86ada9c7d3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054024Z:bf3aee08-1acd-44d8-81d2-8e86ada9c7d3", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "928", - "x-ms-request-id" : "7709ea29-2206-4df2-9572-76aa42469ac5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4##West US 2#\",\"name\":\"89997591E66BF732F1EBE7299909A8BA642D98D4##West US 2#\",\"type\":\"Microsoft.Web/certificates\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"friendlyName\":\"jsdkdemo-50726f3d.com\",\"subjectName\":\"*.jsdkdemo-50726f3d.com\",\"hostNames\":[\"*.jsdkdemo-50726f3d.com\"],\"pfxBlob\":null,\"siteName\":null,\"selfLink\":null,\"issuer\":\"*.jsdkdemo-50726f3d.com\",\"issueDate\":\"2020-09-01T05:39:10+00:00\",\"expirationDate\":\"2030-08-30T05:39:10+00:00\",\"password\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"valid\":null,\"toDelete\":null,\"cerBlob\":null,\"publicKeyHash\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"keyVaultId\":\"\",\"keyVaultSecretName\":\"\",\"webSpace\":\"rgnemv_972013d55b6-WestUS2webspace\",\"serverFarmId\":null,\"tags\":{}}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "22ee7712-09e6-4795-9e8f-8573fe9bf60c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:25 GMT", - "x-ms-correlation-request-id" : "9105533e-1ced-406a-9cac-98770bf5d072", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680225ED26B20\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054026Z:9105533e-1ced-406a-9cac-98770bf5d072", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5864", - "x-ms-request-id" : "50dc2cb4-ff32-4e75-a762-13ea915c3537", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed0\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"webapp1-776220ed0.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-WestUS2webspace\",\"selfLink\":\"https://waws-prod-mwh-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-WestUS2webspace/sites/webapp1-776220ed0\",\"repositorySiteName\":\"webapp1-776220ed0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"webapp1-776220ed0.azurewebsites.net\",\"webapp1-776220ed0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"sslState\":\"SniEnabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f0\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:40:25.2433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed0\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"13.66.138.102\",\"possibleInboundIpAddresses\":\"13.66.138.102\",\"ftpUsername\":\"webapp1-776220ed0\\\\$webapp1-776220ed0\",\"ftpsHostName\":\"ftps://waws-prod-mwh-037.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.66.138.102,51.143.17.179,20.190.41.114,13.66.215.29,52.247.205.127\",\"possibleOutboundIpAddresses\":\"13.66.138.102,51.143.17.179,20.190.41.114,13.66.215.29,52.247.205.127,51.143.19.29,13.66.213.237,13.77.182.110,52.250.112.28,13.66.213.54\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-mwh-037\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "85e5d1b5-df0b-4d3c-88d7-f4d778423adf", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:40:27 GMT", - "x-ms-correlation-request-id" : "b8211d19-001e-42a2-bd5e-70eb886d2d0e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680226434CBB5\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054028Z:b8211d19-001e-42a2-bd5e-70eb886d2d0e", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3565", - "x-ms-request-id" : "a31fd97f-fd1a-437e-acf1-01bf90c7a886", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2019\",\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed0\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfef9c6a-133b-42e1-9395-d54cd418f95c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:40:37 GMT", - "x-ms-correlation-request-id" : "a2f81fd0-4f31-42d3-b0c3-8d431b82597e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680226BCECCCB\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054038Z:a2f81fd0-4f31-42d3-b0c3-8d431b82597e", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "493", - "x-ms-request-id" : "91170962-4dd8-4f46-8dc0-3bd5f813d938", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/sourcecontrols/web\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "761225ca-4fb2-45e5-b799-17f981521468" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:41:17 GMT", - "x-ms-correlation-request-id" : "38dcd916-8866-4801-93fa-811555d8c56b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680226BCECCCB\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054118Z:38dcd916-8866-4801-93fa-811555d8c56b", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "658", - "x-ms-request-id" : "1dada7c1-1ca9-47ea-b37f-ec2d2eb1972f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/sourcecontrols/web\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2020-09-01T05:41:17.5656178 https://webapp1-776220ed0.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-09-01_05-40-50Z\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2d0db7b-1231-4d23-85fa-ff0fd2b78245" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:41:48 GMT", - "x-ms-correlation-request-id" : "3878ade1-7242-4e48-b584-f3b3c7cb4c19", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680226BCECCCB\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054149Z:3878ade1-7242-4e48-b584-f3b3c7cb4c19", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "492", - "x-ms-request-id" : "43b26ca7-7c46-4bad-bd7f-560901db5a2b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/sourcecontrols/web\",\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd2a09f0-1cf5-4b21-bfed-47c6ccfe3e21", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:19 GMT", - "x-ms-correlation-request-id" : "f259efc9-2811-4a6e-b5f5-ef5122958d1f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680226BCECCCB\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054219Z:f259efc9-2811-4a6e-b5f5-ef5122958d1f", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1064", - "x-ms-request-id" : "f5f14009-cf14-45ef-bc6f-801de3166ad5", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/hostNameBindings/webapp1-776220ed0.azurewebsites.net\",\"name\":\"webapp1-776220ed0/webapp1-776220ed0.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US 2\",\"properties\":{\"siteName\":\"webapp1-776220ed0\",\"domainId\":null,\"hostNameType\":\"Verified\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/hostNameBindings/webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed0/webapp1-776220ed0.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"West US 2\",\"properties\":{\"siteName\":\"webapp1-776220ed0\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed0\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\",\"sslState\":\"SniEnabled\",\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\"}}],\"nextLink\":null,\"id\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e8c6251-9d94-4810-8a0d-8b87241a73b6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:19 GMT", - "x-ms-correlation-request-id" : "1f5efcf7-7103-477f-a675-ad2e6bbbafb1", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054219Z:1f5efcf7-7103-477f-a675-ad2e6bbbafb1", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "305", - "x-ms-request-id" : "9db8a0ed-d2e3-4000-b1ff-0bd9b558ef36", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a1c344c-1ec2-4a16-a6be-eee4a6ec69db", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:20 GMT", - "x-ms-correlation-request-id" : "80967f29-d788-407b-99b4-9ff86e3c8840", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054220Z:80967f29-d788-407b-99b4-9ff86e3c8840", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "198", - "x-ms-request-id" : "bad936a1-ed51-4b2d-87a4-3ee9f5ddb669", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9507df7-c4aa-469a-b1f5-45a6c8d46feb", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:20 GMT", - "x-ms-correlation-request-id" : "18ffbae6-dbd5-4d93-a5ac-2f2992ff1be7", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054221Z:18ffbae6-dbd5-4d93-a5ac-2f2992ff1be7", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "198", - "x-ms-request-id" : "2a78ced6-c264-4879-9b4c-2ad4fa7698aa", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed0\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "22ca2155-5c99-43ae-9ffc-e0e17ef7c997", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:20 GMT", - "x-ms-correlation-request-id" : "822db00e-935e-4dd8-9e02-f3ea22608956", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054221Z:822db00e-935e-4dd8-9e02-f3ea22608956", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "279", - "x-ms-request-id" : "702bb9e2-2164-4c40-9641-a671467f534e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed0/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "66364f2e-12bf-4f04-9f0f-394370bf251e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:44 GMT", - "x-ms-correlation-request-id" : "4a0e554c-45e6-4787-b67c-bd9db1c34e1c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022AD3C6C70\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054244Z:4a0e554c-45e6-4787-b67c-bd9db1c34e1c", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5503", - "x-ms-request-id" : "10d7b01f-6b99-40ba-8f01-ba04c6400421", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed1\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed1.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-EastUS2webspace\",\"selfLink\":\"https://waws-prod-bn1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-EastUS2webspace/sites/webapp1-776220ed1\",\"repositorySiteName\":\"webapp1-776220ed1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed1.azurewebsites.net\",\"webapp1-776220ed1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:42:27.137\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed1\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.84.59.174\",\"possibleInboundIpAddresses\":\"40.84.59.174,40.70.147.24\",\"ftpUsername\":\"webapp1-776220ed1\\\\$webapp1-776220ed1\",\"ftpsHostName\":\"ftps://waws-prod-bn1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.84.61.229,40.79.45.187,40.79.43.90,40.79.46.129\",\"possibleOutboundIpAddresses\":\"40.84.61.229,40.79.45.187,40.79.43.90,40.79.46.129,40.79.248.194,20.44.104.22,20.44.104.28,20.44.104.33,20.44.104.34,40.84.59.174,40.70.147.24\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bn1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/hostNameBindings/webapp1-776220ed1.jsdkdemo-50726f3d.com?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f43ba67b-2191-4e81-9578-229a5a3e0fc1", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:50 GMT", - "x-ms-correlation-request-id" : "9b17f28a-b6e6-41aa-bbe5-1bc7b0ac3d5a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022AD3C6C70\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054250Z:9b17f28a-b6e6-41aa-bbe5-1bc7b0ac3d5a", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "530", - "x-ms-request-id" : "28cfe12b-fffe-4486-874e-13f1b6b3aa20", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/hostNameBindings/webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed1/webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East US 2\",\"properties\":{\"siteName\":\"webapp1-776220ed1\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed1\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25899164-b945-4178-bd00-76ab29b7b70b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:51 GMT", - "x-ms-correlation-request-id" : "f0a07ee8-b98b-4335-8230-08272e399ae8", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022BA734C10\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054251Z:f0a07ee8-b98b-4335-8230-08272e399ae8", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5617", - "x-ms-request-id" : "33bfebcb-75e5-437a-b272-4a0ed5962ed1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed1\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"webapp1-776220ed1.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-EastUS2webspace\",\"selfLink\":\"https://waws-prod-bn1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-EastUS2webspace/sites/webapp1-776220ed1\",\"repositorySiteName\":\"webapp1-776220ed1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"webapp1-776220ed1.azurewebsites.net\",\"webapp1-776220ed1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:42:49.937\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed1\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.84.59.174\",\"possibleInboundIpAddresses\":\"40.84.59.174,40.70.147.24\",\"ftpUsername\":\"webapp1-776220ed1\\\\$webapp1-776220ed1\",\"ftpsHostName\":\"ftps://waws-prod-bn1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.84.61.229,40.79.45.187,40.79.43.90,40.79.46.129\",\"possibleOutboundIpAddresses\":\"40.84.61.229,40.79.45.187,40.79.43.90,40.79.46.129,40.79.248.194,20.44.104.22,20.44.104.28,20.44.104.33,20.44.104.34,40.84.59.174,40.70.147.24\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bn1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1b4ce1a-1849-43c8-affb-b3c55555280b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:51 GMT", - "x-ms-correlation-request-id" : "345078db-521c-4a0c-bee4-204b44122424", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054251Z:345078db-521c-4a0c-bee4-204b44122424", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3579", - "x-ms-request-id" : "6f81afad-6dd4-4eb2-aaf1-172638ff2a33", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/web\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed1\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4%23%23East%20US%202%23?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "54669aff-17dd-4051-8c23-800733002f76", - "Content-Type" : "application/json" - }, - "Response" : { - "Warning" : "199 Some of the uploaded certificates are either self-signed or expired.,199 Some of the uploaded certificates cannot be validated to a trusted CA", - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:42:58 GMT", - "x-ms-correlation-request-id" : "54ff71d6-862b-442e-b92f-a7a6b5c0f6d2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054259Z:54ff71d6-862b-442e-b92f-a7a6b5c0f6d2", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "928", - "x-ms-request-id" : "39f91fa8-5402-43c9-bb7b-e020f660b3df", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4##East US 2#\",\"name\":\"89997591E66BF732F1EBE7299909A8BA642D98D4##East US 2#\",\"type\":\"Microsoft.Web/certificates\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"friendlyName\":\"jsdkdemo-50726f3d.com\",\"subjectName\":\"*.jsdkdemo-50726f3d.com\",\"hostNames\":[\"*.jsdkdemo-50726f3d.com\"],\"pfxBlob\":null,\"siteName\":null,\"selfLink\":null,\"issuer\":\"*.jsdkdemo-50726f3d.com\",\"issueDate\":\"2020-09-01T05:39:10+00:00\",\"expirationDate\":\"2030-08-30T05:39:10+00:00\",\"password\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"valid\":null,\"toDelete\":null,\"cerBlob\":null,\"publicKeyHash\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"keyVaultId\":\"\",\"keyVaultSecretName\":\"\",\"webSpace\":\"rgnemv_972013d55b6-EastUS2webspace\",\"serverFarmId\":null,\"tags\":{}}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bab52c76-00f1-4c87-95a0-83ac9f80af3c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:43:01 GMT", - "x-ms-correlation-request-id" : "a4a890c2-672a-418e-a5e6-761d96764980", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022BA734C10\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054301Z:a4a890c2-672a-418e-a5e6-761d96764980", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5857", - "x-ms-request-id" : "f778b199-4278-4c55-a443-d3e119544c23", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed1\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"webapp1-776220ed1.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-EastUS2webspace\",\"selfLink\":\"https://waws-prod-bn1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-EastUS2webspace/sites/webapp1-776220ed1\",\"repositorySiteName\":\"webapp1-776220ed1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"webapp1-776220ed1.azurewebsites.net\",\"webapp1-776220ed1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"sslState\":\"SniEnabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:43:00.683\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed1\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.84.59.174\",\"possibleInboundIpAddresses\":\"40.84.59.174,40.70.147.24\",\"ftpUsername\":\"webapp1-776220ed1\\\\$webapp1-776220ed1\",\"ftpsHostName\":\"ftps://waws-prod-bn1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.84.61.229,40.79.45.187,40.79.43.90,40.79.46.129\",\"possibleOutboundIpAddresses\":\"40.84.61.229,40.79.45.187,40.79.43.90,40.79.46.129,40.79.248.194,20.44.104.22,20.44.104.28,20.44.104.33,20.44.104.34,40.84.59.174,40.70.147.24\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-bn1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "10e99b53-48f9-431e-bc1e-0f46c065e896", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:43:02 GMT", - "x-ms-correlation-request-id" : "d3e5fa45-62f4-4a9b-a6ff-68e84be07635", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022C0DB01B0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054303Z:d3e5fa45-62f4-4a9b-a6ff-68e84be07635", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3565", - "x-ms-request-id" : "c4443ed9-3da8-403f-aee7-27059dd5d45e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2019\",\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed1\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3f606da-9d80-4790-9c5e-e46d7a561c44", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:43:09 GMT", - "x-ms-correlation-request-id" : "e8dc75ab-5844-4c8f-84ae-b3cb94626e78", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022C63FED50\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054310Z:e8dc75ab-5844-4c8f-84ae-b3cb94626e78", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "493", - "x-ms-request-id" : "34fe2044-387d-431f-ada1-1fe0a2685c93", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/sourcecontrols/web\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fd4ff5f-4474-4c8e-b257-59909fb32128" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:43:39 GMT", - "x-ms-correlation-request-id" : "b9fae1ad-762a-4d14-87fc-a5cadc7f4327", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022C63FED50\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054340Z:b9fae1ad-762a-4d14-87fc-a5cadc7f4327", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "658", - "x-ms-request-id" : "7a8903e3-eee0-4994-b83e-41cb280ecf9a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/sourcecontrols/web\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2020-09-01T05:43:40.3797487 https://webapp1-776220ed1.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-09-01_05-43-18Z\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "28c04fdc-d34b-4b59-82b9-38d661373707" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:44:10 GMT", - "x-ms-correlation-request-id" : "ae043629-f4de-4a3f-8770-a1426b4284ac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022C63FED50\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054411Z:ae043629-f4de-4a3f-8770-a1426b4284ac", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "492", - "x-ms-request-id" : "93b9ae0c-83c0-41c0-9a45-b18ce2237b32", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/sourcecontrols/web\",\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "35fdcd66-3bc3-41f2-a349-e445d7c73438", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:44:41 GMT", - "x-ms-correlation-request-id" : "5cdc6a1c-471c-4add-8ee2-2db319ac4613", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68022C63FED50\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054442Z:5cdc6a1c-471c-4add-8ee2-2db319ac4613", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1064", - "x-ms-request-id" : "6e22c463-0f9f-43c8-a9c1-f13a13b2db2d", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/hostNameBindings/webapp1-776220ed1.azurewebsites.net\",\"name\":\"webapp1-776220ed1/webapp1-776220ed1.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East US 2\",\"properties\":{\"siteName\":\"webapp1-776220ed1\",\"domainId\":null,\"hostNameType\":\"Verified\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/hostNameBindings/webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed1/webapp1-776220ed1.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East US 2\",\"properties\":{\"siteName\":\"webapp1-776220ed1\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed1\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\",\"sslState\":\"SniEnabled\",\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\"}}],\"nextLink\":null,\"id\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6676ac3d-751f-443b-8937-60036adbce4d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:44:42 GMT", - "x-ms-correlation-request-id" : "ba37fbeb-dbd9-485a-8469-b2b822066d76", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054442Z:ba37fbeb-dbd9-485a-8469-b2b822066d76", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "198", - "x-ms-request-id" : "b28963d8-3008-473e-8843-63f132578c10", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "25c900f4-798d-4212-a0ff-8835842fa7b3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:44:42 GMT", - "x-ms-correlation-request-id" : "d68dd3f8-a2ba-4f23-aac9-8b20eb3ff450", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054442Z:d68dd3f8-a2ba-4f23-aac9-8b20eb3ff450", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "305", - "x-ms-request-id" : "d8432c1b-9164-4d4c-bee6-ca1d5f561c83", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "49abd240-7a72-45c8-bcc8-43d7bb784d30", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:44:43 GMT", - "x-ms-correlation-request-id" : "2884bec3-9b80-43f1-94a4-ff9c0c96c13f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054443Z:2884bec3-9b80-43f1-94a4-ff9c0c96c13f", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "198", - "x-ms-request-id" : "c39c4d50-19ba-46ad-afe9-f792c934c0b0", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed1\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "efb1d273-53df-4acd-b735-38a02f3fb456", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:44:42 GMT", - "x-ms-correlation-request-id" : "17084cf8-5953-4895-8de8-6d02193b8a1d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054443Z:17084cf8-5953-4895-8de8-6d02193b8a1d", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "279", - "x-ms-request-id" : "c9cd2674-f382-445e-a41d-ba3e87b2e6b6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed1/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "37a7c394-b2a3-4b66-b5dd-6f125098a58b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:09 GMT", - "x-ms-correlation-request-id" : "362f2e84-9989-4ed7-bbae-a25ffd936317", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "Cache-Control" : "no-cache", - "ETag" : "\"1D6802302C23120\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054510Z:362f2e84-9989-4ed7-bbae-a25ffd936317", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5520", - "x-ms-request-id" : "ba74075c-cb03-47d5-be83-4c1ce9b2e796", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed2\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed2.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-EastAsiawebspace/sites/webapp1-776220ed2\",\"repositorySiteName\":\"webapp1-776220ed2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed2.azurewebsites.net\",\"webapp1-776220ed2.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed2.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f2\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:44:50.483\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed2\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"207.46.147.148\",\"possibleInboundIpAddresses\":\"207.46.147.148,13.75.34.168\",\"ftpUsername\":\"webapp1-776220ed2\\\\$webapp1-776220ed2\",\"ftpsHostName\":\"ftps://waws-prod-hk1-003.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"207.46.144.46,207.46.144.85,207.46.144.91,207.46.148.246\",\"possibleOutboundIpAddresses\":\"207.46.144.46,207.46.144.85,207.46.144.91,207.46.148.246,23.101.0.123,40.83.98.184,40.83.99.149,40.83.100.1,13.75.65.55,207.46.147.148,13.75.34.168\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-003\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/hostNameBindings/webapp1-776220ed2.jsdkdemo-50726f3d.com?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "df09b13b-8c47-4a91-b6ee-7c0746c07b01", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:17 GMT", - "x-ms-correlation-request-id" : "f4bed137-4b54-44d4-bd57-0904f97df378", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D6802302C23120\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054518Z:f4bed137-4b54-44d4-bd57-0904f97df378", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "530", - "x-ms-request-id" : "34573162-f543-46a8-a426-a0078c4a8e5a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/hostNameBindings/webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed2/webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East Asia\",\"properties\":{\"siteName\":\"webapp1-776220ed2\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed2\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "34c32773-1d2d-4dce-8ecd-caf833f25422", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:18 GMT", - "x-ms-correlation-request-id" : "a879786a-a47b-4ede-a2eb-edf6a431f61b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68023126BBE70\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054519Z:a879786a-a47b-4ede-a2eb-edf6a431f61b", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5634", - "x-ms-request-id" : "4c283114-999a-4549-a969-14f647d6b8ff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed2\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"webapp1-776220ed2.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-EastAsiawebspace/sites/webapp1-776220ed2\",\"repositorySiteName\":\"webapp1-776220ed2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"webapp1-776220ed2.azurewebsites.net\",\"webapp1-776220ed2.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed2.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f2\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:45:17.527\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed2\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"207.46.147.148\",\"possibleInboundIpAddresses\":\"207.46.147.148,13.75.34.168\",\"ftpUsername\":\"webapp1-776220ed2\\\\$webapp1-776220ed2\",\"ftpsHostName\":\"ftps://waws-prod-hk1-003.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"207.46.144.46,207.46.144.85,207.46.144.91,207.46.148.246\",\"possibleOutboundIpAddresses\":\"207.46.144.46,207.46.144.85,207.46.144.91,207.46.148.246,23.101.0.123,40.83.98.184,40.83.99.149,40.83.100.1,13.75.65.55,207.46.147.148,13.75.34.168\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-003\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d25ce1d-b30b-4c82-a5bb-4c1ec1dc8f98", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:18 GMT", - "x-ms-correlation-request-id" : "4c7f0cf7-fa4a-4b0d-87ae-707edd8ebf90", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054519Z:4c7f0cf7-fa4a-4b0d-87ae-707edd8ebf90", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3578", - "x-ms-request-id" : "6b41ef4c-79ea-46e3-95f4-850832f5ce8c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/web\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed2\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":true,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4%23%23East%20Asia%23?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "728a60a4-f6f4-44d4-a81f-8a958c807e21", - "Content-Type" : "application/json" - }, - "Response" : { - "Warning" : "199 Some of the uploaded certificates are either self-signed or expired.,199 Some of the uploaded certificates cannot be validated to a trusted CA", - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:25 GMT", - "x-ms-correlation-request-id" : "bfb676f7-61b8-41ab-b0e3-3c3f7c8498fd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054525Z:bfb676f7-61b8-41ab-b0e3-3c3f7c8498fd", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "930", - "x-ms-request-id" : "6cd78491-a2b5-4cd8-a91d-cacb990126b1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4##East Asia#\",\"name\":\"89997591E66BF732F1EBE7299909A8BA642D98D4##East Asia#\",\"type\":\"Microsoft.Web/certificates\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"friendlyName\":\"jsdkdemo-50726f3d.com\",\"subjectName\":\"*.jsdkdemo-50726f3d.com\",\"hostNames\":[\"*.jsdkdemo-50726f3d.com\"],\"pfxBlob\":null,\"siteName\":null,\"selfLink\":null,\"issuer\":\"*.jsdkdemo-50726f3d.com\",\"issueDate\":\"2020-09-01T05:39:10+00:00\",\"expirationDate\":\"2030-08-30T05:39:10+00:00\",\"password\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"valid\":null,\"toDelete\":null,\"cerBlob\":null,\"publicKeyHash\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"keyVaultId\":\"\",\"keyVaultSecretName\":\"\",\"webSpace\":\"rgnemv_972013d55b6-EastAsiawebspace\",\"serverFarmId\":null,\"tags\":{}}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "038101a7-ca01-4eb3-ae35-4f210058e2db", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:29 GMT", - "x-ms-correlation-request-id" : "ed7ada3d-c85b-4c44-bd98-733d62753db3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68023126BBE70\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054529Z:ed7ada3d-c85b-4c44-bd98-733d62753db3", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5873", - "x-ms-request-id" : "e3177b2a-277c-4b2b-9451-557bf58bd4b8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed2\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"webapp1-776220ed2.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-EastAsiawebspace\",\"selfLink\":\"https://waws-prod-hk1-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-EastAsiawebspace/sites/webapp1-776220ed2\",\"repositorySiteName\":\"webapp1-776220ed2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"webapp1-776220ed2.azurewebsites.net\",\"webapp1-776220ed2.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed2.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"sslState\":\"SniEnabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed2.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f2\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:45:27.58\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed2\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"207.46.147.148\",\"possibleInboundIpAddresses\":\"207.46.147.148,13.75.34.168\",\"ftpUsername\":\"webapp1-776220ed2\\\\$webapp1-776220ed2\",\"ftpsHostName\":\"ftps://waws-prod-hk1-003.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"207.46.144.46,207.46.144.85,207.46.144.91,207.46.148.246\",\"possibleOutboundIpAddresses\":\"207.46.144.46,207.46.144.85,207.46.144.91,207.46.148.246,23.101.0.123,40.83.98.184,40.83.99.149,40.83.100.1,13.75.65.55,207.46.147.148,13.75.34.168\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-003\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed2.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8211f724-643b-438e-80bb-4e14d136c987", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:45:30 GMT", - "x-ms-correlation-request-id" : "a186e1f2-0d78-4f0f-a764-68e2da0993c5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680231869B5C0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054531Z:a186e1f2-0d78-4f0f-a764-68e2da0993c5", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3564", - "x-ms-request-id" : "6ba18ba7-26c8-4fa6-a0cb-4dfdb5dd99ae", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2019\",\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed2\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":true,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "305fcffb-ab60-4b86-8a54-f820c2d8146a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:45:44 GMT", - "x-ms-correlation-request-id" : "f35c0dc2-ab82-4f49-9bd9-3bfd34faa809", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680232292E030\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054544Z:f35c0dc2-ab82-4f49-9bd9-3bfd34faa809", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "493", - "x-ms-request-id" : "01b0310b-bfa1-4096-89df-4b619098faf7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/sourcecontrols/web\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "280e6af1-51b2-486c-a88a-ebd4dd1dccba" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:46:14 GMT", - "x-ms-correlation-request-id" : "0e7ab67e-efb7-4fe0-86dc-274dbef71005", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680232292E030\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054615Z:0e7ab67e-efb7-4fe0-86dc-274dbef71005", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "658", - "x-ms-request-id" : "7c95905f-2b1e-4851-b348-bdc0044ed76a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/sourcecontrols/web\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2020-09-01T05:46:14.7833942 https://webapp1-776220ed2.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-09-01_05-45-53Z\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3b8ffdc-78eb-45c4-b63d-8ca303c218d7" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:46:45 GMT", - "x-ms-correlation-request-id" : "bf2852d9-0c74-4ecd-8ac9-e10669ece4ac", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680232292E030\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054645Z:bf2852d9-0c74-4ecd-8ac9-e10669ece4ac", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "492", - "x-ms-request-id" : "bb6dcfb3-f37f-49ed-bec8-c8d0556f16ac", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/sourcecontrols/web\",\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "5085471a-0b9b-498c-a118-a5c51bd702b6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:47:15 GMT", - "x-ms-correlation-request-id" : "a38f0438-83ef-47c4-9659-f9a8b6234bfb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680232292E030\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054716Z:a38f0438-83ef-47c4-9659-f9a8b6234bfb", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1064", - "x-ms-request-id" : "f4f89f7a-c10d-4299-a2e9-5329513a3c8e", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/hostNameBindings/webapp1-776220ed2.azurewebsites.net\",\"name\":\"webapp1-776220ed2/webapp1-776220ed2.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East Asia\",\"properties\":{\"siteName\":\"webapp1-776220ed2\",\"domainId\":null,\"hostNameType\":\"Verified\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/hostNameBindings/webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed2/webapp1-776220ed2.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"East Asia\",\"properties\":{\"siteName\":\"webapp1-776220ed2\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed2\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\",\"sslState\":\"SniEnabled\",\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\"}}],\"nextLink\":null,\"id\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd01978d-14d0-4edc-926d-9f074879001d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:47:16 GMT", - "x-ms-correlation-request-id" : "0d3d8f9e-ff3b-41bc-b8c9-ca70b02422e4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054716Z:0d3d8f9e-ff3b-41bc-b8c9-ca70b02422e4", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "198", - "x-ms-request-id" : "8cb29cee-b144-4b75-9aab-4cc4bb646e4d", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc04bd18-f850-4c66-96a2-db8a9c4f6ed0", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:47:15 GMT", - "x-ms-correlation-request-id" : "695259f6-3be5-4234-a04a-95d56009fe96", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054716Z:695259f6-3be5-4234-a04a-95d56009fe96", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "305", - "x-ms-request-id" : "c3cee4f3-805e-41dd-98bc-ce3c606e0d45", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2b8ea37-fcf3-4133-b3cf-c2704c64dac3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:47:16 GMT", - "x-ms-correlation-request-id" : "b166d01c-d162-4aa6-a883-5031fabc1e9d", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054716Z:b166d01c-d162-4aa6-a883-5031fabc1e9d", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "198", - "x-ms-request-id" : "758a38bc-1d98-4c36-8f33-3b79fb8005f3", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed2\",\"type\":\"Microsoft.Web/sites\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f09299f9-af32-4b17-bd58-f9ea355537b9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:47:16 GMT", - "x-ms-correlation-request-id" : "2a3972c1-2d33-4c42-8dca-2f5d5ba934c6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11997", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054716Z:2a3972c1-2d33-4c42-8dca-2f5d5ba934c6", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "279", - "x-ms-request-id" : "902bdb44-29e6-4bb3-aeea-a748ca53e43f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed2/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{},\"properties\":{}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2977ad7e-e799-4504-b312-7d4979df81a2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Connection" : "close", - "Pragma" : "no-cache", - "StatusCode" : "429", - "Date" : "Tue, 01 Sep 2020 05:48:19 GMT", - "x-ms-correlation-request-id" : "b6cc9b52-7689-4873-bba5-d32d40534638", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "497", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054820Z:b6cc9b52-7689-4873-bba5-d32d40534638", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "577", - "x-ms-request-id" : "b6cc9b52-7689-4873-bba5-d32d40534638", - "Body" : "{\"Code\":\"429\",\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\",\"Target\":null,\"Details\":[{\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\"},{\"Code\":\"429\"},{\"ErrorEntity\":{\"ExtendedCode\":\"59206\",\"MessageTemplate\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\",\"Parameters\":[],\"Code\":\"429\",\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\"}}],\"Innererror\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2977ad7e-e799-4504-b312-7d4979df81a2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Connection" : "close", - "Pragma" : "no-cache", - "StatusCode" : "429", - "Date" : "Tue, 01 Sep 2020 05:48:28 GMT", - "x-ms-correlation-request-id" : "c456ee10-75b5-421d-abb2-98bebfe4d8eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054829Z:c456ee10-75b5-421d-abb2-98bebfe4d8eb", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "577", - "x-ms-request-id" : "c456ee10-75b5-421d-abb2-98bebfe4d8eb", - "Body" : "{\"Code\":\"429\",\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\",\"Target\":null,\"Details\":[{\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\"},{\"Code\":\"429\"},{\"ErrorEntity\":{\"ExtendedCode\":\"59206\",\"MessageTemplate\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\",\"Parameters\":[],\"Code\":\"429\",\"Message\":\"Cannot acquire exclusive lock to create, update or delete this site. Retry the request later.\"}}],\"Innererror\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2977ad7e-e799-4504-b312-7d4979df81a2", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:48:40 GMT", - "x-ms-correlation-request-id" : "1cad0b46-9047-4385-b575-c47acf432be3", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680235D58F510\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054841Z:1cad0b46-9047-4385-b575-c47acf432be3", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5506", - "x-ms-request-id" : "fc7db683-b92b-4bcc-a51f-d7d944e0f5af", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed3\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed3.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-CentralUSwebspace/sites/webapp1-776220ed3\",\"repositorySiteName\":\"webapp1-776220ed3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed3.azurewebsites.net\",\"webapp1-776220ed3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:48:36.517\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed3\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"ftpUsername\":\"webapp1-776220ed3\\\\$webapp1-776220ed3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,104.43.131.104,104.43.132.40,104.43.140.18,104.43.140.94,40.122.29.20,40.77.56.174,13.89.172.19\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/hostNameBindings/webapp1-776220ed3.jsdkdemo-50726f3d.com?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "050e7c2f-6565-452a-9b65-1a76a68cb6d9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:48:45 GMT", - "x-ms-correlation-request-id" : "3e21705e-0b35-4f75-a76a-660d66f4f325", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D6802389073550\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054846Z:3e21705e-0b35-4f75-a76a-660d66f4f325", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "531", - "x-ms-request-id" : "8af6cfd5-6253-4e66-8ab2-acaa9a72c5ab", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/hostNameBindings/webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed3/webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"Central US\",\"properties\":{\"siteName\":\"webapp1-776220ed3\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed3\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c438746-69c9-4d0f-b710-16406c9fa92a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:48:46 GMT", - "x-ms-correlation-request-id" : "e35b9b61-1395-463c-acd2-87e7ba1a486f", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680238E4B0460\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054846Z:e35b9b61-1395-463c-acd2-87e7ba1a486f", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5619", - "x-ms-request-id" : "e189aacd-4781-470c-b188-be7229af2450", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed3\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"webapp1-776220ed3.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-CentralUSwebspace/sites/webapp1-776220ed3\",\"repositorySiteName\":\"webapp1-776220ed3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"webapp1-776220ed3.azurewebsites.net\",\"webapp1-776220ed3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:48:45.35\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed3\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"ftpUsername\":\"webapp1-776220ed3\\\\$webapp1-776220ed3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,104.43.131.104,104.43.132.40,104.43.140.18,104.43.140.94,40.122.29.20,40.77.56.174,13.89.172.19\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b260b27-1ac2-45fd-9ae7-ee2d1a1c82e3", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:48:46 GMT", - "x-ms-correlation-request-id" : "0b10f471-fdf4-4971-914d-ec455110bcdd", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054847Z:0b10f471-fdf4-4971-914d-ec455110bcdd", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3580", - "x-ms-request-id" : "c3ab4b8f-027f-4cef-a014-8053ad241717", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/web\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4%23%23Central%20US%23?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dffe5f75-1ce9-42c2-8e96-f4f883af3509", - "Content-Type" : "application/json" - }, - "Response" : { - "Warning" : "199 Some of the uploaded certificates are either self-signed or expired.,199 Some of the uploaded certificates cannot be validated to a trusted CA", - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:48:56 GMT", - "x-ms-correlation-request-id" : "187e3581-59fe-4252-a07e-00e085314597", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054856Z:187e3581-59fe-4252-a07e-00e085314597", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "934", - "x-ms-request-id" : "a47f0fc3-54fe-4044-a693-5c1a553fb559", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/certificates/89997591E66BF732F1EBE7299909A8BA642D98D4##Central US#\",\"name\":\"89997591E66BF732F1EBE7299909A8BA642D98D4##Central US#\",\"type\":\"Microsoft.Web/certificates\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"friendlyName\":\"jsdkdemo-50726f3d.com\",\"subjectName\":\"*.jsdkdemo-50726f3d.com\",\"hostNames\":[\"*.jsdkdemo-50726f3d.com\"],\"pfxBlob\":null,\"siteName\":null,\"selfLink\":null,\"issuer\":\"*.jsdkdemo-50726f3d.com\",\"issueDate\":\"2020-09-01T05:39:10+00:00\",\"expirationDate\":\"2030-08-30T05:39:10+00:00\",\"password\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"valid\":null,\"toDelete\":null,\"cerBlob\":null,\"publicKeyHash\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"keyVaultId\":\"\",\"keyVaultSecretName\":\"\",\"webSpace\":\"rgnemv_972013d55b6-CentralUSwebspace\",\"serverFarmId\":null,\"tags\":{}}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2ca819e-3794-4bae-beee-4381ee3984b6", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:48:59 GMT", - "x-ms-correlation-request-id" : "7bf14ddf-587d-4679-9b2e-1851a48a105a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680238E4B0460\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054859Z:7bf14ddf-587d-4679-9b2e-1851a48a105a", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "5859", - "x-ms-request-id" : "e5d81b14-3ef5-4781-a7b3-7d55604c2511", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"name\":\"webapp1-776220ed3\",\"state\":\"Running\",\"hostNames\":[\"webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"webapp1-776220ed3.azurewebsites.net\"],\"webSpace\":\"rgnemv_972013d55b6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rgnemv_972013d55b6-CentralUSwebspace/sites/webapp1-776220ed3\",\"repositorySiteName\":\"webapp1-776220ed3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"webapp1-776220ed3.azurewebsites.net\",\"webapp1-776220ed3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"webapp1-776220ed3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"sslState\":\"SniEnabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\",\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"webapp1-776220ed3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/serverfarms/jplan1_23137f3\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-09-01T05:48:58.21\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"webapp1-776220ed3\",\"trafficManagerHostNames\":null,\"sku\":\"Basic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"40.77.56.174\",\"possibleInboundIpAddresses\":\"40.77.56.174,13.89.172.19\",\"ftpUsername\":\"webapp1-776220ed3\\\\$webapp1-776220ed3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-011.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70\",\"possibleOutboundIpAddresses\":\"40.77.62.8,40.77.60.234,40.77.61.61,40.77.63.70,104.43.131.104,104.43.132.40,104.43.140.18,104.43.140.94,40.122.29.20,40.77.56.174,13.89.172.19\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-011\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgnemv_972013d55b6\",\"defaultHostName\":\"webapp1-776220ed3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ecdf2c4-c007-430f-a4a1-5542c6b8a65f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:49:01 GMT", - "x-ms-correlation-request-id" : "6f7b5e8f-d62b-4efe-af93-ac9729d9e44a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D6802395F54C20\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054901Z:6f7b5e8f-d62b-4efe-af93-ac9729d9e44a", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "3566", - "x-ms-request-id" : "9425c363-ab37-4646-b49b-06b374afc41e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\",\"hostingstart.html\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"5.6\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":\"VS2019\",\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"$webapp1-776220ed3\",\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":{},\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"scmMinTlsVersion\":\"1.0\",\"ftpsState\":\"AllAllowed\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":0,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3b6f3a7-271b-405a-9b80-3506da3faa77", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:49:09 GMT", - "x-ms-correlation-request-id" : "8a5cad53-1f54-4734-a113-0d85a6e435c4", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D680239CCD01A0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054910Z:8a5cad53-1f54-4734-a113-0d85a6e435c4", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "494", - "x-ms-request-id" : "8a43a2a6-2e46-4f32-9bf2-452db02c173f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/sourcecontrols/web\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a62d2d0-cc08-437b-b5e5-6d503155092b" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:49:39 GMT", - "x-ms-correlation-request-id" : "aabe31c2-feaa-45c4-a7eb-19e13257ce6b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68023ABE59990\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T054940Z:aabe31c2-feaa-45c4-a7eb-19e13257ce6b", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "659", - "x-ms-request-id" : "2bf8a153-688e-4087-b43e-4b020a73ce93", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/sourcecontrols/web\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"InProgress\",\"provisioningDetails\":\"2020-09-01T05:49:32.6491006 https://webapp1-776220ed3.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-09-01_05-49-21Z\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/sourcecontrols/web?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b32a6c31-33d2-479f-b27a-e0b37cb09fd5" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:50:10 GMT", - "x-ms-correlation-request-id" : "cc365ad4-812e-4177-a6fd-23aa38d35692", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68023ABE59990\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055011Z:cc365ad4-812e-4177-a6fd-23aa38d35692", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "493", - "x-ms-request-id" : "b5f47b7f-95b4-4b43-b44c-105d1f34a686", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/sourcecontrols/web\",\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites/sourcecontrols\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"repoUrl\":\"https://github.com/jianghaolu/azure-site-test\",\"branch\":\"master\",\"isManualIntegration\":true,\"isGitHubAction\":false,\"deploymentRollbackEnabled\":false,\"isMercurial\":false,\"provisioningState\":\"Succeeded\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/hostNameBindings?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad0aff43-f3b5-4254-9a19-f7dd4e63d7af", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:50:41 GMT", - "x-ms-correlation-request-id" : "743a7d51-5318-4661-a179-ec88d1192fce", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "ETag" : "\"1D68023ABE59990\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055041Z:743a7d51-5318-4661-a179-ec88d1192fce", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "1066", - "x-ms-request-id" : "80738d62-d9e1-4f68-af82-5fe04ef431b9", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/hostNameBindings/webapp1-776220ed3.azurewebsites.net\",\"name\":\"webapp1-776220ed3/webapp1-776220ed3.azurewebsites.net\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"Central US\",\"properties\":{\"siteName\":\"webapp1-776220ed3\",\"domainId\":null,\"hostNameType\":\"Verified\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/hostNameBindings/webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"name\":\"webapp1-776220ed3/webapp1-776220ed3.jsdkdemo-50726f3d.com\",\"type\":\"Microsoft.Web/sites/hostNameBindings\",\"location\":\"Central US\",\"properties\":{\"siteName\":\"webapp1-776220ed3\",\"domainId\":null,\"azureResourceName\":\"webapp1-776220ed3\",\"azureResourceType\":\"Website\",\"customHostNameDnsRecordType\":\"CName\",\"hostNameType\":\"Managed\",\"sslState\":\"SniEnabled\",\"thumbprint\":\"89997591E66BF732F1EBE7299909A8BA642D98D4\"}}],\"nextLink\":null,\"id\":null}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/appsettings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "424af19b-4135-4913-96f6-087c7543d12b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:50:41 GMT", - "x-ms-correlation-request-id" : "0d94ec80-6667-49a2-861e-6b87927cc18b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055041Z:0d94ec80-6667-49a2-861e-6b87927cc18b", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "306", - "x-ms-request-id" : "404bad5a-4a30-4b40-b5f7-6ab854f30a13", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"WEBSITE_NODE_DEFAULT_VERSION\":\"6.9.1\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fe35d13-61d7-4c97-b8ab-0617bb50209a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:50:41 GMT", - "x-ms-correlation-request-id" : "e1287b35-2ec6-49ab-b52b-d0733915a4ef", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055042Z:e1287b35-2ec6-49ab-b52b-d0733915a4ef", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "199", - "x-ms-request-id" : "78700123-bbe4-46fa-a018-d7f7f4bb165d", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/slotConfigNames?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "59a7db93-f5b8-440f-bdbc-c31440ada640", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:50:41 GMT", - "x-ms-correlation-request-id" : "05da70f9-a623-4db3-b0cc-453749794878", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055042Z:05da70f9-a623-4db3-b0cc-453749794878", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "199", - "x-ms-request-id" : "e0143951-d72f-4c78-ade5-e9353e17bdac", - "Body" : "{\"id\":null,\"name\":\"webapp1-776220ed3\",\"type\":\"Microsoft.Web/sites\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"connectionStringNames\":null,\"appSettingNames\":null,\"azureStorageConfigNames\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/connectionstrings/list?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.appservice/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "02ec7611-080d-42c0-98ee-a47637b3f945", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:50:42 GMT", - "x-ms-correlation-request-id" : "cb9bd7c2-e36b-467b-a6a1-fc474e627867", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11998", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055042Z:cb9bd7c2-e36b-467b-a6a1-fc474e627867", - "X-AspNet-Version" : "4.0.30319", - "Expires" : "-1", - "Content-Length" : "280", - "x-ms-request-id" : "6595972c-f258-48c0-a4e6-69c419379d80", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Web/sites/webapp1-776220ed3/config/connectionstrings\",\"name\":\"connectionstrings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{},\"properties\":{}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "7cd271ec-85c2-46bb-a786-0264096c723c", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:50:49 GMT", - "x-ms-correlation-request-id" : "9138cf71-9692-42b3-8d64-bab4a4ba15eb", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055050Z:9138cf71-9692-42b3-8d64-bab4a4ba15eb", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "678", - "x-ms-request-id" : "7cd271ec-85c2-46bb-a786-0264096c723c", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Priority\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Inactive\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-4?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "e304ed54-bf51-43c8-a63f-55d8d27f861f", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:50:53 GMT", - "x-ms-correlation-request-id" : "6e7dbe82-a122-450c-b0bd-9abef583048a", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055054Z:6e7dbe82-a122-450c-b0bd-9abef583048a", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "657", - "x-ms-request-id" : "e304ed54-bf51-43c8-a63f-55d8d27f861f", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-2?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9693c1a-1bdb-4f7c-8f32-e37746ef4394", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:50:57 GMT", - "x-ms-correlation-request-id" : "4dd1750a-93f6-4981-8a39-5fd391549f9b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055058Z:4dd1750a-93f6-4981-8a39-5fd391549f9b", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "656", - "x-ms-request-id" : "d9693c1a-1bdb-4f7c-8f32-e37746ef4394", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-2\",\"name\":\"endpoint-2\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed1\",\"target\":\"webapp1-776220ed1.azurewebsites.net\",\"weight\":1,\"priority\":2,\"endpointLocation\":\"East US 2\",\"NestedProfile\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-1?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "31be38ed-1302-42ad-bd38-0c0392ff96ec", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:51:00 GMT", - "x-ms-correlation-request-id" : "166bd72e-0c83-4ed0-81ab-b0cd0de884ea", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055101Z:166bd72e-0c83-4ed0-81ab-b0cd0de884ea", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "656", - "x-ms-request-id" : "31be38ed-1302-42ad-bd38-0c0392ff96ec", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-3?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d906cb34-1b47-45d2-9362-4f26c70a584d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:51:12 GMT", - "x-ms-correlation-request-id" : "66588704-0abb-4094-afb9-4a03bad6944e", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055113Z:66588704-0abb-4094-afb9-4a03bad6944e", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "656", - "x-ms-request-id" : "d906cb34-1b47-45d2-9362-4f26c70a584d", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d3e2a70-18ad-4983-a819-7b17f097db63", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:13 GMT", - "x-ms-correlation-request-id" : "5a1e950a-f6e3-4c34-b063-e0db6cf360f6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055113Z:5a1e950a-f6e3-4c34-b063-e0db6cf360f6", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "3315", - "x-ms-request-id" : "6d3e2a70-18ad-4983-a819-7b17f097db63", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Priority\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-2\",\"name\":\"endpoint-2\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed1\",\"target\":\"webapp1-776220ed1.azurewebsites.net\",\"weight\":1,\"priority\":2,\"endpointLocation\":\"East US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-2?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a2fca27-3414-42d1-97dc-f423b8d2ef35", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:14 GMT", - "x-ms-correlation-request-id" : "1c5ddc17-8bc9-42c1-9ebf-541eeaa14fd5", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055115Z:1c5ddc17-8bc9-42c1-9ebf-541eeaa14fd5", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "0", - "x-ms-request-id" : "3a2fca27-3414-42d1-97dc-f423b8d2ef35", - "X-Powered-By" : "ASP.NET" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-1?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "89bfdcd1-6e56-4de1-a323-11fe0ae1c988", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:51:17 GMT", - "x-ms-correlation-request-id" : "632e2c6d-e77c-498f-9ea2-661369ef8a5c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055118Z:632e2c6d-e77c-498f-9ea2-661369ef8a5c", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "649", - "x-ms-request-id" : "89bfdcd1-6e56-4de1-a323-11fe0ae1c988", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Disabled\",\"endpointMonitorStatus\":\"Disabled\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "386365f4-82dc-434a-9a33-20fd4161535d", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:22 GMT", - "x-ms-correlation-request-id" : "13a45a3f-ba0c-42f3-84d2-d9321a15a538", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10798", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055122Z:13a45a3f-ba0c-42f3-84d2-d9321a15a538", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2651", - "x-ms-request-id" : "386365f4-82dc-434a-9a33-20fd4161535d", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Priority\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Disabled\",\"endpointMonitorStatus\":\"Disabled\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e8e26ad-0173-49f5-ab76-3d252160093a", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:22 GMT", - "x-ms-correlation-request-id" : "7526ec1f-5ce7-4191-931d-0d0d5264355b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10798", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055122Z:7526ec1f-5ce7-4191-931d-0d0d5264355b", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2651", - "x-ms-request-id" : "9e8e26ad-0173-49f5-ab76-3d252160093a", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Priority\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Disabled\",\"endpointMonitorStatus\":\"Disabled\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce/azureEndpoints/endpoint-1?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "74b4de11-edd7-4b15-b3c6-9d5292eff804", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "retry-after" : "0", - "StatusCode" : "201", - "Date" : "Tue, 01 Sep 2020 05:51:24 GMT", - "x-ms-correlation-request-id" : "9a68d536-8975-43bf-a2b6-df4f5dee9025", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055125Z:9a68d536-8975-43bf-a2b6-df4f5dee9025", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "656", - "x-ms-request-id" : "74b4de11-edd7-4b15-b3c6-9d5292eff804", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "373317fd-0563-454a-8268-dc420f53d50b", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:30 GMT", - "x-ms-correlation-request-id" : "e7f1d0bc-08d5-4a2c-b44c-bb995405c4d2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055130Z:e7f1d0bc-08d5-4a2c-b44c-bb995405c4d2", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2658", - "x-ms-request-id" : "373317fd-0563-454a-8268-dc420f53d50b", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Priority\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "d16b0686-2413-4b16-9fa0-92d2e9944ba9", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:30 GMT", - "x-ms-correlation-request-id" : "730cf3ca-9383-46a7-bd0b-5696a05c4d37", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055131Z:730cf3ca-9383-46a7-bd0b-5696a05c4d37", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2658", - "x-ms-request-id" : "d16b0686-2413-4b16-9fa0-92d2e9944ba9", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Priority\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "3897d750-b6a8-45e2-9bde-cb58bccc26e5", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:35 GMT", - "x-ms-correlation-request-id" : "68269854-87fc-41bf-be39-cb635135d661", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10798", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055135Z:68269854-87fc-41bf-be39-cb635135d661", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2661", - "x-ms-request-id" : "3897d750-b6a8-45e2-9bde-cb58bccc26e5", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4227f1e-ddc7-4578-b98f-dd9f4f1fa900", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:35 GMT", - "x-ms-correlation-request-id" : "965d51d1-267d-4ecd-8e66-669fdef539b2", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055135Z:965d51d1-267d-4ecd-8e66-669fdef539b2", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2661", - "x-ms-request-id" : "b4227f1e-ddc7-4578-b98f-dd9f4f1fa900", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"CheckingEndpoints\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ba9ed48-166e-4ac9-a47c-ac132382d267", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:37 GMT", - "x-ms-correlation-request-id" : "6c4ce5e9-d510-4737-8c15-dbb5c60d82ea", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10798", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055138Z:6c4ce5e9-d510-4737-8c15-dbb5c60d82ea", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2629", - "x-ms-request-id" : "2ba9ed48-166e-4ac9-a47c-ac132382d267", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Disabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Disabled\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "93ff97d0-602a-41a8-b6bf-cab65e144f40", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:38 GMT", - "x-ms-correlation-request-id" : "363cffc3-c590-45e5-aa8b-4bbd2459af5c", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10798", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055138Z:363cffc3-c590-45e5-aa8b-4bbd2459af5c", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2629", - "x-ms-request-id" : "93ff97d0-602a-41a8-b6bf-cab65e144f40", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Disabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Disabled\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "dfc83d6e-db43-41ec-92bc-2a49e34f0d69", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:41 GMT", - "x-ms-correlation-request-id" : "d35f5b2d-0854-4543-a677-5cf3bc457269", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10797", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055141Z:d35f5b2d-0854-4543-a677-5cf3bc457269", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2629", - "x-ms-request-id" : "dfc83d6e-db43-41ec-92bc-2a49e34f0d69", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Disabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Disabled\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac139093-0ebb-4099-b314-c89f38d12168", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:41 GMT", - "x-ms-correlation-request-id" : "bfb75839-c6f8-4409-bb3b-5ba8401cd135", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10798", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055141Z:bfb75839-c6f8-4409-bb3b-5ba8401cd135", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "2629", - "x-ms-request-id" : "ac139093-0ebb-4099-b314-c89f38d12168", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\",\"name\":\"jsdktm-12286fcce\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Disabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"jsdktm-12286fcce\",\"fqdn\":\"jsdktm-12286fcce.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Disabled\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\",\"intervalInSeconds\":30,\"toleratedNumberOfFailures\":3,\"timeoutInSeconds\":10},\"endpoints\":[{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-1\",\"name\":\"endpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed0\",\"target\":\"webapp1-776220ed0.azurewebsites.net\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"West US 2\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-3\",\"name\":\"endpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed2\",\"target\":\"webapp1-776220ed2.azurewebsites.net\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"East Asia\",\"NestedProfile\":null}},{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/jsdktm-12286fcce\\/azureEndpoints\\/endpoint-4\",\"name\":\"endpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"Inactive\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgnemv_972013d55b6\\/providers\\/Microsoft.Web\\/sites\\/webapp1-776220ed3\",\"target\":\"webapp1-776220ed3.azurewebsites.net\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"Central US\",\"NestedProfile\":null}}],\"trafficViewEnrollmentStatus\":\"Disabled\"}}", - "X-Powered-By" : "ASP.NET", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv_972013d55b6/providers/Microsoft.Network/trafficmanagerprofiles/jsdktm-12286fcce?api-version=2022-04-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.trafficmanager/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae1ccc0a-8c07-43ba-8663-3cb68c106221", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-IIS/10.0", - "X-Content-Type-Options" : "nosniff", - "retry-after" : "0", - "StatusCode" : "200", - "Date" : "Tue, 01 Sep 2020 05:51:50 GMT", - "x-ms-correlation-request-id" : "6c79341f-7f99-4e02-a34d-f44b605bfec6", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "Cache-Control" : "private", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055150Z:6c79341f-7f99-4e02-a34d-f44b605bfec6", - "X-AspNet-Version" : "4.0.30319", - "Content-Length" : "0", - "x-ms-request-id" : "ae1ccc0a-8c07-43ba-8663-3cb68c106221", - "X-Powered-By" : "ASP.NET" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv_972013d55b6?api-version=2022-09-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (14.0.1; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1e1e4f1-5f17-4eb6-aac9-932247dbb5a7", - "Content-Type" : "application/json" - }, - "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Tue, 01 Sep 2020 05:51:52 GMT", - "x-ms-correlation-request-id" : "8fcd921f-be5f-40e8-a2a5-f069bff05e4b", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Retry-After" : "0", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20200901T055152Z:8fcd921f-be5f-40e8-a2a5-f069bff05e4b", - "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "8fcd921f-be5f-40e8-a2a5-f069bff05e4b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVY6NUY5NzIwMTNENTVCNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" - }, - "Exception" : null - } ], - "variables" : [ "rgnemv_972013d55b6", "jsdkdemo-50726f3d", "jplan1_23137f", "webapp1-776220ed", "jsdktm-12286fcce" ] -} \ No newline at end of file From 9630ae658732d8a0cfeb25b228c726ee33bc6c88 Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 12:53:54 +0800 Subject: [PATCH 03/10] fix tests --- .../samples/ManageContainerRegistryWithWebhooks.java | 2 +- .../samples/CreateCosmosDBWithEventualConsistency.java | 2 +- .../cosmos/samples/CreateCosmosDBWithIPRange.java | 2 +- .../cosmos/samples/CreateCosmosDBWithKindMongoDB.java | 2 +- .../resourcemanager/cosmos/samples/ManageHACosmosDB.java | 2 +- .../eventhubs/samples/ManageEventHubEvents.java | 2 +- .../samples/SecurityBreachOrRiskActivityLogAlerts.java | 4 +++- .../network/samples/ManageNetworkWatcher.java | 2 +- .../com/azure/resourcemanager/samples/CosmosDBTests.java | 8 ++++++++ .../com/azure/resourcemanager/samples/MonitorTests.java | 3 +++ .../com/azure/resourcemanager/samples/SqlSampleTests.java | 2 ++ .../test/ResourceManagerTestProxyTestBase.java | 1 + 12 files changed, 24 insertions(+), 8 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java index daae7e6e3827..5ab1062127ef 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java @@ -52,7 +52,7 @@ public class ManageContainerRegistryWithWebhooks { public static boolean runSample(AzureResourceManager azureResourceManager) throws IOException, InterruptedException { final String rgName = Utils.randomResourceName(azureResourceManager, "rgACR", 15); final String acrName = Utils.randomResourceName(azureResourceManager, "acrsample", 20); - final Region region = Region.US_WEST_CENTRAL; + final Region region = Region.US_WEST3; final String dockerImageName = "hello-world"; final String dockerImageTag = "latest"; final String dockerContainerName = "sample-hello"; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java index e78045d4bc95..6beb010f8af1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java @@ -54,7 +54,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withKind(DatabaseAccountKind.GLOBAL_DOCUMENT_DB) .withEventualConsistency() .withWriteReplication(Region.US_EAST) - .withReadReplication(Region.US_CENTRAL) + .withReadReplication(Region.US_WEST3) .create(); System.out.println("Created CosmosDB"); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java index c569dd1832a6..a99ea16fccae 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java @@ -44,7 +44,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withKind(DatabaseAccountKind.GLOBAL_DOCUMENT_DB) .withSessionConsistency() .withWriteReplication(Region.US_WEST) - .withReadReplication(Region.US_CENTRAL) + .withReadReplication(Region.US_WEST3) .withIpRules(Arrays.asList( new IpAddressOrRange().withIpAddressOrRange("13.91.6.132"), new IpAddressOrRange().withIpAddressOrRange("13.91.6.1/24"))) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java index b1d7a74739ed..c8d5f89ee6ef 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java @@ -47,7 +47,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withKind(DatabaseAccountKind.MONGO_DB) .withEventualConsistency() .withWriteReplication(Region.US_WEST) - .withReadReplication(Region.US_CENTRAL) + .withReadReplication(Region.US_WEST3) .create(); System.out.println("Created CosmosDB"); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java index ffbc3cc58530..a934db775397 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java @@ -55,7 +55,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withKind(DatabaseAccountKind.GLOBAL_DOCUMENT_DB) .withSessionConsistency() .withWriteReplication(Region.US_WEST) - .withReadReplication(Region.US_CENTRAL) + .withReadReplication(Region.US_WEST3) .create(); System.out.println("Created CosmosDB"); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/eventhubs/samples/ManageEventHubEvents.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/eventhubs/samples/ManageEventHubEvents.java index 3c9f79dff554..5e90f9f65c6e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/eventhubs/samples/ManageEventHubEvents.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/eventhubs/samples/ManageEventHubEvents.java @@ -50,7 +50,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withKind(DatabaseAccountKind.MONGO_DB) .withEventualConsistency() .withWriteReplication(Region.US_WEST) - .withReadReplication(Region.US_CENTRAL) + .withReadReplication(Region.US_WEST3) .create(); System.out.println("Created a DocumentDb instance."); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java index 67eb15ab2163..63abc601219b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java @@ -21,6 +21,8 @@ import java.time.Duration; import java.time.OffsetDateTime; +import java.time.temporal.ChronoUnit; +import java.time.temporal.TemporalUnit; /** * This sample shows examples of configuring Activity Log Alerts for potential security breach or risk notifications. @@ -97,7 +99,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { // for near real time monitoring. ResourceManagerUtils.sleep(Duration.ofMinutes(6)); - OffsetDateTime recordDateTime = OffsetDateTime.parse("2020-08-03T16:34:27.009944500+08:00"); + OffsetDateTime recordDateTime = OffsetDateTime.now().truncatedTo(ChronoUnit.DAYS); // get activity logs for the same period. PagedIterable logs = azureResourceManager.activityLogs().defineQuery() .startingFrom(recordDateTime.minusDays(7)) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java index 11e587cee737..c416dcbdd8e1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java @@ -71,7 +71,7 @@ public final class ManageNetworkWatcher { * @return true if sample runs successfully */ public static boolean runSample(AzureResourceManager azureResourceManager) { - final Region region = Region.US_NORTH_CENTRAL; + final Region region = Region.US_WEST3; final String nwName = Utils.randomResourceName(azureResourceManager, "nw", 8); final String userName = "tirekicker"; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java index ad5acd83c938..abb6456c3d23 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java @@ -3,6 +3,7 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.cosmos.samples.CreateCosmosDBTableWithVirtualNetworkRule; import com.azure.resourcemanager.cosmos.samples.CreateCosmosDBWithEventualConsistency; import com.azure.resourcemanager.cosmos.samples.CreateCosmosDBWithIPRange; @@ -13,6 +14,10 @@ public class CosmosDBTests extends SamplesTestBase { + // Most this error in runtime + // Sorry, we are currently experiencing high demand in Central US region, and cannot fulfill your request at this time Thu, 27 Jul 2023 01:57:24 GMT. + + @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testCreateCosmosDBWithEventualConsistency() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time @@ -21,6 +26,7 @@ public void testCreateCosmosDBWithEventualConsistency() { } } + @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testCreateCosmosDBWithIPRange() { Assertions.assertTrue(CreateCosmosDBWithIPRange.runSample(azureResourceManager)); @@ -31,6 +37,7 @@ public void testCreateCosmosDBTableWithVirtualNetworkRule() { Assertions.assertTrue(CreateCosmosDBTableWithVirtualNetworkRule.runSample(azureResourceManager)); } + @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testCreateCosmosDBWithKindMongoDB() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time @@ -39,6 +46,7 @@ public void testCreateCosmosDBWithKindMongoDB() { } } + @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testManageHACosmosDB() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/MonitorTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/MonitorTests.java index 89f4b58001fb..f16cee42058a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/MonitorTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/MonitorTests.java @@ -4,6 +4,7 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.monitor.samples.AutoscaleSettingsBasedOnPerformanceOrSchedule; import com.azure.resourcemanager.monitor.samples.QueryMetricsAndActivityLogs; import com.azure.resourcemanager.monitor.samples.SecurityBreachOrRiskActivityLogAlerts; @@ -23,6 +24,8 @@ public void testQueryMetricsAndActivityLogs() throws IOException { } } + // Require latest date as query parameter + @DoNotRecord(skipInPlayback = true) @Test public void testSecurityBreachOrRiskActivityLogAlerts() { Assertions.assertTrue(SecurityBreachOrRiskActivityLogAlerts.runSample(azureResourceManager)); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java index 96c7dc102cb8..c0ccb1c6ebb2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java @@ -3,6 +3,7 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.sql.samples.ManageSqlDatabase; import com.azure.resourcemanager.sql.samples.ManageSqlDatabaseInElasticPool; import com.azure.resourcemanager.sql.samples.ManageSqlDatabasesAcrossDifferentDataCenters; @@ -53,6 +54,7 @@ public void testManageSqlVirtualNetworkRules() { Assertions.assertTrue(ManageSqlVirtualNetworkRules.runSample(azureResourceManager)); } + @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testManageSqlImportExportDatabase() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java index 91bacdd9b615..ec90531787b6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestProxyTestBase.java @@ -471,6 +471,7 @@ private void addSanitizers() { new TestProxySanitizer("$..keys[*].value", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), // Compute password and SAS new TestProxySanitizer("$..adminPassword", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), + new TestProxySanitizer("$..Password", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), new TestProxySanitizer("$..accessSAS", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), new TestProxySanitizer("$.properties.osProfile.customData", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), // likely a false positive // SQL password From 406575af321afb18f9ec604cb27111c1a90a6e4f Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 13:18:06 +0800 Subject: [PATCH 04/10] fix appgateway --- .../samples/ManageApplicationGateway.java | 11 ++++++++++- .../samples/ManageSimpleApplicationGateway.java | 17 ++++++++++++++++- .../resourcemanager/samples/SqlSampleTests.java | 11 +++++------ 3 files changed, 31 insertions(+), 8 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java index 5208967ec97c..b5bcb0a1637a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java @@ -13,7 +13,10 @@ import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.network.models.ApplicationGateway; +import com.azure.resourcemanager.network.models.ApplicationGatewaySkuName; +import com.azure.resourcemanager.network.models.ApplicationGatewayTier; import com.azure.resourcemanager.network.models.Network; +import com.azure.resourcemanager.network.models.PublicIPSkuType; import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.core.management.Region; @@ -115,6 +118,8 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw PublicIpAddress publicIPAddress = azureResourceManager.publicIpAddresses().define(pipName) .withRegion(Region.US_EAST) .withExistingResourceGroup(rgName) + .withSku(PublicIPSkuType.STANDARD) + .withStaticIP() .create(); System.out.println("Created a public IP address"); @@ -159,7 +164,9 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw .define(String.format("%s-%d", linuxVMNamePrefix, j)) .withRegion(regions[i]) .withExistingResourceGroup(resourceGroup) - .withLeafDomainLabel(String.format("%s-%d", linuxVMNamePrefix, j)); + .withLeafDomainLabel(String.format("%s-%d", linuxVMNamePrefix, j)) + .withSku(PublicIPSkuType.STANDARD) + .withStaticIP(); publicIpCreatableKeys[i][j] = publicIPAddressCreatable.key(); @@ -243,6 +250,8 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw .toBackendIPAddress(ipAddresses[0][3]) .attach() + .withTier(ApplicationGatewayTier.WAF_V2) + .withSize(ApplicationGatewaySkuName.WAF_V2) .withExistingPublicIpAddress(publicIPAddress) .create(); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java index 07b0296e6266..6cf8f63e7bb9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java @@ -11,6 +11,10 @@ import com.azure.resourcemanager.network.models.ApplicationGateway; import com.azure.core.management.Region; import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.network.models.ApplicationGatewaySkuName; +import com.azure.resourcemanager.network.models.ApplicationGatewayTier; +import com.azure.resourcemanager.network.models.PublicIPSkuType; +import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.samples.Utils; import java.io.File; @@ -70,6 +74,14 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw System.out.println("Creating an application gateway... (this can take about 20 min)"); long t1 = System.currentTimeMillis(); + final String pipName = Utils.randomResourceName(azureResourceManager, "pip" + "-", 18); + PublicIpAddress publicIPAddress = azureResourceManager.publicIpAddresses().define(pipName) + .withRegion(Region.US_EAST) + .withNewResourceGroup(rgName) + .withSku(PublicIPSkuType.STANDARD) + .withStaticIP() + .create(); + ApplicationGateway applicationGateway = azureResourceManager.applicationGateways().define("myFirstAppGateway") .withRegion(Region.US_EAST) .withNewResourceGroup(rgName) @@ -84,7 +96,10 @@ public static boolean runSample(AzureResourceManager azureResourceManager) throw .toBackendIPAddress("11.1.1.3") .toBackendIPAddress("11.1.1.4") .attach() - .withNewPublicIpAddress() + + .withTier(ApplicationGatewayTier.WAF_V2) + .withSize(ApplicationGatewaySkuName.WAF_V2) + .withExistingPublicIpAddress(publicIPAddress) .create(); long t2 = System.currentTimeMillis(); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java index c0ccb1c6ebb2..a28e55133b66 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SqlSampleTests.java @@ -54,18 +54,17 @@ public void testManageSqlVirtualNetworkRules() { Assertions.assertTrue(ManageSqlVirtualNetworkRules.runSample(azureResourceManager)); } - @DoNotRecord(skipInPlayback = true) // TODO(weidxu) + // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time + @DoNotRecord(skipInPlayback = true) @Test public void testManageSqlImportExportDatabase() { - // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time - if (!isPlaybackMode()) { - Assertions.assertTrue(ManageSqlImportExportDatabase.runSample(azureResourceManager)); - } + Assertions.assertTrue(ManageSqlImportExportDatabase.runSample(azureResourceManager)); } + // This test can take significant time to run since it depends on the availability of certain resources on the service side. + @DoNotRecord(skipInPlayback = true) @Test public void testManageSqlWithRecoveredOrRestoredDatabase() { - // This test can take significant time to run since it depends on the availability of certain resources on the service side. Assertions.assertTrue(ManageSqlWithRecoveredOrRestoredDatabase.runSample(azureResourceManager)); } From d3a9b6c7cdeddd83009e40b17a185b7834d59d23 Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 14:01:47 +0800 Subject: [PATCH 05/10] wait a bit for VM extension --- .../compute/samples/ManageVirtualMachineScaleSet.java | 10 +++++++++- ...ManageVirtualMachineScaleSetWithUnmanagedDisks.java | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java index d896823ebd84..2e36f1f040e5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java @@ -24,8 +24,10 @@ import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration; import com.azure.core.management.Region; import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.ResourceManagerUtils; import com.azure.resourcemanager.samples.Utils; +import java.time.Duration; import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -219,6 +221,12 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withNewDataDisk(100, 1, CachingTypes.READ_WRITE) .withNewDataDisk(100, 2, CachingTypes.READ_WRITE, StorageAccountTypes.STANDARD_LRS) .withCapacity(3) + .create(); + + // VM may take some time to init its pkgs + ResourceManagerUtils.sleep(Duration.ofMinutes(1)); + + virtualMachineScaleSet.update() // Use a VM extension to install Apache Web servers .defineNewExtension("CustomScriptForLinux") .withPublisher("Microsoft.OSTCExtensions") @@ -228,7 +236,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withPublicSetting("fileUris", fileUris) .withPublicSetting("commandToExecute", installCommand) .attach() - .create(); + .apply(); Date t2 = new Date(); System.out.println("Created a virtual machine scale set with " diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java index 0b4ccfae56cb..5318a86f3c3d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java @@ -22,8 +22,10 @@ import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration; import com.azure.core.management.Region; import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.ResourceManagerUtils; import com.azure.resourcemanager.samples.Utils; +import java.time.Duration; import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -222,6 +224,12 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withNewStorageAccount(storageAccountName2) .withNewStorageAccount(storageAccountName3) .withCapacity(3) + .create(); + + // VM may take some time to init its pkgs + ResourceManagerUtils.sleep(Duration.ofMinutes(1)); + + virtualMachineScaleSet.update() // Use a VM extension to install Apache Web servers .defineNewExtension("CustomScriptForLinux") .withPublisher("Microsoft.OSTCExtensions") @@ -231,7 +239,7 @@ public static boolean runSample(AzureResourceManager azureResourceManager) { .withPublicSetting("fileUris", fileUris) .withPublicSetting("commandToExecute", installCommand) .attach() - .create(); + .apply(); Date t2 = new Date(); System.out.println("Created a virtual machine scale set with " From e4494706fdafa50f7df0c8e6208379974045a1cf Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 14:35:43 +0800 Subject: [PATCH 06/10] re-enable cosmos --- .../com/azure/resourcemanager/samples/CosmosDBTests.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java index abb6456c3d23..46589840323f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/CosmosDBTests.java @@ -15,9 +15,8 @@ public class CosmosDBTests extends SamplesTestBase { // Most this error in runtime - // Sorry, we are currently experiencing high demand in Central US region, and cannot fulfill your request at this time Thu, 27 Jul 2023 01:57:24 GMT. + // Sorry, we are currently experiencing high demand in Central US region, and cannot fulfill your request at this time ###. - @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testCreateCosmosDBWithEventualConsistency() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time @@ -26,7 +25,6 @@ public void testCreateCosmosDBWithEventualConsistency() { } } - @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testCreateCosmosDBWithIPRange() { Assertions.assertTrue(CreateCosmosDBWithIPRange.runSample(azureResourceManager)); @@ -37,7 +35,6 @@ public void testCreateCosmosDBTableWithVirtualNetworkRule() { Assertions.assertTrue(CreateCosmosDBTableWithVirtualNetworkRule.runSample(azureResourceManager)); } - @DoNotRecord(skipInPlayback = true) // TODO(weidxu) @Test public void testCreateCosmosDBWithKindMongoDB() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time @@ -46,7 +43,8 @@ public void testCreateCosmosDBWithKindMongoDB() { } } - @DoNotRecord(skipInPlayback = true) // TODO(weidxu) + // it uses lots of read replication regions + @DoNotRecord(skipInPlayback = true) @Test public void testManageHACosmosDB() { // Skip test in "playback" mode due to HTTP calls made outside of the management plane which can not be recorded at this time From 9bd25056bb851bc838848ac34e54f0e02518deea Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 14:57:38 +0800 Subject: [PATCH 07/10] live only for case with possible secret in url --- .../azure-resourcemanager-samples/assets.json | 2 +- .../azure/resourcemanager/samples/SamplesTestBase.java | 10 ++++++++++ .../resourcemanager/samples/SearchSampleTests.java | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/assets.json b/sdk/resourcemanager/azure-resourcemanager-samples/assets.json index 729f3c459eef..90f833e3daaf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/assets.json +++ b/sdk/resourcemanager/azure-resourcemanager-samples/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "java", "TagPrefix": "java/resourcemanager/azure-resourcemanager-samples", - "Tag": "" + "Tag": "java/resourcemanager/azure-resourcemanager-samples_5e94215958" } diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java index 8281bf8970eb..36d58cbd4fa2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java @@ -9,6 +9,8 @@ import com.azure.core.http.policy.HttpLogOptions; import com.azure.core.http.policy.HttpPipelinePolicy; import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.test.models.TestProxySanitizer; +import com.azure.core.test.models.TestProxySanitizerType; import com.azure.resourcemanager.AzureResourceManager; import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; @@ -23,6 +25,14 @@ public class SamplesTestBase extends ResourceManagerTestProxyTestBase { protected AzureResourceManager azureResourceManager; + public SamplesTestBase() { + addSanitizers( + // Search key + new TestProxySanitizer("$.key", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY), + new TestProxySanitizer("$.value[*].key", null, REDACTED_VALUE, TestProxySanitizerType.BODY_KEY) + ); + } + @Override protected HttpPipeline buildHttpPipeline( TokenCredential credential, diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SearchSampleTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SearchSampleTests.java index 2a0cbc9e6dbb..8e3c3eff8eb9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SearchSampleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SearchSampleTests.java @@ -3,12 +3,15 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.search.samples.ManageSearchService; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class SearchSampleTests extends SamplesTestBase { + // secret in URL on API deleteQueryKey + @DoNotRecord(skipInPlayback = true) @Test public void testManageSearchService() { Assertions.assertTrue(ManageSearchService.runSample(azureResourceManager)); From b966be1775bb8b4c35fc808b1edacdc8eee3938b Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 15:48:02 +0800 Subject: [PATCH 08/10] playback take too long --- .../com/azure/resourcemanager/samples/ComputeSampleTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java index 81b37f5524de..b3e5d291af49 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java @@ -83,7 +83,9 @@ public void testListVirtualMachineExtensionImages() { Assertions.assertTrue(ListVirtualMachineExtensionImages.runSample(azureResourceManager)); } + // record too large, playback takes 30+ seconds @Test + @DoNotRecord(skipInPlayback = true) public void testListVirtualMachineImages() { Assertions.assertTrue(ListVirtualMachineImages.runSample(azureResourceManager)); } From 6ce3333b11d1f45d2a37c3a219023bd656eab0f0 Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 15:51:40 +0800 Subject: [PATCH 09/10] format --- .../monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java | 1 - 1 file changed, 1 deletion(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java index 63abc601219b..c8ba68fe3d6b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java @@ -22,7 +22,6 @@ import java.time.Duration; import java.time.OffsetDateTime; import java.time.temporal.ChronoUnit; -import java.time.temporal.TemporalUnit; /** * This sample shows examples of configuring Activity Log Alerts for potential security breach or risk notifications. From 77b70f0d6027cbcb7fc83788436f3dc35e79bfae Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Thu, 27 Jul 2023 16:37:36 +0800 Subject: [PATCH 10/10] skip testCloneVirtualMachineToNewRegion --- .../com/azure/resourcemanager/samples/ComputeSampleTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java index b3e5d291af49..3451e5ce6f9b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ComputeSampleTests.java @@ -197,6 +197,7 @@ public void testCreateVirtualMachineEncryptedUsingCustomerManagedKey() { Assertions.assertTrue(CreateVirtualMachineEncryptedUsingCustomerManagedKey.runSample(azureResourceManager, clientId)); } + @DoNotRecord(skipInPlayback = true) @Test public void testCloneVirtualMachineToNewRegion() { Assertions.assertTrue(CloneVirtualMachineToNewRegion.runSample(azureResourceManager));